mbedTLS
GET_UINT32_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
STM32 Libraries and Samples
mbedTLS
GET_UINT32_BE
GET_UINT32_BE macro
Syntax
Show:
Summary
Declaration
from
camellia.c:62
#define
GET_UINT32_BE
(
n
,
b
,
i
)
\
{
\
(
n
)
=
(
(
uint32_t
)
(
b
)
[
(
i
)
]
<
<
24
)
\
|
(
(
uint32_t
)
(
b
)
[
(
i
)
+
1
]
<
<
16
)
\
|
(
(
uint32_t
)
(
b
)
[
(
i
)
+
2
]
<
<
8
)
\
|
(
(
uint32_t
)
(
b
)
[
(
i
)
+
3
]
)
;
\
}
Arguments
Argument
n
b
i
Examples
References
from
examples
Code
Location
#define
GET_UINT32_BE
(
n
,
b
,
i
)
\
camellia.c:62
#define
GET_UINT32_BE
(
n
,
b
,
i
)
\
gcm.c:71
#define
GET_UINT32_BE
(
n
,
b
,
i
)
\
sha256.c:62
GET_UINT32_BE
(
SIGMA
[
i
]
[
0
]
,
SIGMA_CHARS
[
i
]
,
0
)
;
camellia.c:385
GET_UINT32_BE
(
SIGMA
[
i
]
[
1
]
,
SIGMA_CHARS
[
i
]
,
4
)
;
camellia.c:386
GET_UINT32_BE
(
KC
[
i
]
,
t
,
i
*
4
)
;
camellia.c:397
GET_UINT32_BE
(
X
[
0
]
,
input
,
0
)
;
camellia.c:523
GET_UINT32_BE
(
X
[
1
]
,
input
,
4
)
;
camellia.c:524
GET_UINT32_BE
(
X
[
2
]
,
input
,
8
)
;
camellia.c:525
GET_UINT32_BE
(
X
[
3
]
,
input
,
12
)
;
camellia.c:526
GET_UINT32_BE
(
hi
,
h
,
0
)
;
gcm.c:120
GET_UINT32_BE
(
lo
,
h
,
4
)
;
gcm.c:121
GET_UINT32_BE
(
hi
,
h
,
8
)
;
gcm.c:124
GET_UINT32_BE
(
lo
,
h
,
12
)
;
gcm.c:125
GET_UINT32_BE
(
W
[
i
]
,
data
,
4
*
i
)
;
sha256.c:229
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