Lines Matching refs:mask
32 static inline u32 and(u32 v, u32 mask) in and() argument
34 return v & mask; in and()
220 u32 mask; in poly1305_core_emit() local
243 mask = (g4 >> ((sizeof(u32) * 8) - 1)) - 1; in poly1305_core_emit()
244 g0 &= mask; in poly1305_core_emit()
245 g1 &= mask; in poly1305_core_emit()
246 g2 &= mask; in poly1305_core_emit()
247 g3 &= mask; in poly1305_core_emit()
248 g4 &= mask; in poly1305_core_emit()
249 mask = ~mask; in poly1305_core_emit()
250 h0 = (h0 & mask) | g0; in poly1305_core_emit()
251 h1 = (h1 & mask) | g1; in poly1305_core_emit()
252 h2 = (h2 & mask) | g2; in poly1305_core_emit()
253 h3 = (h3 & mask) | g3; in poly1305_core_emit()
254 h4 = (h4 & mask) | g4; in poly1305_core_emit()