Home
last modified time | relevance | path

Searched refs:ROTL32 (Results 1 – 7 of 7) sorted by relevance

/third_party/skia/third_party/externals/freetype/src/sfnt/
Dsfdriver.c279 #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/
Dlookup3.c53 #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/
DPMurHash.cpp136 # 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/
Dchacha20.c39 #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/
Dchacha_private.h27 #define ROTL32(v, n) \ macro
44 #define ROTATE(v,c) (ROTL32(v,c))
/third_party/libwebsockets/plugins/ssh-base/crypto/
Dchacha.c34 #define ROTL32(v, n) \ macro
51 #define ROTATE(v,c) (ROTL32(v,c))
/third_party/skia/third_party/externals/freetype/docs/oldlogs/
DChangeLog.282092 * src/sfnt/sfdriver.c (ROTL32): New macro.