Home
last modified time | relevance | path

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

/crypto/
Ddrbg.c785 unsigned int remainder = 0; in drbg_add_buf() local
791 remainder += *dstptr + *addptr; in drbg_add_buf()
792 *dstptr = remainder & 0xff; in drbg_add_buf()
793 remainder >>= 8; in drbg_add_buf()
797 while (len && remainder > 0) { in drbg_add_buf()
798 remainder = *dstptr + 1; in drbg_add_buf()
799 *dstptr = remainder & 0xff; in drbg_add_buf()
800 remainder >>= 8; in drbg_add_buf()
Dansi_cprng.c216 remainder: in get_prng_bytes()
262 goto remainder; in get_prng_bytes()
Dhctr2.c201 unsigned int remainder = bulk_len % BLOCKCIPHER_BLOCK_SIZE; in hctr2_hash_message() local
220 if (remainder) { in hctr2_hash_message()
222 BLOCKCIPHER_BLOCK_SIZE - remainder); in hctr2_hash_message()