Searched refs:ROTL32 (Results 1 – 7 of 7) sorted by relevance
/third_party/skia/third_party/externals/freetype/src/sfnt/ |
D | sfdriver.c | 279 #define ROTL32( x, r ) ( x << r ) | ( x >> ( 32 - r ) ) macro 328 k1 = ROTL32( k1, 15 ); in murmur_hash_3_128() 332 h1 = ROTL32( h1, 19 ); in murmur_hash_3_128() 337 k2 = ROTL32( k2, 16 ); in murmur_hash_3_128() 341 h2 = ROTL32( h2, 17 ); in murmur_hash_3_128() 346 k3 = ROTL32( k3, 17 ); in murmur_hash_3_128() 350 h3 = ROTL32( h3, 15 ); in murmur_hash_3_128() 355 k4 = ROTL32( k4, 18 ); in murmur_hash_3_128() 359 h4 = ROTL32( h4, 13 ); in murmur_hash_3_128() 384 k4 = ROTL32( k4, 18 ); in murmur_hash_3_128() [all …]
|
/third_party/popt/src/ |
D | lookup3.c | 53 #ifndef ROTL32 54 # define ROTL32(x, s) (((x) << (s)) | ((x) >> (32 - (s)))) macro 106 a -= c; a ^= ROTL32(c, 4); c += b; \ 107 b -= a; b ^= ROTL32(a, 6); a += c; \ 108 c -= b; c ^= ROTL32(b, 8); b += a; \ 109 a -= c; a ^= ROTL32(c,16); c += b; \ 110 b -= a; b ^= ROTL32(a,19); a += c; \ 111 c -= b; c ^= ROTL32(b, 4); b += a; \ 141 c ^= b; c -= ROTL32(b,14); \ 142 a ^= c; a -= ROTL32(c,11); \ [all …]
|
/third_party/skia/third_party/externals/angle2/src/common/third_party/smhasher/src/ |
D | PMurHash.cpp | 136 # define ROTL32(x, r) _rotl(x, r) macro 139 # define ROTL32(x, r) (((uint32_t)x << r) | ((uint32_t)x >> (32 - r))) macro 154 k1 = ROTL32(k1, 15); \ 158 h1 = ROTL32(h1, 13); \ 288 k1 = ROTL32(k1, 15); in PMurHash32_Result()
|
/third_party/mbedtls/library/ |
D | chacha20.c | 39 #define ROTL32(value, amount) \ macro 70 state[d] = ROTL32(state[d], 16); in chacha20_quarter_round() 75 state[b] = ROTL32(state[b], 12); in chacha20_quarter_round() 80 state[d] = ROTL32(state[d], 8); in chacha20_quarter_round() 85 state[b] = ROTL32(state[b], 7); in chacha20_quarter_round()
|
/third_party/FreeBSD/crypto/openssh/openbsd-compat/ |
D | chacha_private.h | 27 #define ROTL32(v, n) \ macro 44 #define ROTATE(v,c) (ROTL32(v,c))
|
/third_party/libwebsockets/plugins/ssh-base/crypto/ |
D | chacha.c | 34 #define ROTL32(v, n) \ macro 51 #define ROTATE(v,c) (ROTL32(v,c))
|
/third_party/skia/third_party/externals/freetype/docs/oldlogs/ |
D | ChangeLog.28 | 2092 * src/sfnt/sfdriver.c (ROTL32): New macro.
|