Lines Matching refs:bit_count_string
341 UCHAR bit_count_string[8]; in _nx_crypto_md5_digest_calculate() local
348 bit_count_string[0] = (UCHAR)context -> nx_md5_bit_count[0]; in _nx_crypto_md5_digest_calculate()
349 bit_count_string[1] = (UCHAR)(context -> nx_md5_bit_count[0] >> 8); in _nx_crypto_md5_digest_calculate()
350 bit_count_string[2] = (UCHAR)(context -> nx_md5_bit_count[0] >> 16); in _nx_crypto_md5_digest_calculate()
351 bit_count_string[3] = (UCHAR)(context -> nx_md5_bit_count[0] >> 24); in _nx_crypto_md5_digest_calculate()
352 bit_count_string[4] = (UCHAR)context -> nx_md5_bit_count[1]; in _nx_crypto_md5_digest_calculate()
353 bit_count_string[5] = (UCHAR)(context -> nx_md5_bit_count[1] >> 8); in _nx_crypto_md5_digest_calculate()
354 bit_count_string[6] = (UCHAR)(context -> nx_md5_bit_count[1] >> 16); in _nx_crypto_md5_digest_calculate()
355 bit_count_string[7] = (UCHAR)(context -> nx_md5_bit_count[1] >> 24); in _nx_crypto_md5_digest_calculate()
367 _nx_crypto_md5_update(context, bit_count_string, 8); in _nx_crypto_md5_digest_calculate()
388 NX_CRYPTO_MEMSET(bit_count_string, 0, sizeof(bit_count_string)); in _nx_crypto_md5_digest_calculate()