Home
last modified time | relevance | path

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

/xnu-10002.1.13/bsd/net/
H A Dflowhash.c62 #define ROTL32(x, r) (((x) << (r)) | ((x) >> (32 - (r)))) macro
198 k1 = ROTL32(k1, 15); in net_flowhash_mh3_x86_32()
202 h1 = ROTL32(h1, 13); in net_flowhash_mh3_x86_32()
220 k1 = ROTL32(k1, 15); in net_flowhash_mh3_x86_32()
394 a -= c; a ^= ROTL32(c, 4); c += b; \
395 b -= a; b ^= ROTL32(a, 6); a += c; \
396 c -= b; c ^= ROTL32(b, 8); b += a; \
397 a -= c; a ^= ROTL32(c, 16); c += b; \
398 b -= a; b ^= ROTL32(a, 19); a += c; \
399 c -= b; c ^= ROTL32(b, 4); b += a; \
[all …]