Lines Matching refs:bucket
57 uchar_t ovu_index; /* bucket # */
61 uchar_t ovu_index; /* bucket # */
90 static int pagebucket; /* page size bucket */
98 int bucket;
127 bucket = 0;
131 bucket++;
133 pagebucket = bucket;
141 amt = (1UL << EXP); /* size of first bucket */
142 bucket = 0;
146 bucket = pagebucket;
152 bucket++;
155 * If nothing in hash bucket right now,
158 if ((op = nextf[bucket]) == NULL) {
159 morecore(bucket);
160 if ((op = nextf[bucket]) == NULL)
164 nextf[bucket] = op->ov_next;
166 op->ov_index = (uchar_t)bucket;
171 * Allocate more memory to the indicated bucket.
174 morecore(int bucket)
181 sz = 1UL << (bucket + EXP);
220 * free list for this hash bucket.
222 nextf[bucket] = op;
253 * to determine its bucket: 1st we make one pass thru the lists
329 * Return bucket number, or -1 if not found.