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