Lines Matching refs:mask
220 u64 mask; in poly1305_emit() local
232 mask = 0 - (g2 >> 2); in poly1305_emit()
233 g0 &= mask; in poly1305_emit()
234 g1 &= mask; in poly1305_emit()
235 mask = ~mask; in poly1305_emit()
236 h0 = (h0 & mask) | g0; in poly1305_emit()
237 h1 = (h1 & mask) | g1; in poly1305_emit()
386 u32 mask; in poly1305_emit() local
402 mask = 0 - (g4 >> 2); in poly1305_emit()
403 g0 &= mask; in poly1305_emit()
404 g1 &= mask; in poly1305_emit()
405 g2 &= mask; in poly1305_emit()
406 g3 &= mask; in poly1305_emit()
407 mask = ~mask; in poly1305_emit()
408 h0 = (h0 & mask) | g0; in poly1305_emit()
409 h1 = (h1 & mask) | g1; in poly1305_emit()
410 h2 = (h2 & mask) | g2; in poly1305_emit()
411 h3 = (h3 & mask) | g3; in poly1305_emit()