Searched refs:usize_max (Results 1 – 5 of 5) sorted by relevance
| /f-stack/app/redis-5.0.5/deps/jemalloc/src/ |
| H A D | large.c | 220 size_t usize_max, bool zero) { in large_ralloc_no_move() argument 224 assert(usize_min > 0 && usize_max <= LARGE_MAXCLASS); in large_ralloc_no_move() 226 assert(oldusize >= LARGE_MINCLASS && usize_max >= LARGE_MINCLASS); in large_ralloc_no_move() 228 if (usize_max > oldusize) { in large_ralloc_no_move() 230 if (!large_ralloc_no_move_expand(tsdn, extent, usize_max, in large_ralloc_no_move() 236 if (usize_min < usize_max && usize_min > oldusize && in large_ralloc_no_move() 248 if (oldusize >= usize_min && oldusize <= usize_max) { in large_ralloc_no_move() 254 if (oldusize > usize_max) { in large_ralloc_no_move() 255 if (!large_ralloc_no_move_shrink(tsdn, extent, usize_max)) { in large_ralloc_no_move()
|
| H A D | jemalloc.c | 2782 size_t usize_max, usize; in ixallocx_prof() local 2795 usize_max = sz_s2u(size+extra); in ixallocx_prof() 2796 assert(usize_max > 0 && usize_max <= LARGE_MAXCLASS); in ixallocx_prof() 2798 usize_max = sz_sa2u(size+extra, alignment); in ixallocx_prof() 2799 if (unlikely(usize_max == 0 || usize_max > LARGE_MAXCLASS)) { in ixallocx_prof() 2806 usize_max = LARGE_MAXCLASS; in ixallocx_prof() 2809 tctx = prof_alloc_prep(tsd, usize_max, prof_active, false); in ixallocx_prof()
|
| H A D | arena.c | 1593 size_t usize_max = sz_s2u(size + extra); in arena_ralloc_no_move() local 1601 if ((usize_max > SMALL_MAXCLASS || sz_size2index(usize_max) != in arena_ralloc_no_move() 1602 sz_size2index(oldsize)) && (size > oldsize || usize_max < in arena_ralloc_no_move() 1609 } else if (oldsize >= LARGE_MINCLASS && usize_max >= LARGE_MINCLASS) { in arena_ralloc_no_move() 1610 return large_ralloc_no_move(tsdn, extent, usize_min, usize_max, in arena_ralloc_no_move()
|
| /f-stack/app/redis-5.0.5/deps/jemalloc/include/jemalloc/internal/ |
| H A D | large_externs.h | 8 size_t usize_max, bool zero);
|
| /f-stack/app/redis-5.0.5/deps/jemalloc/ |
| H A D | ChangeLog | 667 + Fix ixallocx_prof() to pass usize_max and zero to ixallocx_prof_sample()
|