Home
last modified time | relevance | path

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

/freebsd/contrib/jemalloc/include/jemalloc/internal/
H A Dtcache_inlines.h46 bool tcache_success; in tcache_alloc_small() local
51 ret = cache_bin_alloc_easy(bin, &tcache_success); in tcache_alloc_small()
52 assert(tcache_success == (ret != NULL)); in tcache_alloc_small()
53 if (unlikely(!tcache_success)) { in tcache_alloc_small()
108 bool tcache_success; in tcache_alloc_large() local
112 ret = cache_bin_alloc_easy(bin, &tcache_success); in tcache_alloc_large()
113 assert(tcache_success == (ret != NULL)); in tcache_alloc_large()
114 if (unlikely(!tcache_success)) { in tcache_alloc_large()
H A Dtcache_externs.h31 cache_bin_t *tbin, szind_t binind, bool *tcache_success);
/freebsd/contrib/jemalloc/src/
H A Dtcache.c90 cache_bin_t *tbin, szind_t binind, bool *tcache_success) { in tcache_alloc_small_hard() argument
99 ret = cache_bin_alloc_easy(tbin, tcache_success); in tcache_alloc_small_hard()
H A Djemalloc.c2374 bool tcache_success; in JEMALLOC_ATTR() local
2375 void* ret = cache_bin_alloc_easy(bin, &tcache_success); in JEMALLOC_ATTR()
2377 if (tcache_success) { in JEMALLOC_ATTR()