Lines Matching refs:input_length
188 …_KEEP UINT _nx_crypto_sha256_update(NX_CRYPTO_SHA256 *context, UCHAR *input_ptr, UINT input_length) in _nx_crypto_sha256_update() argument
200 if (input_length == 0) in _nx_crypto_sha256_update()
213 context -> nx_sha256_bit_count[0] += (input_length << 3); in _nx_crypto_sha256_update()
216 if (context -> nx_sha256_bit_count[0] < (input_length << 3)) in _nx_crypto_sha256_update()
224 context -> nx_sha256_bit_count[1] += (input_length >> 29); in _nx_crypto_sha256_update()
227 if ((current_bytes) && (input_length >= needed_fill_bytes)) in _nx_crypto_sha256_update()
239 input_length = input_length - needed_fill_bytes; in _nx_crypto_sha256_update()
247 while (input_length >= 64) in _nx_crypto_sha256_update()
254 input_length = input_length - 64; in _nx_crypto_sha256_update()
259 if (input_length) in _nx_crypto_sha256_update()
263 …d *)&(context -> nx_sha256_buffer[current_bytes]), (void *)input_ptr, input_length); /* Use case o… in _nx_crypto_sha256_update()