mbedTLS
MBEDTLS_GET_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_GET_UINT24_LE
MBEDTLS_GET_UINT24_LE macro
Get the unsigned 24 bits integer corresponding to three bytes in little-endian order (LSB first).
Syntax
Show:
Summary
Declaration
from
alignment.h:589
#define
MBEDTLS_GET_UINT24_LE
(
data
,
offset
)
\
(
\
(
(
uint32_t
)
(
data
)
[
(
offset
)
]
)
\
|
(
(
uint32_t
)
(
data
)
[
(
offset
)
+
1
]
<
<
8
)
\
|
(
(
uint32_t
)
(
data
)
[
(
offset
)
+
2
]
<
<
16
)
\
)
Arguments
Argument
Description
data
Base address of the memory to get the three bytes from.
offset
Offset from \p data of the first and least significant byte of the three bytes to build the 24 bits unsigned integer from.
Examples
References
from
examples
Code
Location
#define
MBEDTLS_GET_UINT24_LE
(
data
,
offset
)
\
alignment.h:589
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