Lines Matching defs:count
155 * Start MD5 accumulation. Set bit count to 0 and buffer to mysterious
220 * 1 0* (64-bit count of bits processed, MSB-first)
224 unsigned count;
228 count = (ctx->bits[0] >> 3) & 0x3F;
232 p = ctx->in + count;
236 count = 64 - 1 - count;
239 if (count < 8) {
241 memset(p, 0, count);
249 memset(p, 0, count - 8);