Lines Matching refs:h0
97 u32 h0, h1, h2, h3, h4; in poly1305_blocks_internal() local
114 h0 = state->h[0]; in poly1305_blocks_internal()
122 h0 += (get_unaligned_le32(src + 0) >> 0) & 0x3ffffff; in poly1305_blocks_internal()
129 d0 = mlt(h0, r0) + mlt(h1, s4) + mlt(h2, s3) + in poly1305_blocks_internal()
131 d1 = mlt(h0, r1) + mlt(h1, r0) + mlt(h2, s4) + in poly1305_blocks_internal()
133 d2 = mlt(h0, r2) + mlt(h1, r1) + mlt(h2, r0) + in poly1305_blocks_internal()
135 d3 = mlt(h0, r3) + mlt(h1, r2) + mlt(h2, r1) + in poly1305_blocks_internal()
137 d4 = mlt(h0, r4) + mlt(h1, r3) + mlt(h2, r2) + in poly1305_blocks_internal()
141 d1 += sr(d0, 26); h0 = and(d0, 0x3ffffff); in poly1305_blocks_internal()
145 h0 += sr(d4, 26) * 5; h4 = and(d4, 0x3ffffff); in poly1305_blocks_internal()
146 h1 += h0 >> 26; h0 = h0 & 0x3ffffff; in poly1305_blocks_internal()
151 state->h[0] = h0; in poly1305_blocks_internal()
218 u32 h0, h1, h2, h3, h4; in poly1305_core_emit() local
223 h0 = state->h[0]; in poly1305_core_emit()
232 h0 += (h4 >> 26) * 5; h4 = h4 & 0x3ffffff; in poly1305_core_emit()
233 h1 += (h0 >> 26); h0 = h0 & 0x3ffffff; in poly1305_core_emit()
236 g0 = h0 + 5; in poly1305_core_emit()
250 h0 = (h0 & mask) | g0; in poly1305_core_emit()
257 put_unaligned_le32((h0 >> 0) | (h1 << 26), dst + 0); in poly1305_core_emit()