Searched defs:ROTR (Results 1 – 10 of 10) sorted by relevance
/external/boringssl/src/crypto/sha/ |
D | sha512.c | 357 #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/ |
D | shift_instructions.c | 9 ROTR, ROTRV, SLL, SLLV, enumerator
|
/external/skia/src/core/ |
D | SkChecksum.h | 31 ROTR = 17, enumerator
|
/external/openssh/ |
D | blocks.c | 41 #define ROTR(x,c) (((x) >> (c)) | ((x) << (64 - (c)))) macro
|
/external/vboot_reference/firmware/2lib/ |
D | 2sha256.c | 43 #define ROTR(x, n) ((x >> n) | (x << ((sizeof(x) << 3) - n))) macro
|
D | 2sha512.c | 43 #define ROTR(x, n) ((x >> n) | (x << ((sizeof(x) << 3) - n))) macro
|
/external/vboot_reference/firmware/lib/cryptolib/ |
D | sha256.c | 44 #define ROTR(x, n) ((x >> n) | (x << ((sizeof(x) << 3) - n))) macro
|
D | sha512.c | 44 #define ROTR(x, n) ((x >> n) | (x << ((sizeof(x) << 3) - n))) macro
|
/external/llvm/include/llvm/CodeGen/ |
D | ISDOpcodes.h | 323 SHL, SRA, SRL, ROTL, ROTR, enumerator
|
/external/pdfium/core/src/fdrm/crypto/ |
D | fx_crypt_sha.cpp | 219 #define ROTR(x,n) (SHR(x,n) | (x << (32 - n))) in sha256_process() macro
|