Searched refs:flip_4_bits (Results 1 – 1 of 1) sorted by relevance
183 static inline u32 flip_4_bits(u32 x) in flip_4_bits() function213 addrhswapped = flip_4_bits(addrh & 0xf) in hash_function()214 + ((flip_4_bits((addrh >> 4) & 0xf)) << 4) in hash_function()215 + ((flip_4_bits((addrh >> 8) & 0xf)) << 8) in hash_function()216 + ((flip_4_bits((addrh >> 12) & 0xf)) << 12); in hash_function()218 addrlswapped = flip_4_bits(addrl & 0xf) in hash_function()219 + ((flip_4_bits((addrl >> 4) & 0xf)) << 4) in hash_function()220 + ((flip_4_bits((addrl >> 8) & 0xf)) << 8) in hash_function()221 + ((flip_4_bits((addrl >> 12) & 0xf)) << 12) in hash_function()222 + ((flip_4_bits((addrl >> 16) & 0xf)) << 16) in hash_function()[all …]