Home | History | Annotate | Download | only in chromium

Lines Matching refs:opt_quantum_2pow

1208 static size_t	opt_quantum_2pow = QUANTUM_2POW_MIN;
4036 bin = &arena->bins[ntbins + (size >> opt_quantum_2pow)
4714 (QUANTUM_CEILING(size) >> opt_quantum_2pow)
4715 == (QUANTUM_CEILING(oldsize) >> opt_quantum_2pow))
5791 if (opt_quantum_2pow > QUANTUM_2POW_MIN)
5792 opt_quantum_2pow--;
5795 if (opt_quantum_2pow < pagesize_2pow -
5797 opt_quantum_2pow++;
5876 if (opt_small_max_2pow < opt_quantum_2pow)
5877 opt_small_max_2pow = opt_quantum_2pow;
5882 assert(opt_quantum_2pow >= TINY_MIN_2POW);
5883 ntbins = opt_quantum_2pow - TINY_MIN_2POW;
5884 assert(ntbins <= opt_quantum_2pow);
5885 nqbins = (small_max >> opt_quantum_2pow);
5888 /* Set variables according to the value of opt_quantum_2pow. */
5889 quantum = ((size_t)1 << opt_quantum_2pow);