Home | History | Annotate | Download | only in src

Lines Matching defs:Capacity

1542   // capacity?
1561 // Computes the new capacity when expanding the elements of a JSObject.
1612 MUST_USE_RESULT MaybeObject* SetFastElementsCapacityAndLength(int capacity,
1735 // an initial capacity for holding these properties.
2272 // Returns the capacity of the hash table.
2273 int Capacity() {
2333 // Maximal capacity of HashTable. Based on maximal length of underlying
2364 // Sets the capacity of the hash table.
2365 void SetCapacity(int capacity) {
2367 // use bit-wise AND with a mask, so the capacity must be positive
2369 ASSERT(capacity > 0);
2370 ASSERT(capacity <= kMaxCapacity);
2371 fast_set(this, kCapacityIndex, Smi::FromInt(capacity));
5517 unsigned capacity,
5522 unsigned capacity,
5570 capacity(capacity_),
5575 unsigned capacity;
6105 // Initialize the array with the given capacity. The function may
6107 // capacity is non-zero.
6108 MUST_USE_RESULT MaybeObject* Initialize(int capacity);