HomeSort by relevance Sort by last modified time
    Searched full:tcache_success (Results 1 - 2 of 2) sorted by null

  /external/jemalloc/include/jemalloc/internal/
tcache.h 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)
273 *tcache_success = false;
277 * tcache_success (instead of ret) should be checked upon the return of
283 *tcache_success = true;
299 bool tcache_success; local
304 ret = tcache_alloc_easy(tbin, &tcache_success);
305 assert(tcache_success == (ret != NULL));
306 if (unlikely(!tcache_success)) {
    [all...]
  /external/jemalloc/src/
tcache.c 74 tcache_bin_t *tbin, szind_t binind, bool *tcache_success)
82 ret = tcache_alloc_easy(tbin, tcache_success);

Completed in 397 milliseconds