Home | History | Annotate | Download | only in libiberty

Lines Matching defs:bytes

49 /* This array contains the bytes used to pad the buffer to the next
70 /* Put result from CTX in first 20 bytes following RESBUF. The result
87 /* Process the remaining bytes in the internal buffer and the usual
95 /* Take yet unprocessed bytes into account. */
96 sha1_uint32 bytes = ctx->buflen;
97 size_t size = (bytes < 56) ? 64 / 4 : 64 * 2 / 4;
99 /* Now count remaining bytes. */
100 ctx->total[0] += bytes;
101 if (ctx->total[0] < bytes)
108 memcpy (&((char *) ctx->buffer)[bytes], fillbuf, (size - 2) * 4 - bytes);
110 /* Process last bytes. */
116 /* Compute SHA1 message digest for bytes read from STREAM. The
117 resulting message digest number will be written into the 16 bytes
132 /* We read the file in blocks of BLOCKSIZE bytes. One call of the
165 /* Process buffer with BLOCKSIZE bytes. Note that
173 /* Process any remaining bytes. */
182 /* Compute SHA1 message digest for LEN bytes beginning at BUFFER. The
194 /* Process whole buffer but last len % 64 bytes. */
251 /* Move remaining bytes in internal buffer. */
282 /* Process LEN bytes of BUFFER, accumulating context into CTX.
301 number of bytes. Do a double word increment. */