Searched refs:bucketBits (Results 1 - 1 of 1) sorted by relevance

/xsrc/external/mit/xorg-server/dist/Xext/
H A Dhashtable.c20 int bucketBits; /* number of buckets is 1 << bucketBits */ member in struct:HashTableRec
55 ht->bucketBits = INITHASHSIZE;
56 numBuckets = 1 << ht->bucketBits;
76 int numBuckets = 1 << ht->bucketBits;
93 int numBuckets = 1 << ht->bucketBits;
94 int newBucketBits = ht->bucketBits + 1;
116 ht->bucketBits = newBucketBits;
126 unsigned index = ht->hash(ht->cdata, key, ht->bucketBits);
146 if (ht->elements > 4 * (1 << ht->bucketBits)
[all...]

Completed in 2 milliseconds