Home | History | Annotate | Download | only in src

Lines Matching refs:usize_max

137     size_t usize_max, bool zero)
146 for (usize = usize_min; usize < usize_max && (usize_next = s2u(usize+1))
291 size_t usize_max, bool zero)
296 assert(usize_min > 0 && usize_max <= HUGE_MAXCLASS);
299 if (oldsize < chunksize || usize_max < chunksize)
302 if (CHUNK_CEILING(usize_max) > CHUNK_CEILING(oldsize)) {
304 if (!huge_ralloc_no_move_expand(ptr, oldsize, usize_max,
310 if (usize_min < usize_max && CHUNK_CEILING(usize_min) >
323 && CHUNK_CEILING(oldsize) <= CHUNK_CEILING(usize_max)) {
324 huge_ralloc_no_move_similar(ptr, oldsize, usize_min, usize_max,
331 if (CHUNK_CEILING(oldsize) > CHUNK_CEILING(usize_max)) {
332 if (!huge_ralloc_no_move_shrink(ptr, oldsize, usize_max)) {