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

/freebsd-11.0-release/contrib/jemalloc/src/
H A Darena.c25 static size_t small_maxrun; /* Max run size for small size classes. */ variable
89 if (size <= small_maxrun && small_run_tab[size >> LG_PAGE])
124 if (size >= small_maxrun)
129 assert(size <= small_maxrun);
3696 if (actual_run_size > small_maxrun)
3697 small_maxrun = actual_run_size;
3726 assert(small_maxrun != 0);
3728 small_run_tab = (bool *)base_alloc(NULL, sizeof(bool) * (small_maxrun >>

Completed in 109 milliseconds