Searched refs:__jhash_nwords (Results 1 - 1 of 1) sorted by relevance
/linux-4.1.27/include/linux/ |
H A D | jhash.h | 148 /* __jhash_nwords - hash exactly 3, 2 or 1 word(s) */ __jhash_nwords() 149 static inline u32 __jhash_nwords(u32 a, u32 b, u32 c, u32 initval) __jhash_nwords() function 162 return __jhash_nwords(a, b, c, initval + JHASH_INITVAL + (3 << 2)); jhash_3words() 167 return __jhash_nwords(a, b, 0, initval + JHASH_INITVAL + (2 << 2)); jhash_2words() 172 return __jhash_nwords(a, 0, 0, initval + JHASH_INITVAL + (1 << 2)); jhash_1word()
|
Completed in 404 milliseconds