Lines Matching defs:count
161 * Start MD5 accumulation. Set bit count to 0 and buffer to mysterious
222 * 1 0* (64-bit count of bits processed, MSB-first)
227 unsigned count;
230 count = (ctx->bits[0] >> 3) & 0x3F;
233 p = ctx->in + count;
236 count = 64 - 1 - count;
238 if (count < 8)
241 deMemset(p, 0, count);
250 deMemset(p, 0, count - 8);