Lines Matching refs:fill
227 int fill; in sha1_update() local
234 fill = 64 - left; in sha1_update()
242 if (left && ilen >= fill) { in sha1_update()
243 memcpy ((void *) (ctx->buffer + left), (void *) input, fill); in sha1_update()
245 input += fill; in sha1_update()
246 ilen -= fill; in sha1_update()
479 uint32_t left, fill; in sha256_update() local
485 fill = 64 - left; in sha256_update()
493 if (left && length >= fill) { in sha256_update()
494 memcpy((void *) (ctx->buffer + left), (void *) input, fill); in sha256_update()
496 length -= fill; in sha256_update()
497 input += fill; in sha256_update()