Home
last modified time | relevance | path

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

/src/contrib/jemalloc/src/
H A Dtsd.c87 assert(tsd_state_get(tsd) <= tsd_state_nominal_max); in tsd_add_nominal()
97 assert(tsd_state_get(tsd) <= tsd_state_nominal_max); in tsd_remove_nominal()
160 return tsd_state_get(tsd); in tsd_state_compute()
259 assert(tsd_state_get(tsd) == tsd_state_reincarnated || in tsd_data_init_nocleanup()
260 tsd_state_get(tsd) == tsd_state_minimal_initialized); in tsd_data_init_nocleanup()
281 if (tsd_state_get(tsd) == tsd_state_nominal_slow) { in tsd_fetch_slow()
288 } else if (tsd_state_get(tsd) == tsd_state_nominal_recompute) { in tsd_fetch_slow()
290 } else if (tsd_state_get(tsd) == tsd_state_uninitialized) { in tsd_fetch_slow()
304 } else if (tsd_state_get(tsd) == tsd_state_minimal_initialized) { in tsd_fetch_slow()
315 } else if (tsd_state_get(tsd) == tsd_state_purgatory) { in tsd_fetch_slow()
[all …]
H A Dthread_event.c203 if (tsd_state_get(tsd) != tsd_state_nominal) { in te_recompute_fast_threshold()
216 if (tsd_state_get(tsd) != tsd_state_nominal) { in te_recompute_fast_threshold()
/src/contrib/jemalloc/include/jemalloc/internal/
H A Dtsd.h263 tsd_state_get(tsd_t *tsd) { in tsd_state_get() function
337 uint8_t state = tsd_state_get(tsd); \
383 assert(tsd_state_get(tsd) != tsd_state_reincarnated && \
384 tsd_state_get(tsd) != tsd_state_minimal_initialized); \
405 bool fast = (tsd_state_get(tsd) == tsd_state_nominal); in tsd_fast()
422 if (unlikely(tsd_state_get(tsd) != tsd_state_nominal)) { in tsd_fetch_impl()
454 bool nominal = tsd_state_get(tsd) <= tsd_state_nominal_max; in tsd_nominal()
489 return tsd_state_get(tsd) == tsd_state_reincarnated || in tsd_state_nocleanup()
490 tsd_state_get(tsd) == tsd_state_minimal_initialized; in tsd_state_nocleanup()
506 assert(tsd_state_get(tsd) == tsd_state_nominal_slow); in tsd_pre_reentrancy_raw()
/src/contrib/jemalloc/
H A DFREEBSD-diffs159 tsd_state_get(tsd_t *tsd) {