Home
last modified time | relevance | path

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

/third_party/ulib/jemalloc/include/jemalloc/internal/
A Dhash_inlines.h171 k2 *= c2; k2 = hash_rotl_32(k2, 16); k2 *= c3; h2 ^= k2; in hash_x86_128()
192 uint32_t k2 = 0; in hash_x86_128() local
208 case 8: k2 ^= tail[ 7] << 24; in hash_x86_128()
209 case 7: k2 ^= tail[ 6] << 16; in hash_x86_128()
210 case 6: k2 ^= tail[ 5] << 8; in hash_x86_128()
211 case 5: k2 ^= tail[ 4] << 0; in hash_x86_128()
212 k2 *= c2; k2 = hash_rotl_32(k2, 16); k2 *= c3; h2 ^= k2; in hash_x86_128()
267 k2 *= c2; k2 = hash_rotl_64(k2, 33); k2 *= c1; h2 ^= k2; in hash_x64_128()
278 uint64_t k2 = 0; in hash_x64_128() local
286 case 10: k2 ^= ((uint64_t)(tail[ 9])) << 8; in hash_x64_128()
[all …]
A Dckh_externs.h16 bool ckh_string_keycomp(const void *k1, const void *k2);
18 bool ckh_pointer_keycomp(const void *k1, const void *k2);
/third_party/ulib/jemalloc/src/
A Dckh.c544 ckh_string_keycomp(const void *k1, const void *k2) in ckh_string_keycomp() argument
547 assert(k2 != NULL); in ckh_string_keycomp()
549 return (strcmp((char *)k1, (char *)k2) ? false : true); in ckh_string_keycomp()
566 ckh_pointer_keycomp(const void *k1, const void *k2) in ckh_pointer_keycomp() argument
568 return ((k1 == k2) ? true : false); in ckh_pointer_keycomp()
A Dprof.c1838 prof_bt_keycomp(const void *k1, const void *k2) in prof_bt_keycomp() argument
1841 const prof_bt_t *bt2 = (prof_bt_t *)k2; in prof_bt_keycomp()

Completed in 11 milliseconds