Home
last modified time | relevance | path

Searched refs:usize_max (Results 1 – 5 of 5) sorted by relevance

/external/jemalloc_new/src/
Dlarge.c228 size_t usize_max, bool zero) { in large_ralloc_no_move() argument
232 assert(usize_min > 0 && usize_max <= LARGE_MAXCLASS); in large_ralloc_no_move()
234 assert(oldusize >= LARGE_MINCLASS && usize_max >= LARGE_MINCLASS); in large_ralloc_no_move()
236 if (usize_max > oldusize) { in large_ralloc_no_move()
238 if (!large_ralloc_no_move_expand(tsdn, extent, usize_max, in large_ralloc_no_move()
244 if (usize_min < usize_max && usize_min > oldusize && in large_ralloc_no_move()
256 if (oldusize >= usize_min && oldusize <= usize_max) { in large_ralloc_no_move()
262 if (oldusize > usize_max) { in large_ralloc_no_move()
263 if (!large_ralloc_no_move_shrink(tsdn, extent, usize_max)) { in large_ralloc_no_move()
Djemalloc.c2798 size_t usize_max, usize; local
2811 usize_max = sz_s2u(size+extra);
2812 assert(usize_max > 0 && usize_max <= LARGE_MAXCLASS);
2814 usize_max = sz_sa2u(size+extra, alignment);
2815 if (unlikely(usize_max == 0 || usize_max > LARGE_MAXCLASS)) {
2822 usize_max = LARGE_MAXCLASS;
2825 tctx = prof_alloc_prep(tsd, usize_max, prof_active, false);
Darena.c1597 size_t usize_max = sz_s2u(size + extra); in arena_ralloc_no_move() local
1605 if ((usize_max > SMALL_MAXCLASS || sz_size2index(usize_max) != in arena_ralloc_no_move()
1606 sz_size2index(oldsize)) && (size > oldsize || usize_max < in arena_ralloc_no_move()
1613 } else if (oldsize >= LARGE_MINCLASS && usize_max >= LARGE_MINCLASS) { in arena_ralloc_no_move()
1614 return large_ralloc_no_move(tsdn, extent, usize_min, usize_max, in arena_ralloc_no_move()
/external/jemalloc_new/include/jemalloc/internal/
Dlarge_externs.h8 size_t usize_max, bool zero);
/external/jemalloc_new/
DChangeLog667 + Fix ixallocx_prof() to pass usize_max and zero to ixallocx_prof_sample()