Searched refs:hash (Results 1 – 2 of 2) sorted by relevance
11 __u32 hash = initval; in SuperFastHash() local23 hash += get16bits (data); in SuperFastHash()24 tmp = (get16bits (data+2) << 11) ^ hash; in SuperFastHash()25 hash = (hash << 16) ^ tmp; in SuperFastHash()27 hash += hash >> 11; in SuperFastHash()32 case 3: hash += get16bits (data); in SuperFastHash()33 hash ^= hash << 16; in SuperFastHash()34 hash ^= ((signed char)data[sizeof (__u16)]) << 18; in SuperFastHash()35 hash += hash >> 11; in SuperFastHash()37 case 2: hash += get16bits (data); in SuperFastHash()[all …]
47 printk("len %d hash %d protocol %d\n", skb->len, skb->hash, in do_test_ctx()