Searched refs:usize_max (Results 1 – 5 of 5) sorted by relevance
| /third_party/ulib/jemalloc/src/ |
| A D | large.c | 196 size_t usize_max, bool zero) in large_ralloc_no_move() argument 200 assert(usize_min > 0 && usize_max <= LARGE_MAXCLASS); in large_ralloc_no_move() 202 assert(extent_usize_get(extent) >= LARGE_MINCLASS && usize_max >= in large_ralloc_no_move() 205 if (usize_max > extent_usize_get(extent)) { in large_ralloc_no_move() 207 if (!large_ralloc_no_move_expand(tsdn, extent, usize_max, in large_ralloc_no_move() 213 if (usize_min < usize_max && usize_min > in large_ralloc_no_move() 227 usize_max) { in large_ralloc_no_move() 233 if (extent_usize_get(extent) > usize_max) { in large_ralloc_no_move() 234 if (!large_ralloc_no_move_shrink(tsdn, extent, usize_max)) { in large_ralloc_no_move()
|
| A D | jemalloc.c | 2401 size_t usize_max, usize; in ixallocx_prof() local 2414 usize_max = s2u(size+extra); in ixallocx_prof() 2415 assert(usize_max > 0 && usize_max <= LARGE_MAXCLASS); in ixallocx_prof() 2417 usize_max = sa2u(size+extra, alignment); in ixallocx_prof() 2418 if (unlikely(usize_max == 0 || usize_max > LARGE_MAXCLASS)) { in ixallocx_prof() 2425 usize_max = LARGE_MAXCLASS; in ixallocx_prof() 2428 tctx = prof_alloc_prep(tsd, usize_max, prof_active, false); in ixallocx_prof()
|
| A D | arena.c | 1444 size_t usize_min, usize_max; in arena_ralloc_no_move() local 1453 usize_max = s2u(size + extra); in arena_ralloc_no_move() 1461 if ((usize_max > SMALL_MAXCLASS || size2index(usize_max) != in arena_ralloc_no_move() 1462 size2index(oldsize)) && (size > oldsize || usize_max < in arena_ralloc_no_move() 1468 } else if (oldsize >= LARGE_MINCLASS && usize_max >= LARGE_MINCLASS) { in arena_ralloc_no_move() 1469 return (large_ralloc_no_move(tsdn, extent, usize_min, usize_max, in arena_ralloc_no_move()
|
| /third_party/ulib/jemalloc/include/jemalloc/internal/ |
| A D | large_externs.h | 10 size_t usize_max, bool zero);
|
| /third_party/ulib/jemalloc/ |
| A D | ChangeLog | 293 + Fix ixallocx_prof() to pass usize_max and zero to ixallocx_prof_sample()
|
Completed in 16 milliseconds