Lines Matching refs:bucket
100 int bucket; in malloc() local
129 bucket = 0; in malloc()
133 bucket++; in malloc()
135 pagebucket = bucket; in malloc()
144 bucket = 0; in malloc()
148 bucket = pagebucket; in malloc()
154 bucket++; in malloc()
160 if ((op = nextf[bucket]) == NULL) { in malloc()
161 morecore(bucket); in malloc()
162 if ((op = nextf[bucket]) == NULL) in malloc()
166 nextf[bucket] = op->ov_next; in malloc()
168 op->ov_index = (uchar_t)bucket; in malloc()
176 morecore(int bucket) in morecore() argument
183 sz = 1UL << (bucket + EXP); in morecore()
224 nextf[bucket] = op; in morecore()