Lines Matching defs:bytes
57 /* This array contains the bytes used to pad the buffer to the next
76 /* Put result from CTX in first 16 bytes following RESBUF. The result
96 /* Process the remaining bytes in the internal buffer and the usual
104 /* Take yet unprocessed bytes into account. */
105 md5_uint32 bytes = ctx->buflen;
109 /* Now count remaining bytes. */
110 ctx->total[0] += bytes;
111 if (ctx->total[0] < bytes)
114 pad = bytes >= 56 ? 64 + 56 - bytes : 56 - bytes;
115 memcpy (&ctx->buffer[bytes], fillbuf, pad);
121 memcpy (&ctx->buffer[bytes + pad], &swap_bytes, sizeof (swap_bytes));
123 memcpy (&ctx->buffer[bytes + pad + 4], &swap_bytes, sizeof (swap_bytes));
125 /* Process last bytes. */
126 md5_process_block (ctx->buffer, bytes + pad + 8, ctx);
131 /* Compute MD5 message digest for bytes read from STREAM. The
132 resulting message digest number will be written into the 16 bytes
149 /* We read the file in blocks of BLOCKSIZE bytes. One call of the
170 /* Process buffer with BLOCKSIZE bytes. Note that
176 /* Add the last bytes if necessary. */
185 /* Compute MD5 message digest for LEN bytes beginning at BUFFER. The
197 /* Process whole buffer but last len % 64 bytes. */
259 /* Move remaining bytes in internal buffer. */
277 /* Process LEN bytes of BUFFER, accumulating context into CTX.
294 number of bytes. Do a double word increment. */
298 /* Process all bytes in the buffer with 64 bytes in each round of