Lines Matching refs:total
66 uint64_t total[2]; member
153 ctx->total[0] += len; in sha512_process_block()
154 if (ctx->total[0] < len) { in sha512_process_block()
155 ++ctx->total[1]; in sha512_process_block()
247 ctx->total[0] = ctx->total[1] = 0; in sha512_init_ctx()
264 ctx->total[0] += bytes; in sha512_finish_ctx()
265 if (ctx->total[0] < bytes) { in sha512_finish_ctx()
266 ++ctx->total[1]; in sha512_finish_ctx()
273 *(uint64_t *) &ctx->buffer[bytes + pad + 8] = SWAP(ctx->total[0] << 3); in sha512_finish_ctx()
274 *(uint64_t *) &ctx->buffer[bytes + pad] = SWAP((ctx->total[1] << 3) | in sha512_finish_ctx()
275 (ctx->total[0] >> 61)); in sha512_finish_ctx()