Lines Matching defs:bytes
57 /* This array contains the bytes used to pad the buffer to the next
92 /* Put result from CTX in first 16 bytes following RESBUF. The result
108 /* Process the remaining bytes in the internal buffer and the usual
116 /* Take yet unprocessed bytes into account. */
117 md5_uint32 bytes = ctx->buflen;
121 /* Now count remaining bytes. */
122 ctx->total[0] += bytes;
123 if (ctx->total[0] < bytes)
126 pad = bytes >= 56 ? 64 + 56 - bytes : 56 - bytes;
127 memcpy (&ctx->buffer[bytes], fillbuf, pad);
130 offset = (bytes + pad) / sizeof (md5_uint32);
132 offset = (bytes + pad + 4) / sizeof (md5_uint32);
136 /* Process last bytes. */
137 md5_process_block (ctx->buffer, bytes + pad + 8, ctx);
142 /* Compute MD5 message digest for bytes read from STREAM. The
143 resulting message digest number will be written into the 16 bytes
160 /* We read the file in blocks of BLOCKSIZE bytes. One call of the
181 /* Process buffer with BLOCKSIZE bytes. Note that
187 /* Add the last bytes if necessary. */
196 /* Compute MD5 message digest for LEN bytes beginning at BUFFER. The
208 /* Process whole buffer but last len % 64 bytes. */
270 /* Move remaining bytes in internal buffer. */
297 /* Process LEN bytes of BUFFER, accumulating context into CTX.
314 number of bytes. Do a double word increment. */
319 /* Process all bytes in the buffer with 64 bytes in each round of