Lines Matching defs:bytes
37 /* This array contains the bytes used to pad the buffer to the next
61 /* Process LEN bytes of BUFFER, accumulating context into CTX.
80 number of bytes. Do a double word increment. */
85 /* Process all bytes in the buffer with 64 bytes in each round of
175 /* Process the remaining bytes in the internal buffer and the usual
183 /* Take yet unprocessed bytes into account. */
184 uint32_t bytes = ctx->buflen;
187 /* Now count remaining bytes. */
188 ctx->total[0] += bytes;
189 if (ctx->total[0] < bytes)
192 pad = bytes >= 56 ? 64 + 56 - bytes : 56 - bytes;
193 memcpy(&ctx->buffer[bytes], fillbuf, pad);
196 *(uint32_t *) & ctx->buffer[bytes + pad + 4] = SWAP(ctx->total[0] << 3);
197 *(uint32_t *) & ctx->buffer[bytes + pad] = SWAP((ctx->total[1] << 3) |
200 /* Process last bytes. */
201 sha256_process_block(ctx->buffer, bytes + pad + 8, ctx);
203 /* Put result from CTX in first 32 bytes following RESBUF. */
256 /* Move remaining bytes into internal buffer. */
371 /* Now get result of this (32 bytes) and add it to the other