Searched refs:rotl (Results 1 – 7 of 7) sorted by relevance
/openbmc/qemu/target/riscv/ |
H A D | crypto_helper.c | 183 uint32_t rotl = rol32(x, shamt); in HELPER() local 185 return sext32_xlen(rotl ^ (uint32_t)rs1); in HELPER() 197 uint32_t rotl = rol32(x, shamt); in HELPER() local 199 return sext32_xlen(rotl ^ (uint32_t)rs1); in HELPER()
|
/openbmc/linux/arch/mips/crypto/ |
H A D | chacha-core.S | 58 #define ROTx rotl 195 rotl X(V), S; \ 196 rotl X(W), S; \ 197 rotl X(Y), S; \ 198 rotl X(Z), S;
|
/openbmc/linux/drivers/staging/rtl8712/ |
H A D | rtl871x_security.c | 814 u8 rotl[4]; in mix_column() local 831 rotl[0] = in[3]; /* Rotate left 8 bits */ in mix_column() 832 rotl[1] = in[0]; in mix_column() 833 rotl[2] = in[1]; in mix_column() 834 rotl[3] = in[2]; in mix_column() 854 xor_32(swap_halves, rotl, tempb); in mix_column()
|
/openbmc/qemu/hw/usb/ |
H A D | hcd-xhci.c | 2448 static uint32_t rotl(uint32_t v, unsigned count) in rotl() function 2458 val = rotl(lo - 0x49434878, 32 - ((hi>>8) & 0x1F)); in xhci_nec_challenge() 2459 val += rotl(lo + 0x49434878, hi & 0x1F); in xhci_nec_challenge() 2460 val -= rotl(hi ^ 0x49434878, (lo >> 16) & 0x1F); in xhci_nec_challenge()
|
/openbmc/qemu/tcg/tci/ |
H A D | tcg-target.c.inc | 753 CASE_32_64(rotl) /* Optional (TCG_TARGET_HAS_rot_*). */
|
/openbmc/qemu/tcg/ |
H A D | optimize.c | 3000 CASE_OP_32_64(rotl): in tcg_optimize()
|
/openbmc/qemu/tcg/i386/ |
H A D | tcg-target.c.inc | 2771 OP_32_64(rotl):
|