Lines Matching defs:bytes
47 /* This array contains the bytes used to pad the buffer to the next
67 /* Put result from CTX in first 20 bytes following RESBUF. The result
86 /* Process the remaining bytes in the internal buffer and the usual
96 /* Take yet unprocessed bytes into account. */
97 sha1_uint32 bytes = ctx->buflen;
100 /* Now count remaining bytes. */
101 ctx->total[0] += bytes;
102 if (ctx->total[0] < bytes)
105 pad = bytes >= 56 ? 64 + 56 - bytes : 56 - bytes;
106 memcpy (&ctx->buffer[bytes], fillbuf, pad);
109 *(sha1_uint32 *) &ctx->buffer[bytes + pad] = SWAP ((ctx->total[1] << 3) |
111 *(sha1_uint32 *) &ctx->buffer[bytes + pad + 4] = SWAP (ctx->total[0] << 3);
113 /* Process last bytes. */
114 sha1_process_block (ctx->buffer, bytes + pad + 8, ctx);
177 /* Move remaining bytes in internal buffer. */
214 /* Process LEN bytes of BUFFER, accumulating context into CTX.
236 number of bytes. Do a double word increment. */
241 /* Process all bytes in the buffer with 64 bytes in each round of