netxduo
NX_MD5_STRUCT::nx_md5_bit_count
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_MD5_STRUCT::nx_md5_bit_count
NX_MD5_STRUCT::nx_md5_bit_count field
Syntax
Show:
Summary
Declaration
from
nx_md5.h:94
ULONG
nx_md5_bit_count
[
2
]
;
Examples
References
from
examples
Code
Location
Referrer
ULONG
nx_md5_bit_count
[
2
]
;
/* Contains the 64-bit total bit */
nx_md5.h:94
context
->
nx_md5_bit_count
[
0
]
=
0
;
/* Clear the lower 32-bits of the count */
nx_md5.c:143
_nx_md5_initialize()
context
->
nx_md5_bit_count
[
1
]
=
0
;
/* Clear the upper 32-bits of the count */
nx_md5.c:144
_nx_md5_initialize()
current_bytes
=
(
context
->
nx_md5_bit_count
[
0
]
>
>
3
)
&
0x3F
;
nx_md5.c:218
_nx_md5_update()
context
->
nx_md5_bit_count
[
0
]
+=
(
input_length
<
<
3
)
;
nx_md5.c:224
_nx_md5_update()
if
(
context
->
nx_md5_bit_count
[
0
]
<
(
input_length
<
<
3
)
)
nx_md5.c:227
_nx_md5_update()
context
->
nx_md5_bit_count
[
1
]
++
;
nx_md5.c:231
_nx_md5_update()
context
->
nx_md5_bit_count
[
1
]
+=
(
input_length
>
>
29
)
;
nx_md5.c:235
_nx_md5_update()
bit_count_string
[
0
]
=
(
UCHAR
)
context
->
nx_md5_bit_count
[
0
]
;
nx_md5.c:336
_nx_md5_digest_calculate()
bit_count_string
[
1
]
=
(
UCHAR
)
(
context
->
nx_md5_bit_count
[
0
]
>
>
8
)
;
nx_md5.c:337
_nx_md5_digest_calculate()
bit_count_string
[
2
]
=
(
UCHAR
)
(
context
->
nx_md5_bit_count
[
0
]
>
>
16
)
;
nx_md5.c:338
_nx_md5_digest_calculate()
bit_count_string
[
3
]
=
(
UCHAR
)
(
context
->
nx_md5_bit_count
[
0
]
>
>
24
)
;
nx_md5.c:339
_nx_md5_digest_calculate()
bit_count_string
[
4
]
=
(
UCHAR
)
context
->
nx_md5_bit_count
[
1
]
;
nx_md5.c:340
_nx_md5_digest_calculate()
bit_count_string
[
5
]
=
(
UCHAR
)
(
context
->
nx_md5_bit_count
[
1
]
>
>
8
)
;
nx_md5.c:341
_nx_md5_digest_calculate()
bit_count_string
[
6
]
=
(
UCHAR
)
(
context
->
nx_md5_bit_count
[
1
]
>
>
16
)
;
nx_md5.c:342
_nx_md5_digest_calculate()
bit_count_string
[
7
]
=
(
UCHAR
)
(
context
->
nx_md5_bit_count
[
1
]
>
>
24
)
;
nx_md5.c:343
_nx_md5_digest_calculate()
current_byte_count
=
(
context
->
nx_md5_bit_count
[
0
]
>
>
3
)
&
0x3F
;
nx_md5.c:346
_nx_md5_digest_calculate()
Call Tree
from
examples
All items filtered out
All items filtered out
Data Use
from
examples
NX_MD5_STRUCT::nx_md5_bit_count
is read by 3 functions:
All items filtered out
NX_MD5_STRUCT::nx_md5_bit_count
_nx_md5_initialize()
_nx_md5_update()
_nx_md5_digest_calculate()
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