Searched refs:ROR64 (Results 1 – 4 of 4) sorted by relevance
/external/epid-sdk/ext/ipp/sources/ippcp/ |
D | pcphashsha512px.c | 79 #define SUM0(x) (ROR64((x),28) ^ ROR64((x),34) ^ ROR64((x),39)) 80 #define SUM1(x) (ROR64((x),14) ^ ROR64((x),18) ^ ROR64((x),41)) 82 #define SIG0(x) (ROR64((x), 1) ^ ROR64((x), 8) ^ LSR64((x), 7)) 83 #define SIG1(x) (ROR64((x),19) ^ ROR64((x),61) ^ LSR64((x), 6))
|
D | owncp.h | 641 #define ROR64(x, nBits) (LSR64((x),(nBits)) | LSL64((x),64-(nBits))) macro 642 #define ROL64(x, nBits) ROR64((x),(64-(nBits)))
|
/external/python/cpython3/Modules/ |
D | sha512module.c | 121 #define ROR64(x, y) \ macro 126 #define S(x, n) ROR64((x),(n))
|
/external/python/cpython2/Modules/ |
D | sha512module.c | 123 #define ROR64(x, y) \ macro 128 #define S(x, n) ROR64((x),(n))
|