Home
last modified time | relevance | path

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

/external/jemalloc_new/include/jemalloc/internal/
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()
110 bool tcache_success; in tcache_alloc_large() local
114 ret = cache_bin_alloc_easy(bin, &tcache_success); in tcache_alloc_large()
115 assert(tcache_success == (ret != NULL)); in tcache_alloc_large()
116 if (unlikely(!tcache_success)) { in tcache_alloc_large()
Dtcache_externs.h33 cache_bin_t *tbin, szind_t binind, bool *tcache_success);
/external/jemalloc_new/src/
Dtcache.c93 cache_bin_t *tbin, szind_t binind, bool *tcache_success) { in tcache_alloc_small_hard() argument
102 ret = cache_bin_alloc_easy(tbin, tcache_success); in tcache_alloc_small_hard()