Searched refs:_lrotr (Results 1 – 8 of 8) sorted by relevance
/freebsd/contrib/llvm-project/clang/lib/Headers/ |
H A D | ia32intrin.h | 733 #define _lrotr(a,b) __rorq((a), (b)) macro 773 #define _lrotr(a,b) __rord((a), (b)) macro
|
/freebsd/crypto/openssl/crypto/aes/ |
H A D | aes_local.h | 19 # define SWAP(x) (_lrotl(x, 8) & 0x00ff00ff | _lrotr(x, 8) & 0xff00ff00)
|
/freebsd/crypto/openssl/crypto/rc5/ |
H A D | rc5_local.h | 130 # define ROTATE_r32(a,n) _lrotr(a,n)
|
/freebsd/contrib/wpa/src/crypto/ |
H A D | aes_i.h | 109 #define SWAP(x) (_lrotl(x, 8) & 0x00ff00ff | _lrotr(x, 8) & 0xff00ff00)
|
/freebsd/crypto/openssl/crypto/des/ |
H A D | des_local.h | 100 # define ROTATE(a,n) (_lrotr(a,n))
|
/freebsd/sys/crypto/rijndael/ |
H A D | rijndael-alg-fst.c | 723 #define SWAP(x) (_lrotl(x, 8) & 0x00ff00ff | _lrotr(x, 8) & 0xff00ff00)
|
/freebsd/contrib/llvm-project/clang/include/clang/Basic/ |
H A D | Builtins.td | 2590 let Spellings = ["_lrotr"];
|
/freebsd/crypto/openssl/ |
H A D | CHANGES.md | 16610 * Make sure _lrotl and _lrotr are only used with MSVC.
|