Lines Matching refs:total
49 uint64_t total[2]; member
136 ctx->total[0] += len; in sha512_process_block()
137 if (ctx->total[0] < len) { in sha512_process_block()
138 ++ctx->total[1]; in sha512_process_block()
230 ctx->total[0] = ctx->total[1] = 0; in sha512_init_ctx()
247 ctx->total[0] += bytes; in sha512_finish_ctx()
248 if (ctx->total[0] < bytes) { in sha512_finish_ctx()
249 ++ctx->total[1]; in sha512_finish_ctx()
256 *(uint64_t *) &ctx->buffer[bytes + pad + 8] = SWAP(ctx->total[0] << 3); in sha512_finish_ctx()
257 *(uint64_t *) &ctx->buffer[bytes + pad] = SWAP((ctx->total[1] << 3) | in sha512_finish_ctx()
258 (ctx->total[0] >> 61)); in sha512_finish_ctx()