Lines Matching refs:left_over
207 size_t left_over = ctx->buflen; in sha1_process_bytes() local
208 size_t add = 128 - left_over > len ? len : 128 - left_over; in sha1_process_bytes()
210 memcpy (&((char *) ctx->buffer)[left_over], buffer, add); in sha1_process_bytes()
220 &((char *) ctx->buffer)[(left_over + add) & ~63], in sha1_process_bytes()
253 size_t left_over = ctx->buflen; in sha1_process_bytes() local
255 memcpy (&((char *) ctx->buffer)[left_over], buffer, len); in sha1_process_bytes()
256 left_over += len; in sha1_process_bytes()
257 if (left_over >= 64) in sha1_process_bytes()
260 left_over -= 64; in sha1_process_bytes()
261 memcpy (ctx->buffer, &ctx->buffer[16], left_over); in sha1_process_bytes()
263 ctx->buflen = left_over; in sha1_process_bytes()