Home
last modified time | relevance | path

Searched refs:hpdata (Results 1 – 4 of 4) sorted by relevance

/src/contrib/jemalloc/include/jemalloc/internal/
H A Dhpdata.h127 hpdata_addr_get(const hpdata_t *hpdata) { in hpdata_addr_get() argument
128 return hpdata->h_address; in hpdata_addr_get()
132 hpdata_addr_set(hpdata_t *hpdata, void *addr) { in hpdata_addr_set() argument
134 hpdata->h_address = addr; in hpdata_addr_set()
138 hpdata_age_get(const hpdata_t *hpdata) { in hpdata_age_get() argument
139 return hpdata->h_age; in hpdata_age_get()
143 hpdata_age_set(hpdata_t *hpdata, uint64_t age) { in hpdata_age_set() argument
144 hpdata->h_age = age; in hpdata_age_set()
148 hpdata_huge_get(const hpdata_t *hpdata) { in hpdata_huge_get() argument
149 return hpdata->h_huge; in hpdata_huge_get()
[all …]
/src/contrib/jemalloc/src/
H A Dhpdata.c21 hpdata_init(hpdata_t *hpdata, void *addr, uint64_t age) { in hpdata_init() argument
22 hpdata_addr_set(hpdata, addr); in hpdata_init()
23 hpdata_age_set(hpdata, age); in hpdata_init()
24 hpdata->h_huge = false; in hpdata_init()
25 hpdata->h_alloc_allowed = true; in hpdata_init()
26 hpdata->h_in_psset_alloc_container = false; in hpdata_init()
27 hpdata->h_purge_allowed = false; in hpdata_init()
28 hpdata->h_hugify_allowed = false; in hpdata_init()
29 hpdata->h_in_psset_hugify_container = false; in hpdata_init()
30 hpdata->h_mid_purge = false; in hpdata_init()
[all …]
/src/lib/libc/stdlib/malloc/jemalloc/
H A DMakefile.inc9 emap.c edata.c edata_cache.c pa.c pa_extra.c pac.c decay.c hpa.c hpa_hooks.c fxp.c hpdata.c pai.c \
/src/contrib/jemalloc/
H A DMakefile.in127 $(srcroot)src/hpdata.c \
228 $(srcroot)test/unit/hpdata.c \