Lines Matching refs:left_over
149 size_t left_over = ctx->buflen; in __sha256_process_bytes() local
150 size_t add = 128 - left_over > len ? len : 128 - left_over; in __sha256_process_bytes()
152 memcpy (&ctx->buffer[left_over], buffer, add); in __sha256_process_bytes()
161 memcpy (ctx->buffer, &ctx->buffer[(left_over + add) & ~63], in __sha256_process_bytes()
199 size_t left_over = ctx->buflen; in __sha256_process_bytes() local
201 memcpy (&ctx->buffer[left_over], buffer, len); in __sha256_process_bytes()
202 left_over += len; in __sha256_process_bytes()
203 if (left_over >= 64) in __sha256_process_bytes()
206 left_over -= 64; in __sha256_process_bytes()
207 memcpy (ctx->buffer, &ctx->buffer[64], left_over); in __sha256_process_bytes()
209 ctx->buflen = left_over; in __sha256_process_bytes()