Lines Matching defs:bucket
59 uchar_t ovu_index; /* bucket # */
63 uchar_t ovu_index; /* bucket # */
92 static int pagebucket; /* page size bucket */
100 int bucket;
129 bucket = 0;
133 bucket++;
135 pagebucket = bucket;
143 amt = (1UL << EXP); /* size of first bucket */
144 bucket = 0;
148 bucket = pagebucket;
154 bucket++;
157 * If nothing in hash bucket right now,
160 if ((op = nextf[bucket]) == NULL) {
161 morecore(bucket);
162 if ((op = nextf[bucket]) == NULL)
166 nextf[bucket] = op->ov_next;
168 op->ov_index = (uchar_t)bucket;
173 * Allocate more memory to the indicated bucket.
176 morecore(int bucket)
183 sz = 1UL << (bucket + EXP);
222 * free list for this hash bucket.
224 nextf[bucket] = op;
255 * to determine its bucket: 1st we make one pass thru the lists
327 * Return bucket number, or -1 if not found.