Searched refs:ROTL (Results 1 – 1 of 1) sorted by relevance
| /sqlite-3.40.0/src/ |
| H A D | random.c | 33 #define ROTL(a,b) (((a) << (b)) | ((a) >> (32 - (b)))) macro 35 a += b, d ^= a, d = ROTL(d,16), \ 36 c += d, b ^= c, b = ROTL(b,12), \ 37 a += b, d ^= a, d = ROTL(d, 8), \ 38 c += d, b ^= c, b = ROTL(b, 7))
|