Home
last modified time | relevance | path

Searched refs:_lrotl (Results 1 – 11 of 11) sorted by relevance

/freebsd/contrib/llvm-project/clang/lib/Headers/
H A Dia32intrin.h713 #define _lrotl(a,b) __rolq((a), (b)) macro
753 #define _lrotl(a,b) __rold((a), (b)) macro
/freebsd/crypto/openssl/crypto/aes/
H A Daes_local.h19 # define SWAP(x) (_lrotl(x, 8) & 0x00ff00ff | _lrotr(x, 8) & 0xff00ff00)
H A Daes_x86core.c95 # define ROTATE(a,n) _lrotl(a,n)
/freebsd/crypto/openssl/crypto/rc5/
H A Drc5_local.h129 # define ROTATE_l32(a,n) _lrotl(a,n)
/freebsd/contrib/wpa/src/crypto/
H A Daes_i.h109 #define SWAP(x) (_lrotl(x, 8) & 0x00ff00ff | _lrotr(x, 8) & 0xff00ff00)
/freebsd/crypto/openssl/crypto/cast/
H A Dcast_local.h117 # define ROTL(a,n) (_lrotl(a,n))
/freebsd/lib/libmd/
H A Drmd_locl.h155 #define ROTATE(a,n) _lrotl(a,n)
H A Dsha_locl.h168 #define ROTATE(a,n) _lrotl(a,n)
/freebsd/sys/crypto/rijndael/
H A Drijndael-alg-fst.c723 #define SWAP(x) (_lrotl(x, 8) & 0x00ff00ff | _lrotr(x, 8) & 0xff00ff00)
/freebsd/contrib/llvm-project/clang/include/clang/Basic/
H A DBuiltins.td2560 let Spellings = ["_lrotl"];
/freebsd/crypto/openssl/
H A DCHANGES.md16610 * Make sure _lrotl and _lrotr are only used with MSVC.