| /src/external/mpl/dhcp/bind/dist/lib/isc/ |
| xoshiro128starstar.c | 44 rotl(const uint32_t x, int k) { function 52 result_starstar = rotl(seed[0] * 5, 7) * 9; 62 seed[3] = rotl(seed[3], 11);
|
| /src/external/cddl/osnet/dist/uts/common/dtrace/ |
| dtrace_xoroshiro128_plus.c | 38 rotl(const uint64_t x, int k) function 85 state[0] = rotl(s0, 55) ^ s1 ^ (s1 << 14); 86 state[1] = rotl(s1, 36);
|
| /src/crypto/external/apache2/openssl/dist/crypto/sm4/ |
| sm4.c | 227 static ossl_inline uint32_t rotl(uint32_t a, uint8_t n) function 264 return t ^ rotl(t, 2) ^ rotl(t, 10) ^ rotl(t, 18) ^ rotl(t, 24); 276 return t ^ rotl(t, 13) ^ rotl(t, 23);
|
| /src/crypto/external/bsd/openssl/dist/crypto/sm4/ |
| sm4.c | 88 static ossl_inline uint32_t rotl(uint32_t a, uint8_t n) function 121 return t ^ rotl(t, 2) ^ rotl(t, 10) ^ rotl(t, 18) ^ rotl(t, 24); 127 rotl(SM4_SBOX_T[(uint8_t)(X >> 16)], 24) ^ 128 rotl(SM4_SBOX_T[(uint8_t)(X >> 8)], 16) ^ 129 rotl(SM4_SBOX_T[(uint8_t)X], 8); 171 t = t ^ rotl(t, 13) ^ rotl(t, 23) [all...] |
| /src/crypto/external/bsd/openssl.old/dist/crypto/sm4/ |
| sm4.c | 88 static ossl_inline uint32_t rotl(uint32_t a, uint8_t n) function 121 return t ^ rotl(t, 2) ^ rotl(t, 10) ^ rotl(t, 18) ^ rotl(t, 24); 127 rotl(SM4_SBOX_T[(uint8_t)(X >> 16)], 24) ^ 128 rotl(SM4_SBOX_T[(uint8_t)(X >> 8)], 16) ^ 129 rotl(SM4_SBOX_T[(uint8_t)X], 8); 171 t = t ^ rotl(t, 13) ^ rotl(t, 23) [all...] |
| /src/sys/net80211/ |
| ieee80211_crypto_tkip.c | 703 static __inline u32 rotl(u32 val, int bits) function 723 r ^= rotl(l, 17); \ 727 r ^= rotl(l, 3); \
|
| /src/external/gpl3/gcc/dist/libgfortran/intrinsics/ |
| random.c | 258 rotl (const uint64_t x, int k) function 267 const uint64_t result = rotl(rs->s[1] * 5, 7) * 9; 278 rs->s[3] = rotl(rs->s[3], 45);
|
| /src/external/gpl3/gcc.old/dist/libgfortran/intrinsics/ |
| random.c | 258 rotl (const uint64_t x, int k) function 267 const uint64_t result = rotl(rs->s[1] * 5, 7) * 9; 278 rs->s[3] = rotl(rs->s[3], 45);
|
| /src/external/gpl3/gdb/dist/sim/h8300/ |
| writecode.c | 392 rotl () function 726 sf, 1, "rotl", rotl, 0, 0
|
| /src/external/gpl3/gdb.old/dist/sim/h8300/ |
| writecode.c | 392 rotl () function 726 sf, 1, "rotl", rotl, 0, 0
|
| /src/external/mit/lua/dist/src/ |
| lmathlib.c | 306 static Rand64 rotl (Rand64 x, int n) { function 315 Rand64 res = rotl(state1 * 5, 7) * 9; 319 state[3] = rotl(state3, 45); 422 static Rand64 rotl (Rand64 i, int n) { function 440 Rand64 res = times9(rotl(times5(state[1]), 7));
|
| /src/external/gpl3/gcc.old/dist/gcc/config/spu/ |
| spu.c | 563 rtx rotl = gen_reg_rtx (SImode); 573 emit_insn (gen_negsi2 (rotl, low)); 574 emit_insn (gen_rotqby_ti (shift_reg, shift_reg, rotl)); 575 emit_insn (gen_rotqmby_ti (mask0, mask, rotl)); 5862 rtx rotl = gen_reg_rtx (V4SImode); 5880 emit_insn (gen_vrotlv4si3 (rotl, shuf, spu_const (V4SImode, 7))); 5882 emit_insn (gen_selb (insn, insnc, rotl, mask)); 560 rtx rotl = gen_reg_rtx (SImode); local 5851 rtx rotl = gen_reg_rtx (V4SImode); local
|