Home | History | Annotate | Download | only in libiberty

Lines Matching defs:BLOCKSIZE

44 #define BLOCKSIZE 4096
45 #if BLOCKSIZE % 64 != 0
46 # error "invalid BLOCKSIZE"
123 char buffer[BLOCKSIZE + 72];
132 /* We read the file in blocks of BLOCKSIZE bytes. One call of the
141 n = fread (buffer + sum, 1, BLOCKSIZE - sum, stream);
145 if (sum == BLOCKSIZE)
165 /* Process buffer with BLOCKSIZE bytes. Note that
166 BLOCKSIZE % 64 == 0
168 sha1_process_block (buffer, BLOCKSIZE, &ctx);