Home | History | Annotate | Download | only in src

Lines Matching refs:capacity

91     tmp->args.capacity = PHASH_TABLE_DEFAULT_CAPACITY;
106 tmp->entries = NEW_ARRAY(PHashTableEntry *, tmp->args.capacity, memTag);
114 for (i = tmp->args.capacity; i > 0;)
121 tmp->threshold = (unsigned int)(tmp->args.capacity * tmp->args.maxLoadFactor);
218 idx = hashCode % table->args.capacity;
265 idx = hashCode % table->args.capacity;
277 unsigned int oldCapacity = table->args.capacity;
290 table->args.capacity = newCapacity;
349 idx = hashCode % table->args.capacity;
365 idx = hashCode % table->args.capacity;
438 idx = hashCode % table->args.capacity;
512 while (++idx < table->args.capacity)
524 for (idx = 0; idx < table->args.capacity; ++idx)