Lines Matching refs:tcache_success
148 tcache_bin_t *tbin, szind_t binind, bool *tcache_success);
177 void *tcache_alloc_easy(tcache_bin_t *tbin, bool *tcache_success);
267 tcache_alloc_easy(tcache_bin_t *tbin, bool *tcache_success) in tcache_alloc_easy() argument
273 *tcache_success = false; in tcache_alloc_easy()
283 *tcache_success = true; in tcache_alloc_easy()
299 bool tcache_success; in tcache_alloc_small() local
304 ret = tcache_alloc_easy(tbin, &tcache_success); in tcache_alloc_small()
305 assert(tcache_success == (ret != NULL)); in tcache_alloc_small()
306 if (unlikely(!tcache_success)) { in tcache_alloc_small()
358 bool tcache_success; in tcache_alloc_large() local
362 ret = tcache_alloc_easy(tbin, &tcache_success); in tcache_alloc_large()
363 assert(tcache_success == (ret != NULL)); in tcache_alloc_large()
364 if (unlikely(!tcache_success)) { in tcache_alloc_large()