Lines Matching refs:left_over
247 size_t left_over = ctx->buflen; in __crypt__sha512_process_bytes() local
248 size_t add = 256 - left_over > len ? len : 256 - left_over; in __crypt__sha512_process_bytes()
250 memcpy (&ctx->buffer[left_over], buffer, add); in __crypt__sha512_process_bytes()
259 memcpy (ctx->buffer, &ctx->buffer[(left_over + add) & ~127], in __crypt__sha512_process_bytes()
294 size_t left_over = ctx->buflen; in __crypt__sha512_process_bytes() local
296 memcpy (&ctx->buffer[left_over], buffer, len); in __crypt__sha512_process_bytes()
297 left_over += len; in __crypt__sha512_process_bytes()
298 if (left_over >= 128) in __crypt__sha512_process_bytes()
301 left_over -= 128; in __crypt__sha512_process_bytes()
302 memcpy (ctx->buffer, &ctx->buffer[128], left_over); in __crypt__sha512_process_bytes()
304 ctx->buflen = left_over; in __crypt__sha512_process_bytes()