netxduo
_nx_utility_base64_array
is only used within netxduo.
Symbol previews are coming soon...
Symbols
loading...
Files
loading...
Summary
Syntax
Examples
References
Call Tree
Data Use
Class Tree
Override Tree
Implementations
Instances
Lifecycle
SourceVu
STM32 Libraries and Samples
netxduo
_nx_utility_base64_array
_nx_utility_base64_array variable
Syntax
Show:
Summary
Declaration
from
nx_utility.c:32
static
CHAR
_nx_utility_base64_array
[
]
=
"ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/"
;
Examples
References
from
examples
Code
Location
Referrer
static
CHAR
_nx_utility_base64_array
[
]
=
"ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/"
;
nx_utility.c:32
base64name
[
j
++
]
=
(
UCHAR
)
_nx_utility_base64_array
[
(
(
UCHAR
)
name
[
i
]
)
>
>
2
]
;
nx_utility.c:418
_nx_utility_base64_encode()
base64name
[
j
++
]
=
(
UCHAR
)
_nx_utility_base64_array
[
(
(
(
(
UCHAR
)
name
[
i
]
)
&
0x3
)
<
<
4
)
|
(
(
(
UCHAR
)
name
[
i
+
1
]
)
>
>
4
)
]
;
nx_utility.c:425
_nx_utility_base64_encode()
base64name
[
j
++
]
=
(
UCHAR
)
_nx_utility_base64_array
[
(
(
(
(
UCHAR
)
name
[
i
]
)
&
0xF
)
<
<
2
)
|
(
(
(
UCHAR
)
name
[
i
+
1
]
)
>
>
6
)
]
;
nx_utility.c:433
_nx_utility_base64_encode()
base64name
[
j
++
]
=
(
UCHAR
)
_nx_utility_base64_array
[
(
(
(
UCHAR
)
name
[
i
]
)
&
0x3F
)
]
;
nx_utility.c:441
_nx_utility_base64_encode()
Call Tree
from
examples
All items filtered out
All items filtered out
Data Use
from
examples
_nx_utility_base64_array
is read by 1 function:
All items filtered out
_nx_utility_base64_array
_nx_utility_base64_encode()
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