Home
last modified time | relevance | path

Searched refs:ror64 (Results 1 – 21 of 21) sorted by relevance

/openbmc/linux/crypto/
H A Dsha512_generic.c83 #define e0(x) (ror64(x,28) ^ ror64(x,34) ^ ror64(x,39))
84 #define e1(x) (ror64(x,14) ^ ror64(x,18) ^ ror64(x,41))
85 #define s0(x) (ror64(x, 1) ^ ror64(x, 8) ^ (x >> 7))
86 #define s1(x) (ror64(x,19) ^ ror64(x,61) ^ (x >> 6))
H A Dblake2b_generic.c49 d = ror64(d ^ a, 32); \
51 b = ror64(b ^ c, 24); \
53 d = ror64(d ^ a, 16); \
55 b = ror64(b ^ c, 63); \
/openbmc/u-boot/lib/
H A Dsha512.c92 static inline uint64_t ror64(uint64_t word, unsigned int shift) in ror64() function
97 #define e0(x) (ror64(x,28) ^ ror64(x,34) ^ ror64(x,39))
98 #define e1(x) (ror64(x,14) ^ ror64(x,18) ^ ror64(x,41))
99 #define s0(x) (ror64(x, 1) ^ ror64(x, 8) ^ (x >> 7))
100 #define s1(x) (ror64(x,19) ^ ror64(x,61) ^ (x >> 6))
/openbmc/qemu/target/arm/tcg/
H A Dcrypto_helper.c413 return ror64(x, 28) ^ ror64(x, 34) ^ ror64(x, 39); in S0_512()
418 return ror64(x, 14) ^ ror64(x, 18) ^ ror64(x, 41); in S1_512()
423 return ror64(x, 1) ^ ror64(x, 8) ^ (x >> 7); in s0_512()
428 return ror64(x, 19) ^ ror64(x, 61) ^ (x >> 6); in s1_512()
H A Diwmmxt_helper.c569 x = ror64(x, n); in HELPER()
H A Dvec_helper.c2714 d[i] = ror64(n[i] ^ m[i], shr); in HELPER()
/openbmc/qemu/target/riscv/
H A Dvcrypto_helper.c68 RVVCALL(OPIVV2, vror_vv_d, OP_UUU_D, H8, H8, H8, ror64) in RVVCALL()
77 RVVCALL(OPIVX2, vror_vx_d, OP_UUU_D, H8, H8, ror64) in RVVCALL()
422 return ror64(x, 1) ^ ror64(x, 8) ^ (x >> 7); in sig0_sha512()
427 return ror64(x, 19) ^ ror64(x, 61) ^ (x >> 6); in sig1_sha512()
488 return ror64(x, 28) ^ ror64(x, 34) ^ ror64(x, 39); in sum0_64()
498 return ror64(x, 14) ^ ror64(x, 18) ^ ror64(x, 41); in sum1_64()
/openbmc/linux/arch/loongarch/include/asm/
H A Dchecksum.h56 sum += ror64(sum, 32); in ip_fast_csum()
/openbmc/linux/arch/x86/lib/
H A Dcsum-partial_64.c16 return (__force __wsum)((temp64 + ror64(temp64, 32)) >> 32); in csum_finalize_sum()
/openbmc/qemu/target/ppc/
H A Dint_helper.c360 right = ror64(right | (src & m), n); in helper_CFUGED()
362 left = ror64(left | (src & m), n); in helper_CFUGED()
2995 r->VsrD(i) = ror64(a->VsrD(i), 1) ^ in helper_vshasigmad()
2996 ror64(a->VsrD(i), 8) ^ in helper_vshasigmad()
2999 r->VsrD(i) = ror64(a->VsrD(i), 19) ^ in helper_vshasigmad()
3000 ror64(a->VsrD(i), 61) ^ in helper_vshasigmad()
3005 r->VsrD(i) = ror64(a->VsrD(i), 28) ^ in helper_vshasigmad()
3006 ror64(a->VsrD(i), 34) ^ in helper_vshasigmad()
3007 ror64(a->VsrD(i), 39); in helper_vshasigmad()
3009 r->VsrD(i) = ror64(a->VsrD(i), 14) ^ in helper_vshasigmad()
[all …]
H A Dexcp_helper.c2876 stage0_h |= ror64(rb & 0xff, 8 * (2 * i + 1)); in hash_digest()
2878 stage0_l |= ror64((rb >> 32) & 0xff, 8 * (2 * i + 1)); in hash_digest()
/openbmc/linux/arch/powerpc/include/asm/
H A Dchecksum.h54 return (x + ror64(x, 32)) >> 32; in from64to32()
/openbmc/linux/arch/x86/crypto/
H A Dcamellia_glue.c792 y = ror64(y, 32); \
795 #define SET_SUBKEY_LR(INDEX, sRL) (subkey[(INDEX)] = ror64((sRL), 32))
/openbmc/linux/include/linux/
H A Dbitops.h115 static inline __u64 ror64(__u64 word, unsigned int shift) in ror64() function
/openbmc/qemu/include/qemu/
H A Dbitops.h468 static inline uint64_t ror64(uint64_t word, unsigned int shift) in ror64() function
/openbmc/linux/arch/x86/include/asm/
H A Defi.h349 return ror64(rol32(status, 1), 1); in __efi64_widen_efi_status()
/openbmc/qemu/tcg/
H A Dtci.c860 regs[r0] = ror64(regs[r1], regs[r2] & 63); in tcg_qemu_tb_exec()
H A Doptimize.c484 return ror64(x, y & 63); in do_constant_folding_2()
/openbmc/qemu/accel/tcg/
H A Dtcg-runtime-gvec.c1013 *(uint64_t *)(d + i) = ror64(*(uint64_t *)(a + i), sh); in HELPER()
/openbmc/qemu/target/ppc/translate/
H A Dvmx-impl.c.inc1608 * m = ror64(m, plen);
/openbmc/qemu/target/mips/tcg/
H A Dmsa_helper.c8223 return ror64(bswap64(x), 32); in bswap32x2()