Lines Matching refs:buflen
100 ctx->buflen = 0; in __sha256_init_ctx()
113 uint32_t bytes = ctx->buflen; in __sha256_finish_ctx()
147 if (ctx->buflen != 0) in __sha256_process_bytes()
149 size_t left_over = ctx->buflen; in __sha256_process_bytes()
153 ctx->buflen += add; in __sha256_process_bytes()
155 if (ctx->buflen > 64) in __sha256_process_bytes()
157 __sha256_process_block (ctx->buffer, ctx->buflen & ~63, ctx); in __sha256_process_bytes()
159 ctx->buflen &= 63; in __sha256_process_bytes()
162 ctx->buflen); in __sha256_process_bytes()
199 size_t left_over = ctx->buflen; in __sha256_process_bytes()
209 ctx->buflen = left_over; in __sha256_process_bytes()