Searched refs:rotr32 (Results 1 – 1 of 1) sorted by relevance
| /OK3568_Linux_fs/u-boot/tools/rockchip/ |
| H A D | sha2.c | 183 #define rotr32(x, n) (((x) >> n) | ((x) << (32 - n))) macro 187 ((rotr32((x), 24) & 0x00ff00ff) | (rotr32((x), 8) & 0xff00ff00)) 216 #define s256_0(x) (rotr32((x), 2) ^ rotr32((x), 13) ^ rotr32((x), 22)) 217 #define s256_1(x) (rotr32((x), 6) ^ rotr32((x), 11) ^ rotr32((x), 25)) 218 #define g256_0(x) (rotr32((x), 7) ^ rotr32((x), 18) ^ ((x) >> 3)) 219 #define g256_1(x) (rotr32((x), 17) ^ rotr32((x), 19) ^ ((x) >> 10))
|