Lines Matching refs:left_over
172 size_t left_over = ctx->buflen; in __sha512_process_bytes() local
173 size_t add = 256 - left_over > len ? len : 256 - left_over; in __sha512_process_bytes()
175 memcpy (&ctx->buffer[left_over], buffer, add); in __sha512_process_bytes()
184 memcpy (ctx->buffer, &ctx->buffer[(left_over + add) & ~127], in __sha512_process_bytes()
223 size_t left_over = ctx->buflen; in __sha512_process_bytes() local
225 memcpy (&ctx->buffer[left_over], buffer, len); in __sha512_process_bytes()
226 left_over += len; in __sha512_process_bytes()
227 if (left_over >= 128) in __sha512_process_bytes()
230 left_over -= 128; in __sha512_process_bytes()
231 memcpy (ctx->buffer, &ctx->buffer[128], left_over); in __sha512_process_bytes()
233 ctx->buflen = left_over; in __sha512_process_bytes()