mbedTLS
MBEDTLS_PUT_UINT24_BE
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_BE
MBEDTLS_PUT_UINT24_BE macro
Put in memory a 24 bits unsigned integer in big-endian order.
Syntax
Show:
Summary
Declaration
from
alignment.h:573
#define
MBEDTLS_PUT_UINT24_BE
(
n
,
data
,
offset
)
\
{
\
(
data
)
[
(
offset
)
]
=
MBEDTLS_BYTE_2
(
n
)
;
\
(
data
)
[
(
offset
)
+
1
]
=
MBEDTLS_BYTE_1
(
n
)
;
\
(
data
)
[
(
offset
)
+
2
]
=
MBEDTLS_BYTE_0
(
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 most significant byte of the 24 bits unsigned integer \p n.
Examples
References
from
examples
Code
Location
#define
MBEDTLS_PUT_UINT24_BE
(
n
,
data
,
offset
)
\
alignment.h:573
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