Searched refs:usize_max (Results 1 – 5 of 5) sorted by relevance
/external/jemalloc/src/ |
D | huge.c | 137 size_t usize_max, bool zero) in huge_ralloc_no_move_similar() argument 146 for (usize = usize_min; usize < usize_max && (usize_next = s2u(usize+1)) in huge_ralloc_no_move_similar() 291 size_t usize_max, bool zero) in huge_ralloc_no_move() argument 296 assert(usize_min > 0 && usize_max <= HUGE_MAXCLASS); in huge_ralloc_no_move() 299 if (oldsize < chunksize || usize_max < chunksize) in huge_ralloc_no_move() 302 if (CHUNK_CEILING(usize_max) > CHUNK_CEILING(oldsize)) { in huge_ralloc_no_move() 304 if (!huge_ralloc_no_move_expand(ptr, oldsize, usize_max, in huge_ralloc_no_move() 310 if (usize_min < usize_max && CHUNK_CEILING(usize_min) > in huge_ralloc_no_move() 323 && CHUNK_CEILING(oldsize) <= CHUNK_CEILING(usize_max)) { in huge_ralloc_no_move() 324 huge_ralloc_no_move_similar(ptr, oldsize, usize_min, usize_max, in huge_ralloc_no_move() [all …]
|
D | arena.c | 2882 size_t oldsize, size_t usize_min, size_t usize_max, bool zero) in arena_ralloc_large_grow() argument 2906 usize = usize_max; in arena_ralloc_large_grow() 3006 size_t usize_max, bool zero) in arena_ralloc_large() argument 3011 if (oldsize == usize_max) { in arena_ralloc_large() 3019 if (oldsize < usize_max) { in arena_ralloc_large() 3021 usize_min, usize_max, zero); in arena_ralloc_large() 3034 assert(oldsize > usize_max); in arena_ralloc_large() 3036 arena_ralloc_junk_large(ptr, oldsize, usize_max); in arena_ralloc_large() 3037 arena_ralloc_large_shrink(arena, chunk, ptr, oldsize, usize_max); in arena_ralloc_large() 3045 size_t usize_min, usize_max; in arena_ralloc_no_move() local [all …]
|
D | jemalloc.c | 2367 size_t usize_max, usize; local 2380 usize_max = s2u(size+extra); 2381 assert(usize_max > 0 && usize_max <= HUGE_MAXCLASS); 2383 usize_max = sa2u(size+extra, alignment); 2384 if (unlikely(usize_max == 0 || usize_max > HUGE_MAXCLASS)) { 2391 usize_max = HUGE_MAXCLASS; 2394 tctx = prof_alloc_prep(tsd, usize_max, prof_active, false);
|
/external/jemalloc/include/jemalloc/internal/ |
D | huge.h | 17 size_t usize_min, size_t usize_max, bool zero);
|
/external/jemalloc/ |
D | ChangeLog | 158 + Fix ixallocx_prof() to pass usize_max and zero to ixallocx_prof_sample()
|