Home
last modified time | relevance | path

Searched refs:hn (Results 1 – 1 of 1) sorted by relevance

/NetX-Duo-v6.2.1/crypto_libraries/inc/
Dnx_crypto_huge_number.h133 #define NX_CRYPTO_HUGE_NUMBER_INITIALIZE(hn, buff, size) \ argument
134 (hn) -> nx_crypto_huge_number_data = (HN_UBASE *)(buff); \
135 (hn) -> nx_crypto_huge_number_size = 0; \
136 …(hn) -> nx_crypto_huge_buffer_size = (((size) + HN_SIZE_ROUND) >> HN_SIZE_SHIFT) << HN_SIZE_SHIFT;\
137 (hn) -> nx_crypto_huge_number_is_negative = NX_CRYPTO_FALSE; \
141 #define NX_CRYPTO_HUGE_NUMBER_IS_EVEN(hn) \ argument
142 !((hn) -> nx_crypto_huge_number_data[0] & 1)
145 #define NX_CRYPTO_HUGE_NUMBER_SET_DIGIT(hn, val) \ argument
146 (hn) -> nx_crypto_huge_number_data[0] = (val); \
147 (hn) -> nx_crypto_huge_number_is_negative = NX_CRYPTO_FALSE; \
[all …]