Lines Matching defs:bytes
59 /* This array contains the bytes used to pad the buffer to the next
79 /* Put result from CTX in first 16 bytes following RESBUF. The result
97 /* Process the remaining bytes in the internal buffer and the usual
107 /* Take yet unprocessed bytes into account. */
108 md5_uint32 bytes = ctx->buflen;
111 /* Now count remaining bytes. */
112 ctx->total[0] += bytes;
113 if (ctx->total[0] < bytes)
116 pad = bytes >= 56 ? 64 + 56 - bytes : 56 - bytes;
117 memcpy (&ctx->buffer[bytes], fillbuf, pad);
120 *(md5_uint32 *) &ctx->buffer[bytes + pad] = SWAP (ctx->total[0] << 3);
121 *(md5_uint32 *) &ctx->buffer[bytes + pad + 4] = SWAP ((ctx->total[1] << 3) |
124 /* Process last bytes. */
125 md5_process_block (ctx->buffer, bytes + pad + 8, ctx);
130 /* Compute MD5 message digest for bytes read from STREAM. The
131 resulting message digest number will be written into the 16 bytes
150 /* We read the file in blocks of BLOCKSIZE bytes. One call of the
171 /* Process buffer with BLOCKSIZE bytes. Note that
177 /* Add the last bytes if necessary. */
186 /* Compute MD5 message digest for LEN bytes beginning at BUFFER. The
201 /* Process whole buffer but last len % 64 bytes. */
266 /* Move remaining bytes in internal buffer. */
293 /* Process LEN bytes of BUFFER, accumulating context into CTX.
313 number of bytes. Do a double word increment. */
318 /* Process all bytes in the buffer with 64 bytes in each round of