Home
last modified time | relevance | path

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

/redis-3.2.3/deps/hiredis/
H A Ddict.h114 static unsigned int dictGenHashFunction(const unsigned char *buf, int len);
H A Ddict.c53 static unsigned int dictGenHashFunction(const unsigned char *buf, int len) { in dictGenHashFunction() function
H A Dasync.c65 return dictGenHashFunction((const unsigned char *)key, in callbackHash()
/redis-3.2.3/utils/hashtable/
H A Drehashing.c11 key = dictGenHashFunction(&key,sizeof(key)); in dictKeyHash()
/redis-3.2.3/src/
H A Ddict.h169 unsigned int dictGenHashFunction(const void *key, int len);
H A Dlatency.c45 return dictGenHashFunction(key, strlen(key)); in dictStringHash()
H A Dserver.c483 return dictGenHashFunction(o->ptr, sdslen((sds)o->ptr)); in dictObjHash()
487 return dictGenHashFunction((unsigned char*)key, sdslen((char*)key)); in dictSdsHash()
516 return dictGenHashFunction(o->ptr, sdslen((sds)o->ptr)); in dictEncObjHash()
523 return dictGenHashFunction((unsigned char*)buf, len); in dictEncObjHash()
528 hash = dictGenHashFunction(o->ptr, sdslen((sds)o->ptr)); in dictEncObjHash()
H A Ddict.c103 unsigned int dictGenHashFunction(const void *key, int len) { in dictGenHashFunction() function