Lines Matching refs:h3
97 u32 h0, h1, h2, h3, h4; in poly1305_blocks_internal() local
117 h3 = state->h[3]; in poly1305_blocks_internal()
125 h3 += (get_unaligned_le32(src + 9) >> 6) & 0x3ffffff; in poly1305_blocks_internal()
130 mlt(h3, s2) + mlt(h4, s1); in poly1305_blocks_internal()
132 mlt(h3, s3) + mlt(h4, s2); in poly1305_blocks_internal()
134 mlt(h3, s4) + mlt(h4, s3); in poly1305_blocks_internal()
136 mlt(h3, r0) + mlt(h4, s4); in poly1305_blocks_internal()
138 mlt(h3, r1) + mlt(h4, r0); in poly1305_blocks_internal()
144 d4 += sr(d3, 26); h3 = and(d3, 0x3ffffff); in poly1305_blocks_internal()
154 state->h[3] = h3; in poly1305_blocks_internal()
218 u32 h0, h1, h2, h3, h4; in poly1305_core_emit() local
226 h3 = state->h[3]; in poly1305_core_emit()
230 h3 += (h2 >> 26); h2 = h2 & 0x3ffffff; in poly1305_core_emit()
231 h4 += (h3 >> 26); h3 = h3 & 0x3ffffff; in poly1305_core_emit()
239 g3 = h3 + (g2 >> 26); g2 &= 0x3ffffff; in poly1305_core_emit()
253 h3 = (h3 & mask) | g3; in poly1305_core_emit()
259 put_unaligned_le32((h2 >> 12) | (h3 << 14), dst + 8); in poly1305_core_emit()
260 put_unaligned_le32((h3 >> 18) | (h4 << 8), dst + 12); in poly1305_core_emit()