Home | History | Annotate | Download | only in lib

Lines Matching defs:bytes

44 /* This array contains the bytes used to pad the buffer to the next
63 /* Put result from CTX in first 16 bytes following RESBUF. The result
89 /* Process the remaining bytes in the internal buffer and the usual
97 /* Take yet unprocessed bytes into account. */
98 md5_uint32 bytes = ctx->buflen;
101 /* Now count remaining bytes. */
102 ctx->total[0] += bytes;
103 if (ctx->total[0] < bytes)
106 pad = bytes >= 56 ? 64 + 56 - bytes : 56 - bytes;
107 memcpy (&ctx->buffer[bytes], fillbuf, pad);
113 le64_copy (&ctx->buffer[bytes + pad], bit_length);
115 /* Process last bytes. */
116 md5_process_block (ctx->buffer, bytes + pad + 8, ctx);
123 /* Compute MD5 message digest for bytes read from STREAM. The
124 resulting message digest number will be written into the 16 bytes
141 /* We read the file in blocks of BLOCKSIZE bytes. One call of the
162 /* Process buffer with BLOCKSIZE bytes. Note that
168 /* Add the last bytes if necessary. */
180 /* Compute MD5 message digest for LEN bytes beginning at BUFFER. The
192 /* Process whole buffer but last len % 64 bytes. */
255 /* Move remaining bytes in internal buffer. */
282 /* Process LEN bytes of BUFFER, accumulating context into CTX.
299 number of bytes. Do a double word increment. */
304 /* Process all bytes in the buffer with 64 bytes in each round of