mbed TLS Library
MBEDTLS_GET_UINT32_BE
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_GET_UINT32_BE
MBEDTLS_GET_UINT32_BE macro
Get the unsigned 32 bits integer corresponding to four bytes in big-endian order (MSB first).
Syntax
Show:
Summary
Declaration
from
common.h:113
#define
MBEDTLS_GET_UINT32_BE
(
data
,
offset
)
\
(
\
(
(
uint32_t
)
(
data
)
[
(
offset
)
]
<
<
24
)
\
|
(
(
uint32_t
)
(
data
)
[
(
offset
)
+
1
]
<
<
16
)
\
|
(
(
uint32_t
)
(
data
)
[
(
offset
)
+
2
]
<
<
8
)
\
|
(
(
uint32_t
)
(
data
)
[
(
offset
)
+
3
]
)
\
)
Arguments
Argument
Description
data
Base address of the memory to get the four bytes from.
offset
Offset from \p base of the first and most significant byte of the four bytes to build the 32 bits unsigned integer from.
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