Searched refs:dictHashKey (Results 1 – 4 of 4) sorted by relevance
| /redis-3.2.3/deps/hiredis/ |
| H A D | dict.c | 118 h = dictHashKey(ht, he->key) & n.sizemask; in dictExpand() 188 h = dictHashKey(ht, key) & ht->sizemask; in dictDelete() 248 h = dictHashKey(ht, key) & ht->sizemask; in dictFind() 328 h = dictHashKey(ht, key) & ht->sizemask; in _dictKeyIndex()
|
| H A D | dict.h | 106 #define dictHashKey(ht, key) (ht)->type->hashFunction(key) macro
|
| /redis-3.2.3/src/ |
| H A D | dict.c | 266 h = dictHashKey(d, de->key) & d->ht[1].sizemask; in dictRehash() 420 h = dictHashKey(d, key); in dictGenericDelete() 499 h = dictHashKey(d, key); in dictFind() 975 h = dictHashKey(d, key); in _dictKeyIndex()
|
| H A D | dict.h | 139 #define dictHashKey(d, key) (d)->type->hashFunction(key) macro
|