Home | History | Annotate | Download | only in src

Lines Matching refs:Capacity

1293   // capacity?
1441 // an initial capacity for holding these properties.
1898 // Returns the capacity of the hash table.
1899 int Capacity() {
1955 // Maximal capacity of HashTable. Based on maximal length of underlying
1985 // Sets the capacity of the hash table.
1986 void SetCapacity(int capacity) {
1988 // use bit-wise AND with a mask, so the capacity must be positive
1990 ASSERT(capacity > 0);
1991 ASSERT(capacity <= kMaxCapacity);
1992 fast_set(this, kCapacityIndex, Smi::FromInt(capacity));
3957 unsigned capacity,
3962 unsigned capacity,
3982 capacity(capacity_),
3987 unsigned capacity;
4465 // Initialize the array with the given capacity. The function may
4467 // capacity is non-zero.
4468 Object* Initialize(int capacity);