Home
last modified time | relevance | path

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

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