Home
last modified time | relevance | path

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

/external/qemu/
Dqdict.c116 hash = tdb_hash(key) % QDICT_HASH_SIZE; in qdict_put_obj()
140 entry = qdict_find(qdict, key, tdb_hash(key) % QDICT_HASH_SIZE); in qdict_get()
151 unsigned int hash = tdb_hash(key) % QDICT_HASH_SIZE; in qdict_haskey()
321 for (i = 0; i < QDICT_HASH_SIZE; i++) { in qdict_iter()
350 entry = qdict_find(qdict, key, tdb_hash(key) % QDICT_HASH_SIZE); in qdict_del()
369 for (i = 0; i < QDICT_HASH_SIZE; i++) { in qdict_destroy_obj()
Dqdict.h9 #define QDICT_HASH_SIZE 512 macro
20 QLIST_HEAD(,QDictEntry) table[QDICT_HASH_SIZE];