HomeSort by: relevance | last modified time | path
    Searched defs:small_max (Results 1 - 2 of 2) sorted by relevancy

  /src/lib/libc/stdlib/
jemalloc.c 675 static size_t small_max; variable in typeref:typename:size_t
1697 * if the user increases small_max via the 'S' runtime
2195 } else if (size <= small_max) {
2395 } else if (size <= small_max) {
2396 if (oldsize >= small_min && oldsize <= small_max &&
2405 if (oldsize > small_max && PAGE_CEILING(size) == oldsize)
2590 bin->reg_size = (small_max << (i - (ntbins + nqbins) + 1));
3162 _malloc_message("Max small size: ", size_t2s(small_max, s), "\n",
3461 small_max = (1U << opt_small_max_2pow);
3468 nqbins = (unsigned)(small_max >> opt_quantum_2pow)
    [all...]
jemalloc.c 675 static size_t small_max; variable in typeref:typename:size_t
1697 * if the user increases small_max via the 'S' runtime
2195 } else if (size <= small_max) {
2395 } else if (size <= small_max) {
2396 if (oldsize >= small_min && oldsize <= small_max &&
2405 if (oldsize > small_max && PAGE_CEILING(size) == oldsize)
2590 bin->reg_size = (small_max << (i - (ntbins + nqbins) + 1));
3162 _malloc_message("Max small size: ", size_t2s(small_max, s), "\n",
3461 small_max = (1U << opt_small_max_2pow);
3468 nqbins = (unsigned)(small_max >> opt_quantum_2pow)
    [all...]

Completed in 24 milliseconds