Searched refs:ror16 (Results 1 – 2 of 2) sorted by relevance
126 ppk[0] += ror16(ppk[5] ^ get_unaligned_le16(tk + 12), 1); in tkip_mixing_phase2()127 ppk[1] += ror16(ppk[0] ^ get_unaligned_le16(tk + 14), 1); in tkip_mixing_phase2()128 ppk[2] += ror16(ppk[1], 1); in tkip_mixing_phase2()129 ppk[3] += ror16(ppk[2], 1); in tkip_mixing_phase2()130 ppk[4] += ror16(ppk[3], 1); in tkip_mixing_phase2()131 ppk[5] += ror16(ppk[4], 1); in tkip_mixing_phase2()
133 static inline __u16 ror16(__u16 word, unsigned int shift) in ror16() function