Searched refs:usize_max (Results 1 – 5 of 5) sorted by relevance
| /src/contrib/jemalloc/src/ |
| H A D | large.c | 131 size_t usize_max, bool zero) { in large_ralloc_no_move() argument 135 assert(usize_min > 0 && usize_max <= SC_LARGE_MAXCLASS); in large_ralloc_no_move() 138 && usize_max >= SC_LARGE_MINCLASS); in large_ralloc_no_move() 140 if (usize_max > oldusize) { in large_ralloc_no_move() 142 if (!large_ralloc_no_move_expand(tsdn, edata, usize_max, in large_ralloc_no_move() 148 if (usize_min < usize_max && usize_min > oldusize && in large_ralloc_no_move() 159 if (oldusize >= usize_min && oldusize <= usize_max) { in large_ralloc_no_move() 165 if (oldusize > usize_max) { in large_ralloc_no_move() 166 if (!large_ralloc_no_move_shrink(tsdn, edata, usize_max)) { in large_ralloc_no_move()
|
| H A D | arena.c | 1409 size_t usize_max = sz_s2u(size + extra); in arena_ralloc_no_move() local 1418 if ((usize_max > SC_SMALL_MAXCLASS in arena_ralloc_no_move() 1419 || sz_size2index(usize_max) != sz_size2index(oldsize)) in arena_ralloc_no_move() 1420 && (size > oldsize || usize_max < oldsize)) { in arena_ralloc_no_move() 1429 && usize_max >= SC_LARGE_MINCLASS) { in arena_ralloc_no_move() 1430 ret = large_ralloc_no_move(tsdn, edata, usize_min, usize_max, in arena_ralloc_no_move()
|
| H A D | jemalloc.c | 3712 size_t usize_max; in ixallocx_prof() local 3713 if (aligned_usize_get(size + extra, alignment, &usize_max, NULL, in ixallocx_prof() 3720 usize_max = SC_LARGE_MAXCLASS; in ixallocx_prof() 3723 bool sample_event = te_prof_sample_event_lookahead(tsd, usize_max); in ixallocx_prof() 3749 assert(usize <= usize_max); in ixallocx_prof()
|
| /src/contrib/jemalloc/include/jemalloc/internal/ |
| H A D | large_externs.h | 10 size_t usize_max, bool zero);
|
| /src/contrib/jemalloc/ |
| H A D | ChangeLog | 903 + Fix ixallocx_prof() to pass usize_max and zero to ixallocx_prof_sample()
|