Lines Matching refs:left_over
127 size_t left_over = ctx->buflen; in sha1_process_bytes() local
128 size_t add = 128 - left_over > len ? len : 128 - left_over; in sha1_process_bytes()
130 memcpy (&ctx->buffer[left_over], buffer, add); in sha1_process_bytes()
139 memcpy (ctx->buffer, &ctx->buffer[(left_over + add) & ~63], in sha1_process_bytes()
177 size_t left_over = ctx->buflen; in sha1_process_bytes() local
179 memcpy (&ctx->buffer[left_over], buffer, len); in sha1_process_bytes()
180 left_over += len; in sha1_process_bytes()
181 if (left_over >= 64) in sha1_process_bytes()
184 left_over -= 64; in sha1_process_bytes()
185 memcpy (ctx->buffer, &ctx->buffer[64], left_over); in sha1_process_bytes()
187 ctx->buflen = left_over; in sha1_process_bytes()