Home
last modified time | relevance | path

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

/f-stack/app/redis-5.0.5/deps/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.h33 cache_bin_t *tbin, szind_t binind, bool *tcache_success);
/f-stack/app/redis-5.0.5/deps/jemalloc/src/
H A Dtcache.c89 cache_bin_t *tbin, szind_t binind, bool *tcache_success) { in tcache_alloc_small_hard() argument
98 ret = cache_bin_alloc_easy(tbin, tcache_success); in tcache_alloc_small_hard()