Home
last modified time | relevance | path

Searched refs:ror16 (Results 1 – 6 of 6) sorted by relevance

/openbmc/linux/net/mac80211/
H A Dtkip.c126 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()
/openbmc/linux/include/linux/
H A Dbitops.h155 static inline __u16 ror16(__u16 word, unsigned int shift) in ror16() function
/openbmc/qemu/include/qemu/
H A Dbitops.h249 static inline uint16_t ror16(uint16_t word, unsigned int shift) in ror16() function
/openbmc/qemu/target/riscv/
H A Dvcrypto_helper.c66 RVVCALL(OPIVV2, vror_vv_h, OP_UUU_H, H2, H2, H2, ror16) in RVVCALL()
75 RVVCALL(OPIVX2, vror_vx_h, OP_UUU_H, H2, H2, ror16) in RVVCALL()
/openbmc/qemu/target/ppc/
H A Dexcp_helper.c2923 temp = ror16(k[i + 3], 3) ^ k[i + 1]; in helper_SIMON_LIKE_32_64()
2924 k[i + 4] = c ^ z ^ k[i] ^ temp ^ ror16(temp, 1); in helper_SIMON_LIKE_32_64()
/openbmc/qemu/accel/tcg/
H A Dtcg-runtime-gvec.c989 *(uint16_t *)(d + i) = ror16(*(uint16_t *)(a + i), sh); in HELPER()