Searched refs:ROR32 (Results 1 – 2 of 2) sorted by relevance
/external/epid-sdk/ext/ipp/sources/ippcp/ |
D | pcphashsha256px.c | 78 #define SUM0(x) (ROR32((x), 2) ^ ROR32((x),13) ^ ROR32((x),22)) 79 #define SUM1(x) (ROR32((x), 6) ^ ROR32((x),11) ^ ROR32((x),25)) 81 #define SIG0(x) (ROR32((x), 7) ^ ROR32((x),18) ^ LSR32((x), 3)) 82 #define SIG1(x) (ROR32((x),17) ^ ROR32((x),19) ^ LSR32((x),10))
|
D | owncp.h | 629 # define ROR32(x, nBits) _lrotr((x),(nBits)) macro 632 # define ROR32(x, nBits) (LSR32((x),(nBits)) | LSL32((x),32-(nBits))) macro 633 # define ROL32(x, nBits) ROR32((x),(32-(nBits))) 654 # define ENDIANNESS(x) ((ROR32((x), 24) & 0x00ff00ff) | (ROR32((x), 8) & 0xff00ff00))
|