Searched defs:ROTR (Results 1 – 14 of 14) sorted by relevance
/external/boringssl/src/crypto/fipsmodule/sha/ |
D | sha512.c | 320 #define ROTR(a, n) \ macro 327 #define ROTR(a, n) \ macro 334 #define ROTR(a, n) \ macro 343 #define ROTR(a, n) _rotr64((a), n) macro 347 #define ROTR(x, s) (((x) >> s) | (x) << (64 - s)) macro
|
/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/avb/libavb/ |
D | avb_sha256.c | 41 #define ROTR(x, n) ((x >> n) | (x << ((sizeof(x) << 3) - n))) macro
|
D | avb_sha512.c | 41 #define ROTR(x, n) ((x >> n) | (x << ((sizeof(x) << 3) - n))) macro
|
/external/u-boot/lib/libavb/ |
D | avb_sha512.c | 14 #define ROTR(x, n) ((x >> n) | (x << ((sizeof(x) << 3) - n))) macro
|
D | avb_sha256.c | 14 #define ROTR(x, n) ((x >> n) | (x << ((sizeof(x) << 3) - 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/u-boot/lib/ |
D | sha256.c | 82 #define ROTR(x,n) (SHR(x,n) | (x << (32 - n))) in sha256_process() macro
|
/external/pdfium/core/fdrm/ |
D | fx_crypt_sha.cpp | 63 #define ROTR(x, n) (SHR(x, n) | (x << (32 - n))) macro
|
/external/swiftshader/third_party/llvm-7.0/llvm/include/llvm/CodeGen/ |
D | ISDOpcodes.h | 382 SHL, SRA, SRL, ROTL, ROTR, enumerator
|
/external/llvm/include/llvm/CodeGen/ |
D | ISDOpcodes.h | 339 SHL, SRA, SRL, ROTL, ROTR, enumerator
|