Lines Matching full:bytes
47 /* This array contains the bytes used to pad the buffer to the next
67 /* Put result from CTX in first 16 bytes following RESBUF. The result
85 /* Process the remaining bytes in the internal buffer and the usual
95 /* Take yet unprocessed bytes into account. */
96 md5_uint32 bytes = ctx->buflen;
99 /* Now count remaining bytes. */
100 ctx->total[0] += bytes;
101 if (ctx->total[0] < bytes)
104 pad = bytes >= 56 ? 64 + 56 - bytes : 56 - bytes;
105 memcpy (&ctx->buffer[bytes], fillbuf, pad);
108 *(md5_uint32 *) &ctx->buffer[bytes + pad] = SWAP (ctx->total[0] << 3);
109 *(md5_uint32 *) &ctx->buffer[bytes + pad + 4] = SWAP ((ctx->total[1] << 3) |
112 /* Process last bytes. */
113 md5_process_block (ctx->buffer, bytes + pad + 8, ctx);
120 /* Compute MD5 message digest for bytes read from STREAM. The
121 resulting message digest number will be written into the 16 bytes
140 /* We read the file in blocks of BLOCKSIZE bytes. One call of the
161 /* Process buffer with BLOCKSIZE bytes. Note that
167 /* Add the last bytes if necessary. */
179 /* Compute MD5 message digest for LEN bytes beginning at BUFFER. The
194 /* Process whole buffer but last len % 64 bytes. */
260 /* Move remaining bytes in internal buffer. */
287 /* Process LEN bytes of BUFFER, accumulating context into CTX.
307 number of bytes. Do a double word increment. */
312 /* Process all bytes in the buffer with 64 bytes in each round of