mbedTLS
MBEDTLS_PUT_UINT24_LE
is only used within mbedTLS.
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
ESP-IDF Framework and Examples
mbedTLS
MBEDTLS_PUT_UINT24_LE
MBEDTLS_PUT_UINT24_LE macro
Put in memory a 24 bits unsigned integer in little-endian order.
Syntax
Show:
Summary
Declaration
from
alignment.h:605
#define
MBEDTLS_PUT_UINT24_LE
(
n
,
data
,
offset
)
\
{
\
(
data
)
[
(
offset
)
]
=
MBEDTLS_BYTE_0
(
n
)
;
\
(
data
)
[
(
offset
)
+
1
]
=
MBEDTLS_BYTE_1
(
n
)
;
\
(
data
)
[
(
offset
)
+
2
]
=
MBEDTLS_BYTE_2
(
n
)
;
\
}
Arguments
Argument
Description
n
24 bits unsigned integer to put in memory.
data
Base address of the memory where to put the 24 bits unsigned integer in.
offset
Offset from \p data where to put the least significant byte of the 24 bits unsigned integer \p n.
Examples
References
from
examples
Code
Location
#define
MBEDTLS_PUT_UINT24_LE
(
n
,
data
,
offset
)
\
alignment.h:605
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