Lines Matching defs:count
84 * Start MD5 accumulation. Set bit count to 0 and buffer to mysterious
148 * 1 0* (64-bit count of bits processed, MSB-first)
152 unsigned count;
156 count = (ctx->bits[0] >> 3) & 0x3F;
160 p = ctx->in + count;
164 count = 64 - 1 - count;
167 if (count < 8) {
169 os_memset(p, 0, count);
177 os_memset(p, 0, count - 8);