Lines Matching refs:total
60 uint64_t total[2]; member
147 ctx->total[0] += len; in sha512_process_block()
148 if (ctx->total[0] < len) { in sha512_process_block()
149 ++ctx->total[1]; in sha512_process_block()
241 ctx->total[0] = ctx->total[1] = 0; in sha512_init_ctx()
258 ctx->total[0] += bytes; in sha512_finish_ctx()
259 if (ctx->total[0] < bytes) { in sha512_finish_ctx()
260 ++ctx->total[1]; in sha512_finish_ctx()
267 *(uint64_t *) &ctx->buffer[bytes + pad + 8] = SWAP(ctx->total[0] << 3); in sha512_finish_ctx()
268 *(uint64_t *) &ctx->buffer[bytes + pad] = SWAP((ctx->total[1] << 3) | in sha512_finish_ctx()
269 (ctx->total[0] >> 61)); in sha512_finish_ctx()