mbed TLS Library
MBEDTLS_PUT_UINT32_LE
is only used within mbed TLS Library.
Symbol previews are coming soon...
Symbols
loading...
Files
loading...
Summary
Syntax
Arguments
Examples
References
Call Tree
Data Use
Class Tree
Override Tree
Implementations
Instances
Lifecycle
SourceVu
Raspberry Pi Pico SDK and Examples
mbed TLS Library
MBEDTLS_PUT_UINT32_LE
MBEDTLS_PUT_UINT32_LE macro
Put in memory a 32 bits unsigned integer in little-endian order.
Syntax
Show:
Summary
Declaration
from
common.h:170
#define
MBEDTLS_PUT_UINT32_LE
(
n
,
data
,
offset
)
\
{
\
(
data
)
[
(
offset
)
]
=
MBEDTLS_BYTE_0
(
n
)
;
\
(
data
)
[
(
offset
)
+
1
]
=
MBEDTLS_BYTE_1
(
n
)
;
\
(
data
)
[
(
offset
)
+
2
]
=
MBEDTLS_BYTE_2
(
n
)
;
\
(
data
)
[
(
offset
)
+
3
]
=
MBEDTLS_BYTE_3
(
n
)
;
\
}
Arguments
Argument
Description
n
32 bits unsigned integer to put in memory.
data
Base address of the memory where to put the 32 bits unsigned integer in.
offset
Offset from \p base where to put the least significant byte of the 32 bits unsigned integer \p n.
Examples
References
from
examples
Call Tree
from
examples
All items filtered out
All items filtered out
Data Use
from
examples
All items filtered out
All items filtered out
Class Tree
from
examples
All items filtered out
All items filtered out
Override Tree
from
examples
All items filtered out
All items filtered out
Implementations
from
examples
All items filtered out
All items filtered out
Instances
from
examples
Lifecycle
from
examples
All items filtered out
All items filtered out