Searched refs:rotrFixed (Results 1 – 2 of 2) sorted by relevance
/external/lzma/C/ |
D | Sha256.c | 25 #define S0(x) (rotrFixed(x, 2) ^ rotrFixed(x,13) ^ rotrFixed(x, 22)) 26 #define S1(x) (rotrFixed(x, 6) ^ rotrFixed(x,11) ^ rotrFixed(x, 25)) 27 #define s0(x) (rotrFixed(x, 7) ^ rotrFixed(x,18) ^ (x >> 3)) 28 #define s1(x) (rotrFixed(x,17) ^ rotrFixed(x,19) ^ (x >> 10))
|
D | RotateDefs.h | 11 #define rotrFixed(x, n) _rotr((x), (n)) macro 16 #define rotrFixed(x, n) (((x) >> (n)) | ((x) << (32 - (n)))) macro
|