Home
last modified time | relevance | path

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

/freebsd/contrib/jemalloc/src/
H A Dtsd.c90 assert(tsd_state_get(tsd) <= tsd_state_nominal_max); in tsd_add_nominal()
100 assert(tsd_state_get(tsd) <= tsd_state_nominal_max); in tsd_remove_nominal()
160 return tsd_state_get(tsd); in tsd_state_compute()
253 assert(tsd_state_get(tsd) == tsd_state_reincarnated || in tsd_data_init_nocleanup()
254 tsd_state_get(tsd) == tsd_state_minimal_initialized); in tsd_data_init_nocleanup()
273 if (tsd_state_get(tsd) == tsd_state_nominal_slow) { in tsd_fetch_slow()
282 } else if (tsd_state_get(tsd) == tsd_state_uninitialized) { in tsd_fetch_slow()
307 } else if (tsd_state_get(tsd) == tsd_state_purgatory) { in tsd_fetch_slow()
312 assert(tsd_state_get(tsd) == tsd_state_reincarnated); in tsd_fetch_slow()
376 switch (tsd_state_get(tsd)) { in tsd_cleanup()
[all …]
/freebsd/contrib/jemalloc/include/jemalloc/internal/
H A Dtsd.h205 tsd_state_get(tsd_t *tsd) { in tsd_state_get() function
277 uint8_t state = tsd_state_get(tsd); \
317 assert(tsd_state_get(tsd) != tsd_state_reincarnated && \
318 tsd_state_get(tsd) != tsd_state_minimal_initialized); \
337 bool fast = (tsd_state_get(tsd) == tsd_state_nominal); in tsd_fast()
354 if (unlikely(tsd_state_get(tsd) != tsd_state_nominal)) { in tsd_fetch_impl()
386 return (tsd_state_get(tsd) <= tsd_state_nominal_max); in tsd_nominal()
H A Djemalloc_internal_inlines_a.h161 assert(tsd_state_get(tsd) == tsd_state_nominal_slow); in pre_reentrancy()
/freebsd/contrib/jemalloc/
H A DFREEBSD-diffs159 tsd_state_get(tsd_t *tsd) {