Home
last modified time | relevance | path

Searched refs:to_hugify (Results 1 – 3 of 3) sorted by relevance

/src/contrib/jemalloc/src/
H A Dhpa.c297 hpdata_t *to_hugify = psset_pick_hugify(&shard->psset); in hpa_hugify_blocked_by_ndirty() local
298 if (to_hugify == NULL) { in hpa_hugify_blocked_by_ndirty()
302 + hpdata_nretained_get(to_hugify) > hpa_ndirty_max(tsdn, shard); in hpa_hugify_blocked_by_ndirty()
375 hpdata_t *to_hugify = psset_pick_hugify(&shard->psset); in hpa_shard_has_deferred_work() local
376 return to_hugify != NULL || hpa_should_purge(tsdn, shard); in hpa_shard_has_deferred_work()
473 hpdata_t *to_hugify = psset_pick_hugify(&shard->psset); in hpa_try_hugify() local
474 if (to_hugify == NULL) { in hpa_try_hugify()
477 assert(hpdata_hugify_allowed_get(to_hugify)); in hpa_try_hugify()
478 assert(!hpdata_changing_state_get(to_hugify)); in hpa_try_hugify()
481 nstime_t time_hugify_allowed = hpdata_time_hugify_allowed(to_hugify); in hpa_try_hugify()
[all …]
H A Dpsset.c21 hpdata_hugify_list_init(&psset->to_hugify); in psset_init()
307 hpdata_hugify_list_append(&psset->to_hugify, ps); in psset_update_end()
311 hpdata_hugify_list_remove(&psset->to_hugify, ps); in psset_update_end()
353 return hpdata_hugify_list_first(&psset->to_hugify); in psset_pick_hugify()
368 hpdata_hugify_list_append(&psset->to_hugify, ps); in psset_insert()
383 hpdata_hugify_list_remove(&psset->to_hugify, ps); in psset_remove()
/src/contrib/jemalloc/include/jemalloc/internal/
H A Dpsset.h93 hpdata_hugify_list_t to_hugify; member