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

/netbsd-current/external/bsd/jemalloc/dist/src/
H A Dlarge.c220 size_t usize_max, bool zero) {
224 assert(usize_min > 0 && usize_max <= LARGE_MAXCLASS);
226 assert(oldusize >= LARGE_MINCLASS && usize_max >= LARGE_MINCLASS);
228 if (usize_max > oldusize) {
230 if (!large_ralloc_no_move_expand(tsdn, extent, usize_max,
236 if (usize_min < usize_max && usize_min > oldusize &&
248 if (oldusize >= usize_min && oldusize <= usize_max) {
254 if (oldusize > usize_max) {
255 if (!large_ralloc_no_move_shrink(tsdn, extent, usize_max)) {
219 large_ralloc_no_move(tsdn_t *tsdn, extent_t *extent, size_t usize_min, size_t usize_max, bool zero) argument
H A Djemalloc.c2817 size_t usize_max, usize; local
2830 usize_max = sz_s2u(size+extra);
2831 assert(usize_max > 0 && usize_max <= LARGE_MAXCLASS);
2833 usize_max = sz_sa2u(size+extra, alignment);
2834 if (unlikely(usize_max == 0 || usize_max > LARGE_MAXCLASS)) {
2836 * usize_max is out of range, and chances are that
2841 usize_max = LARGE_MAXCLASS;
2844 tctx = prof_alloc_prep(tsd, usize_max, prof_active
[all...]
H A Darena.c1596 size_t usize_max = sz_s2u(size + extra); local
1604 if ((usize_max > SMALL_MAXCLASS || sz_size2index(usize_max) !=
1605 sz_size2index(oldsize)) && (size > oldsize || usize_max <
1612 } else if (oldsize >= LARGE_MINCLASS && usize_max >= LARGE_MINCLASS) {
1613 return large_ralloc_no_move(tsdn, extent, usize_min, usize_max,
/netbsd-current/external/bsd/jemalloc/dist/include/jemalloc/internal/
H A Dlarge_externs.h8 size_t usize_max, bool zero);
/netbsd-current/external/bsd/jemalloc/include/jemalloc/internal/
H A Dlarge_externs.h8 size_t usize_max, bool zero);

Completed in 288 milliseconds