Lines Matching defs:count
144 * Start MD5 accumulation. Set bit count to 0 and buffer to mysterious
273 /* Update byte count */
306 * 1 0* (64-bit count of bits processed, MSB-first)
310 int count = ctx->bytes[0] & 0x3f; /* Number of bytes in ctx->in */
311 unsigned char *p = (unsigned char *)ctx->in + count;
317 count = 56 - 1 - count;
319 if (count < 0) { /* Padding forces an extra block */
320 memset(p, 0, count + 8);
324 count = 56;
326 memset(p, 0, count);