HomeSort by: relevance | last modified time | path
    Searched defs:bumped_usize (Results 1 - 4 of 4) sorted by relevancy

  /src/external/bsd/jemalloc.old/dist/src/
arena.c 1277 size_t bumped_usize = arena_prof_demote(tsdn, edata, ptr); local
1283 assert(bumped_usize == SC_LARGE_MINCLASS);
1284 safety_check_verify_redzone(ptr, usize, bumped_usize);
1286 if (bumped_usize <= tcache_maxclass && tcache != NULL) {
1288 sz_size2index(bumped_usize), slow_path);
jemalloc.c 2439 size_t bumped_usize = usize; local
2448 bumped_usize = sz_s2u(SC_LARGE_MINCLASS);
2449 ret = imalloc_no_sample(sopts, dopts, tsd, bumped_usize,
2450 bumped_usize, ind_large);
  /src/external/bsd/jemalloc/dist/src/
arena.c 591 arena_prof_promote(tsdn_t *tsdn, void *ptr, size_t usize, size_t bumped_usize) {
594 assert(isalloc(tsdn, ptr) == bumped_usize);
598 safety_check_set_redzone(ptr, usize, bumped_usize);
615 size_t bumped_usize = sz_sa2u(usize, PROF_SAMPLE_ALIGNMENT); local
616 assert(bumped_usize <= SC_LARGE_MINCLASS
617 && PAGE_CEILING(bumped_usize) == bumped_usize);
618 assert(edata_size_get(edata) - bumped_usize <= sz_large_pad);
619 szind_t szind = sz_size2index(bumped_usize);
624 assert(isalloc(tsdn, ptr) == bumped_usize);
636 size_t bumped_usize = arena_prof_demote(tsdn, edata, ptr); local
    [all...]
jemalloc.c 1507 size_t bumped_usize = sz_sa2u(usize, dopts->alignment); local
1508 szind_t bumped_ind = sz_size2index(bumped_usize);
1510 ret = imalloc_no_sample(sopts, dopts, tsd, bumped_usize,
1511 bumped_usize, bumped_ind, /* slab */ false);
1515 arena_prof_promote(tsd_tsdn(tsd), ret, usize, bumped_usize); local
2458 size_t bumped_usize = sz_sa2u(usize, alignment); local
2460 bumped_usize, alignment, zero, /* slab */ false, tcache,
2465 arena_prof_promote(tsdn, p, usize, bumped_usize);

Completed in 20 milliseconds