Lines Matching defs:capacity
114 // number of entries and returns its effective capacity.
172 /* Creates a hashtable with the specified minimum initial capacity.
175 * minimumInitialCapacity: The minimum initial capacity for the hashtable.
207 /* Returns the capacity of the hashtable, which is the number of elements that can
210 inline size_t capacity() const {
286 * If the entry will not fit, then the hashtable's capacity is increased and
311 * Grows the hashtable to at least the specified minimum capacity or the
319 * Rehashing is the only way to change the capacity or load factor of the
321 * hashtable by choosing a minimum capacity that is smaller than the current
322 * capacity (such as 0).
324 * minimumCapacity: The desired minimum capacity after rehashing.