Searched refs:_lrotl (Results 1 – 11 of 11) sorted by relevance
/freebsd/contrib/llvm-project/clang/lib/Headers/ |
H A D | ia32intrin.h | 713 #define _lrotl(a,b) __rolq((a), (b)) macro 753 #define _lrotl(a,b) __rold((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)
|
H A D | aes_x86core.c | 95 # define ROTATE(a,n) _lrotl(a,n)
|
/freebsd/crypto/openssl/crypto/rc5/ |
H A D | rc5_local.h | 129 # define ROTATE_l32(a,n) _lrotl(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/cast/ |
H A D | cast_local.h | 117 # define ROTL(a,n) (_lrotl(a,n))
|
/freebsd/lib/libmd/ |
H A D | rmd_locl.h | 155 #define ROTATE(a,n) _lrotl(a,n)
|
H A D | sha_locl.h | 168 #define ROTATE(a,n) _lrotl(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 | 2560 let Spellings = ["_lrotl"];
|
/freebsd/crypto/openssl/ |
H A D | CHANGES.md | 16610 * Make sure _lrotl and _lrotr are only used with MSVC.
|