Lines Matching refs:bucket
99 int bucket; in malloc() local
128 bucket = 0; in malloc()
132 bucket++; in malloc()
134 pagebucket = bucket; in malloc()
143 bucket = 0; in malloc()
147 bucket = pagebucket; in malloc()
153 bucket++; in malloc()
159 if ((op = nextf[bucket]) == NULL) { in malloc()
160 morecore(bucket); in malloc()
161 if ((op = nextf[bucket]) == NULL) in malloc()
165 nextf[bucket] = op->ov_next; in malloc()
167 op->ov_index = (uchar_t)bucket; in malloc()
175 morecore(int bucket) in morecore() argument
182 sz = 1UL << (bucket + EXP); in morecore()
223 nextf[bucket] = op; in morecore()