Searched defs:hamt (Results 1 - 1 of 1) sorted by relevance

/external/chromium_org/third_party/yasm/source/patched-yasm/libyasm/
H A Dhamt.c38 #include "hamt.h"
120 /*@out@*/ HAMT *hamt = yasm_xmalloc(sizeof(HAMT)); local
123 STAILQ_INIT(&hamt->entries);
124 hamt->root = yasm_xmalloc(32*sizeof(HAMTNode));
127 hamt->root[i].BitMapKey = 0;
128 hamt->root[i].BaseValue = 0;
131 hamt->error_func = error_func;
133 hamt->HashKey = HashKey_nocase;
134 hamt->ReHashKey = ReHashKey_nocase;
135 hamt
164 HAMT_destroy(HAMT *hamt, void (*deletefunc) ( void *data)) argument
186 HAMT_traverse(HAMT *hamt, void *d, int (*func) ( void *node, void *d)) argument
200 HAMT_first(const HAMT *hamt) argument
219 HAMT_insert(HAMT *hamt, const char *str, void *data, int *replace, void (*deletefunc) ( void *data)) argument
377 HAMT_search(HAMT *hamt, const char *str) argument
[all...]

Completed in 81 milliseconds