Searched refs:ROTL32 (Results 1 - 2 of 2) sorted by relevance
| /xsrc/external/mit/xf86-video-qxl/dist/src/ |
| H A D | murmurhash3.c | 23 #define ROTL32(x,y) _rotl(x,y) macro 44 #define ROTL32(x,y) rotl32(x,y) macro 121 k1 = ROTL32(k1,15); 125 h1 = ROTL32(h1,13); 141 k1 *= c1; k1 = ROTL32(k1,15); k1 *= c2; h1 ^= k1; 194 k1 *= c1; k1 = ROTL32(k1,15); k1 *= c2; h1 ^= k1; 196 h1 = ROTL32(h1,19); h1 += h2; h1 = h1*5+0x561ccd1b; 198 k2 *= c2; k2 = ROTL32(k2,16); k2 *= c3; h2 ^= k2; 200 h2 = ROTL32(h2,17); h2 += h3; h2 = h2*5+0x0bcaa747; 202 k3 *= c3; k3 = ROTL32(k [all...] |
| /xsrc/external/mit/freetype/dist/src/sfnt/ |
| H A D | sfdriver.c | 279 #define ROTL32( x, r ) ( x << r ) | ( x >> ( 32 - r ) ) macro 328 k1 = ROTL32( k1, 15 ); 332 h1 = ROTL32( h1, 19 ); 337 k2 = ROTL32( k2, 16 ); 341 h2 = ROTL32( h2, 17 ); 346 k3 = ROTL32( k3, 17 ); 350 h3 = ROTL32( h3, 15 ); 355 k4 = ROTL32( k4, 18 ); 359 h4 = ROTL32( h4, 13 ); 384 k4 = ROTL32( k [all...] |
Completed in 3 milliseconds