Searched refs:LARGE_MINCLASS (Results 1 – 8 of 8) sorted by relevance
/external/jemalloc/src/ |
D | jemalloc.c | 1427 szind_t ind_large = size2index(LARGE_MINCLASS); 1428 p = imalloc(tsd, LARGE_MINCLASS, ind_large, slow_path); 1537 assert(sa2u(LARGE_MINCLASS, alignment) == LARGE_MINCLASS); 1538 p = ipalloc(tsd, LARGE_MINCLASS, alignment, false); 1669 szind_t ind_large = size2index(LARGE_MINCLASS); 1670 p = icalloc(tsd, LARGE_MINCLASS, ind_large); 1779 p = iralloc(tsd, old_ptr, old_usize, LARGE_MINCLASS, 0, false); 2085 assert(((alignment == 0) ? s2u(LARGE_MINCLASS) : 2086 sa2u(LARGE_MINCLASS, alignment)) == LARGE_MINCLASS); 2087 p = imallocx_flags(tsd, LARGE_MINCLASS, alignment, zero, tcache, [all …]
|
D | arena.c | 2629 assert(isalloc(ptr, false) == LARGE_MINCLASS); in arena_prof_promoted() 2630 assert(isalloc(ptr, true) == LARGE_MINCLASS); in arena_prof_promoted() 2639 assert(isalloc(ptr, false) == LARGE_MINCLASS); in arena_prof_promoted()
|
/external/jemalloc/include/jemalloc/internal/ |
D | jemalloc_internal.h | 725 if (usize < LARGE_MINCLASS) in sa2u() 738 usize = (size <= LARGE_MINCLASS) ? LARGE_MINCLASS : s2u(size); in sa2u()
|
D | tcache.h | 386 if (config_prof && usize == LARGE_MINCLASS) { in tcache_alloc_large()
|
D | arena.h | 4 #define LARGE_MINCLASS (ZU(1) << LG_LARGE_MINCLASS) macro 945 assert(arena_mapbits_large_size_get(chunk, pageind) == LARGE_MINCLASS + in arena_mapbits_large_binind_set()
|
D | jemalloc_internal.h.in | 725 if (usize < LARGE_MINCLASS) 738 usize = (size <= LARGE_MINCLASS) ? LARGE_MINCLASS : s2u(size);
|
/external/jemalloc/test/unit/ |
D | stats.c | 361 p = mallocx(LARGE_MINCLASS, 0); in TEST_BEGIN()
|
D | mallctl.c | 639 TEST_ARENAS_LRUN_CONSTANT(size_t, size, LARGE_MINCLASS); in TEST_BEGIN()
|