Home
last modified time | relevance | path

Searched defs:ROTR (Results 1 – 10 of 10) sorted by relevance

/external/boringssl/src/crypto/sha/
Dsha512.c357 #define ROTR(a, n) \ macro
378 #define ROTR(a, n) \ macro
385 #define ROTR(a, n) \ macro
404 #define ROTR(a, n) _rotr64((a), n) macro
429 #define ROTR(x, s) (((x) >> s) | (x) << (64 - s)) macro
/external/valgrind/none/tests/mips64/
Dshift_instructions.c9 ROTR, ROTRV, SLL, SLLV, enumerator
/external/skia/src/core/
DSkChecksum.h31 ROTR = 17, enumerator
/external/openssh/
Dblocks.c41 #define ROTR(x,c) (((x) >> (c)) | ((x) << (64 - (c)))) macro
/external/vboot_reference/firmware/2lib/
D2sha256.c43 #define ROTR(x, n) ((x >> n) | (x << ((sizeof(x) << 3) - n))) macro
D2sha512.c43 #define ROTR(x, n) ((x >> n) | (x << ((sizeof(x) << 3) - n))) macro
/external/vboot_reference/firmware/lib/cryptolib/
Dsha256.c44 #define ROTR(x, n) ((x >> n) | (x << ((sizeof(x) << 3) - n))) macro
Dsha512.c44 #define ROTR(x, n) ((x >> n) | (x << ((sizeof(x) << 3) - n))) macro
/external/llvm/include/llvm/CodeGen/
DISDOpcodes.h323 SHL, SRA, SRL, ROTL, ROTR, enumerator
/external/pdfium/core/src/fdrm/crypto/
Dfx_crypt_sha.cpp219 #define ROTR(x,n) (SHR(x,n) | (x << (32 - n))) in sha256_process() macro