Searched defs:ROTR (Results 1 – 10 of 10) sorted by relevance
/external/boringssl/src/crypto/sha/ |
D | sha512.c | 361 #define ROTR(a, n) \ macro 382 #define ROTR(a, n) \ macro 389 #define ROTR(a, n) \ macro 408 #define ROTR(a, n) _rotr64((a), n) macro 433 #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/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/dhcpcd-6.8.2/crypt/ |
D | sha256.c | 78 #define ROTR(x, n) ((x >> n) | (x << (32 - n))) macro
|
/external/vboot_reference/firmware/lib/cryptolib/ |
D | sha512.c | 44 #define ROTR(x, n) ((x >> n) | (x << ((sizeof(x) << 3) - n))) macro
|
D | sha256.c | 44 #define ROTR(x, n) ((x >> n) | (x << ((sizeof(x) << 3) - n))) macro
|
/external/mmc-utils/3rdparty/hmac_sha/ |
D | sha2.c | 47 #define ROTR(x, n) ((x >> n) | (x << ((sizeof(x) << 3) - n))) macro
|
/external/pdfium/core/src/fdrm/crypto/ |
D | fx_crypt_sha.cpp | 207 #define ROTR(x, n) (SHR(x, n) | (x << (32 - n))) in sha256_process() macro
|
/external/llvm/include/llvm/CodeGen/ |
D | ISDOpcodes.h | 336 SHL, SRA, SRL, ROTL, ROTR, enumerator
|