Lines Matching refs:h2
47 uint32_t h0, h1, h2, h3, h4; member
85 state->h2 += ((((uint64_t)t2 << 32) | t1) >> 20) & 0x3ffffff; in poly1305_update()
91 mul32x32_64(state->h2, state->s3) + mul32x32_64(state->h3, state->s2) + in poly1305_update()
94 mul32x32_64(state->h2, state->s4) + mul32x32_64(state->h3, state->s3) + in poly1305_update()
97 mul32x32_64(state->h2, state->r0) + mul32x32_64(state->h3, state->s4) + in poly1305_update()
100 mul32x32_64(state->h2, state->r1) + mul32x32_64(state->h3, state->r0) + in poly1305_update()
103 mul32x32_64(state->h2, state->r2) + mul32x32_64(state->h3, state->r1) + in poly1305_update()
112 state->h2 = (uint32_t)t[2] & 0x3ffffff; in poly1305_update()
148 state->h2 += ((((uint64_t)t2 << 32) | t1) >> 20) & 0x3ffffff; in poly1305_update()
193 state->h2 = 0; in CRYPTO_poly1305_init()
268 state->h2 += b; in CRYPTO_poly1305_finish()
269 b = state->h2 >> 26; in CRYPTO_poly1305_finish()
270 state->h2 = state->h2 & 0x3ffffff; in CRYPTO_poly1305_finish()
285 g2 = state->h2 + b; in CRYPTO_poly1305_finish()
297 state->h2 = (state->h2 & nb) | (g2 & b); in CRYPTO_poly1305_finish()
302 f1 = ((state->h1 >> 6) | (state->h2 << 20)) + in CRYPTO_poly1305_finish()
304 f2 = ((state->h2 >> 12) | (state->h3 << 14)) + in CRYPTO_poly1305_finish()