Searched refs:usize_min (Results 1 – 6 of 6) sorted by relevance
/external/jemalloc/src/ |
D | huge.c | 153 size_t usize_min, size_t usize_max, bool zero) in huge_ralloc_no_move_similar() argument 162 for (usize = usize_min; usize < usize_max && (usize_next = s2u(usize+1)) in huge_ralloc_no_move_similar() 317 huge_ralloc_no_move(tsdn_t *tsdn, void *ptr, size_t oldsize, size_t usize_min, in huge_ralloc_no_move() argument 323 assert(usize_min > 0 && usize_max <= HUGE_MAXCLASS); in huge_ralloc_no_move() 337 if (usize_min < usize_max && CHUNK_CEILING(usize_min) > in huge_ralloc_no_move() 339 ptr, oldsize, usize_min, zero)) { in huge_ralloc_no_move() 349 if (CHUNK_CEILING(oldsize) >= CHUNK_CEILING(usize_min) in huge_ralloc_no_move() 351 huge_ralloc_no_move_similar(tsdn, ptr, oldsize, usize_min, in huge_ralloc_no_move()
|
D | arena.c | 3093 void *ptr, size_t oldsize, size_t usize_min, size_t usize_max, bool zero) in arena_ralloc_large_grow() argument 3108 if (oldsize + followsize >= usize_min) { in arena_ralloc_large_grow() 3120 assert(usize >= usize_min); in arena_ralloc_large_grow() 3216 arena_ralloc_large(tsdn_t *tsdn, void *ptr, size_t oldsize, size_t usize_min, in arena_ralloc_large() argument 3232 oldsize, usize_min, usize_max, zero); in arena_ralloc_large() 3257 size_t usize_min, usize_max; in arena_ralloc_no_move() local 3265 usize_min = s2u(size); in arena_ralloc_no_move() 3267 if (likely(oldsize <= large_maxclass && usize_min <= large_maxclass)) { in arena_ralloc_no_move() 3284 if (arena_ralloc_large(tsdn, ptr, oldsize, usize_min, in arena_ralloc_no_move() 3293 return (huge_ralloc_no_move(tsdn, ptr, oldsize, usize_min, in arena_ralloc_no_move()
|
/external/jemalloc_new/src/ |
D | large.c | 227 large_ralloc_no_move(tsdn_t *tsdn, extent_t *extent, size_t usize_min, in large_ralloc_no_move() argument 232 assert(usize_min > 0 && usize_max <= LARGE_MAXCLASS); in large_ralloc_no_move() 244 if (usize_min < usize_max && usize_min > oldusize && in large_ralloc_no_move() 245 large_ralloc_no_move_expand(tsdn, extent, usize_min, in large_ralloc_no_move() 256 if (oldusize >= usize_min && oldusize <= usize_max) { in large_ralloc_no_move()
|
D | arena.c | 1596 size_t usize_min = sz_s2u(size); in arena_ralloc_no_move() local 1598 if (likely(oldsize <= SMALL_MAXCLASS && usize_min <= SMALL_MAXCLASS)) { in arena_ralloc_no_move() 1614 return large_ralloc_no_move(tsdn, extent, usize_min, usize_max, in arena_ralloc_no_move()
|
/external/jemalloc/include/jemalloc/internal/ |
D | huge.h | 16 size_t usize_min, size_t usize_max, bool zero);
|
/external/jemalloc_new/include/jemalloc/internal/ |
D | large_externs.h | 7 bool large_ralloc_no_move(tsdn_t *tsdn, extent_t *extent, size_t usize_min,
|