Lines Matching defs:total
53 uint32_t total[2]; /**< number of bytes processed */
84 sha1_context_p->total[0] = 0;
85 sha1_context_p->total[1] = 0;
276 left = sha1_context_p->total[0] & 0x3F;
279 sha1_context_p->total[0] += (uint32_t) source_length;
282 if (sha1_context_p->total[0] < (uint32_t) source_length)
284 sha1_context_p->total[1]++;
318 uint32_t high = (sha1_context_p->total[0] >> 29) | (sha1_context_p->total[1] << 3);
319 uint32_t low = (sha1_context_p->total[0] << 3);
321 uint32_t last = sha1_context_p->total[0] & 0x3F;