Home
last modified time | relevance | path

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

/rockchip-linux_mpp/osal/inc/
H A Dmpp_hash.h22 #define hash_long(val, bits) hash_32(val, bits)
258 (sizeof(val) <= 4 ? hash_32(val, bits) : hash_long(val, bits))
301 static inline RK_U32 hash_32(RK_U32 val, unsigned int bits) in hash_32() function
322 return hash_32((RK_U32)val ^ ((val >> 32) * GOLDEN_RATIO_32), bits); in hash_64()