Searched refs:ckh_t (Results 1 - 5 of 5) sorted by relevance

/external/jemalloc/include/jemalloc/internal/
H A Dckh.h4 typedef struct ckh_s ckh_t; typedef in typeref:struct:ckh_s
69 bool ckh_new(ckh_t *ckh, size_t minitems, ckh_hash_t *hash,
71 void ckh_delete(ckh_t *ckh);
72 size_t ckh_count(ckh_t *ckh);
73 bool ckh_iter(ckh_t *ckh, size_t *tabind, void **key, void **data);
74 bool ckh_insert(ckh_t *ckh, const void *key, const void *data);
75 bool ckh_remove(ckh_t *ckh, const void *searchkey, void **key,
77 bool ckh_search(ckh_t *ckh, const void *seachkey, void **key, void **data);
H A Dprof.h169 ckh_t bt2cnt;
/external/jemalloc/src/
H A Dckh.c43 static bool ckh_grow(ckh_t *ckh);
44 static void ckh_shrink(ckh_t *ckh);
53 ckh_bucket_search(ckh_t *ckh, size_t bucket, const void *key)
71 ckh_isearch(ckh_t *ckh, const void *key)
92 ckh_try_bucket_insert(ckh_t *ckh, size_t bucket, const void *key,
124 ckh_evict_reloc_insert(ckh_t *ckh, size_t argbucket, void const **argkey,
194 ckh_try_insert(ckh_t *ckh, void const**argkey, void const**argdata)
223 ckh_rebuild(ckh_t *ckh, ckhc_t *aTab)
246 ckh_grow(ckh_t *ckh)
301 ckh_shrink(ckh_t *ck
[all...]
H A Dprof.c50 static ckh_t bt2ctx;
/external/jemalloc/test/unit/
H A Dckh.c5 ckh_t ckh;
19 ckh_t ckh;
105 ckh_t ckh;

Completed in 217 milliseconds