Lines Matching refs:total
75 ctx->total[0] = ctx->total[1] = 0;
112 ctx->total[0] += bytes;
113 if (ctx->total[0] < bytes)
114 ++ctx->total[1];
120 *(md5_uint32 *) &ctx->buffer[bytes + pad] = SWAP (ctx->total[0] << 3);
121 *(md5_uint32 *) &ctx->buffer[bytes + pad + 4] = SWAP ((ctx->total[1] << 3) |
122 (ctx->total[0] >> 29));
314 ctx->total[0] += len;
315 if (ctx->total[0] < len)
316 ++ctx->total[1];