Lines Matching refs:left_over
251 size_t left_over = ctx->buflen; in sha256_process_bytes() local
252 size_t add = 128 - left_over > len ? len : 128 - left_over; in sha256_process_bytes()
254 memcpy(&ctx->buffer[left_over], buffer, add); in sha256_process_bytes()
261 memcpy(ctx->buffer, &ctx->buffer[(left_over + add) & ~63], ctx->buflen); in sha256_process_bytes()
291 size_t left_over = ctx->buflen; in sha256_process_bytes() local
293 memcpy(&ctx->buffer[left_over], buffer, len); in sha256_process_bytes()
294 left_over += len; in sha256_process_bytes()
295 if (left_over >= 64) { in sha256_process_bytes()
297 left_over -= 64; in sha256_process_bytes()
298 memcpy(ctx->buffer, &ctx->buffer[64], left_over); in sha256_process_bytes()
300 ctx->buflen = (uint32_t)left_over; in sha256_process_bytes()