Lines Matching refs:total
63 ctx->total[0] = ctx->total[1] = 0;
101 ctx->total[0] += bytes;
102 if (ctx->total[0] < bytes)
103 ++ctx->total[1];
109 *(sha1_uint32 *) &ctx->buffer[bytes + pad] = SWAP ((ctx->total[1] << 3) |
110 (ctx->total[0] >> 29));
111 *(sha1_uint32 *) &ctx->buffer[bytes + pad + 4] = SWAP (ctx->total[0] << 3);
237 ctx->total[0] += len;
238 if (ctx->total[0] < len)
239 ++ctx->total[1];