Lines Matching refs:bit_count_string

366 UCHAR bit_count_string[16];  in _nx_crypto_sha512_digest_calculate()  local
374 bit_count_string[0] = (UCHAR)(context -> nx_sha512_bit_count[1] >> 56); in _nx_crypto_sha512_digest_calculate()
375 bit_count_string[1] = (UCHAR)(context -> nx_sha512_bit_count[1] >> 48); in _nx_crypto_sha512_digest_calculate()
376 bit_count_string[2] = (UCHAR)(context -> nx_sha512_bit_count[1] >> 40); in _nx_crypto_sha512_digest_calculate()
377 bit_count_string[3] = (UCHAR)(context -> nx_sha512_bit_count[1] >> 32); in _nx_crypto_sha512_digest_calculate()
378 bit_count_string[4] = (UCHAR)(context -> nx_sha512_bit_count[1] >> 24); in _nx_crypto_sha512_digest_calculate()
379 bit_count_string[5] = (UCHAR)(context -> nx_sha512_bit_count[1] >> 16); in _nx_crypto_sha512_digest_calculate()
380 bit_count_string[6] = (UCHAR)(context -> nx_sha512_bit_count[1] >> 8); in _nx_crypto_sha512_digest_calculate()
381 bit_count_string[7] = (UCHAR)(context -> nx_sha512_bit_count[1]); in _nx_crypto_sha512_digest_calculate()
382 bit_count_string[8] = (UCHAR)(context -> nx_sha512_bit_count[0] >> 56); in _nx_crypto_sha512_digest_calculate()
383 bit_count_string[9] = (UCHAR)(context -> nx_sha512_bit_count[0] >> 48); in _nx_crypto_sha512_digest_calculate()
384 bit_count_string[10] = (UCHAR)(context -> nx_sha512_bit_count[0] >> 40); in _nx_crypto_sha512_digest_calculate()
385 bit_count_string[11] = (UCHAR)(context -> nx_sha512_bit_count[0] >> 32); in _nx_crypto_sha512_digest_calculate()
386 bit_count_string[12] = (UCHAR)(context -> nx_sha512_bit_count[0] >> 24); in _nx_crypto_sha512_digest_calculate()
387 bit_count_string[13] = (UCHAR)(context -> nx_sha512_bit_count[0] >> 16); in _nx_crypto_sha512_digest_calculate()
388 bit_count_string[14] = (UCHAR)(context -> nx_sha512_bit_count[0] >> 8); in _nx_crypto_sha512_digest_calculate()
389 bit_count_string[15] = (UCHAR)(context -> nx_sha512_bit_count[0]); in _nx_crypto_sha512_digest_calculate()
401 _nx_crypto_sha512_update(context, bit_count_string, sizeof(bit_count_string)); in _nx_crypto_sha512_digest_calculate()
449 NX_CRYPTO_MEMSET(bit_count_string, 0, sizeof(bit_count_string)); in _nx_crypto_sha512_digest_calculate()