Lines Matching refs:h4
65 uint32_t h0, h1, h2, h3, h4; member
100 state->h4 += (t3 >> 8) | (1 << 24); in poly1305_update()
105 mul32x32_64(state->h4, state->s1); in poly1305_update()
108 mul32x32_64(state->h4, state->s2); in poly1305_update()
111 mul32x32_64(state->h4, state->s3); in poly1305_update()
114 mul32x32_64(state->h4, state->s4); in poly1305_update()
117 mul32x32_64(state->h4, state->r0); in poly1305_update()
131 state->h4 = (uint32_t)t[4] & 0x3ffffff; in poly1305_update()
163 state->h4 += (t3 >> 8); in poly1305_update()
208 state->h4 = 0; in CRYPTO_poly1305_init()
287 state->h4 += b; in CRYPTO_poly1305_finish()
288 b = state->h4 >> 26; in CRYPTO_poly1305_finish()
289 state->h4 = state->h4 & 0x3ffffff; in CRYPTO_poly1305_finish()
304 g4 = state->h4 + b - (1 << 26); in CRYPTO_poly1305_finish()
312 state->h4 = (state->h4 & nb) | (g4 & b); in CRYPTO_poly1305_finish()
319 f3 = ((state->h3 >> 18) | (state->h4 << 8)) + in CRYPTO_poly1305_finish()