HomeSort by: relevance | last modified time | path
    Searched refs:usize_max (Results 1 - 11 of 11) sorted by relevancy

  /src/external/bsd/jemalloc/dist/test/unit/
large_ralloc.c 5 * in-place extent expansion cannot succeed for either usize_max or
33 * Try to expand blocks[0] in place. Use usize_min < usize_max to
43 size_t usize_max = sz_s2u(oldusize * 2); local
46 if (usize_min == usize_max) {
47 usize_max = sz_s2u(usize_min + 1);
51 tsd_tsdn(tsd), edata, usize_min, usize_max, false);
  /src/external/bsd/jemalloc.old/dist/src/
large.c 131 size_t usize_max, bool zero) {
135 assert(usize_min > 0 && usize_max <= SC_LARGE_MAXCLASS);
138 && usize_max >= SC_LARGE_MINCLASS);
140 if (usize_max > oldusize) {
142 if (!large_ralloc_no_move_expand(tsdn, edata, usize_max,
148 if (usize_min < usize_max && usize_min > oldusize &&
159 if (oldusize >= usize_min && oldusize <= usize_max) {
165 if (oldusize > usize_max) {
166 if (!large_ralloc_no_move_shrink(tsdn, edata, usize_max)) {
arena.c 1409 size_t usize_max = sz_s2u(size + extra); local
1418 if ((usize_max > SC_SMALL_MAXCLASS
1419 || sz_size2index(usize_max) != sz_size2index(oldsize))
1420 && (size > oldsize || usize_max < oldsize)) {
1429 && usize_max >= SC_LARGE_MINCLASS) {
1430 ret = large_ralloc_no_move(tsdn, edata, usize_min, usize_max,
jemalloc.c 3732 size_t usize_max; local
3733 if (aligned_usize_get(size + extra, alignment, &usize_max, NULL,
3736 * usize_max is out of range, and chances are that allocation
3740 usize_max = SC_LARGE_MAXCLASS;
3743 bool sample_event = te_prof_sample_event_lookahead(tsd, usize_max);
3769 assert(usize <= usize_max);
  /src/external/bsd/jemalloc/dist/src/
large.c 133 size_t usize_max, bool zero) {
137 assert(usize_min > 0 && usize_max <= SC_LARGE_MAXCLASS);
139 assert(oldusize >= SC_LARGE_MINCLASS && usize_max >= SC_LARGE_MINCLASS);
141 if (usize_max > oldusize) {
144 tsdn, edata, usize_max, zero)) {
149 if (usize_min < usize_max && usize_min > oldusize
161 if (oldusize >= usize_min && oldusize <= usize_max) {
167 if (oldusize > usize_max) {
168 if (!large_ralloc_no_move_shrink(tsdn, edata, usize_max)) {
arena.c 1561 size_t usize_max = sz_s2u(size + extra); local
1569 if ((usize_max > SC_SMALL_MAXCLASS
1570 || sz_size2index(usize_max) != sz_size2index(oldsize))
1571 && (size > oldsize || usize_max < oldsize)) {
1580 && usize_max >= SC_LARGE_MINCLASS) {
1582 tsdn, edata, usize_min, usize_max, zero);
jemalloc.c 2719 size_t usize_max; local
2721 size + extra, alignment, &usize_max, NULL, false)) {
2723 * usize_max is out of range, and chances are that allocation
2727 usize_max = SC_LARGE_MAXCLASS;
2730 bool sample_event = te_prof_sample_event_lookahead(tsd, usize_max);
2764 assert(usize <= usize_max);
  /src/external/bsd/jemalloc/dist/include/jemalloc/internal/
large_externs.h 12 size_t usize_max, bool zero);
  /src/external/bsd/jemalloc/include/jemalloc/internal/
large_externs.h 12 size_t usize_max, bool zero);
  /src/external/bsd/jemalloc.old/dist/include/jemalloc/internal/
large_externs.h 10 size_t usize_max, bool zero);
  /src/external/bsd/jemalloc.old/include/jemalloc/internal/
large_externs.h 10 size_t usize_max, bool zero);

Completed in 39 milliseconds