Lines Matching refs:buflen
121 ctx->buflen = 0; in __sha512_init_ctx()
134 uint64_t bytes = ctx->buflen; in __sha512_finish_ctx()
170 if (ctx->buflen != 0) in __sha512_process_bytes()
172 size_t left_over = ctx->buflen; in __sha512_process_bytes()
176 ctx->buflen += add; in __sha512_process_bytes()
178 if (ctx->buflen > 128) in __sha512_process_bytes()
180 __sha512_process_block (ctx->buffer, ctx->buflen & ~127, ctx); in __sha512_process_bytes()
182 ctx->buflen &= 127; in __sha512_process_bytes()
185 ctx->buflen); in __sha512_process_bytes()
223 size_t left_over = ctx->buflen; in __sha512_process_bytes()
233 ctx->buflen = left_over; in __sha512_process_bytes()