Lines Matching defs:count
19 u64 count; /* number of bits, mod 2^64 */
96 * Set bit count to 0 and buffer to mysterious initialization constants.
100 ctx->count = 0;
116 have = (size_t)((ctx->count >> 3) & (MD4_BLOCK_LENGTH - 1));
120 ctx->count += (u64)len << 3;
146 * 1 0* (64-bit count of bits processed, MSB-first)
150 u8 count[8];
153 /* Convert count to 8 bytes in little endian order. */
154 PUT_64BIT_LE(count, ctx->count);
158 ((ctx->count >> 3) & (MD4_BLOCK_LENGTH - 1));
162 MD4Update(ctx, count, 8);