Home | History | Annotate | Download | only in util

Lines Matching refs:bucket

142   UINT32 hashv, bucket;
150 bucket = (*node)->hashv & (hash->size - 1);
155 bucket = hashv & (hash->size - 1);
160 bucket = 0;
170 bucket++;
173 while (bucket < hash->size)
175 if (hash->nodes[bucket])
177 *key = hash->nodes[bucket]->key;
178 return hash->nodes[bucket]->value;
180 bucket++;
188 UINT32 hashv, bucket;
193 bucket = hashv & (hash->size - 1);
194 /* ne_warn("Lookup %s %d %d", key, hashv, bucket); */
196 node = &(hash->nodes[bucket]);