Lines Matching full:capacity
509 // Max capacity of the total space and executable memory limit.
936 // The 'capacity' of a space is the number of object-area bytes (ie, not
943 // capacity is the sum of size, waste, and available.
946 // functions increase or decrease one of the non-capacity stats in
947 // conjunction with capacity, or else they always balance increases and
948 // decreases to the non-capacity stats.
953 // Zero out all the allocation statistics (ie, no capacity).
961 // Reset the allocation statistics (ie, available = capacity with no
970 intptr_t Capacity() { return capacity_; }
1022 // Creates a space with a maximum capacity, and an id.
1078 // Current capacity without growing (Size() + Available() + Waste()).
1079 intptr_t Capacity() { return accounting_stats_.Capacity(); }
1082 // spaces this equals the capacity.
1083 intptr_t CommittedMemory() { return Capacity(); }
1152 // Ensures that the capacity is at least 'capacity'. Returns false on failure.
1153 bool EnsureCapacity(int capacity);
1184 // Maximum capacity of this space.
1334 // its maximum capacity (and thus there is space available in the reserved
1338 // Grow the semispace to the new capacity. The new capacity
1339 // requested must be larger than the current capacity.
1342 // Shrinks the semispace to the new capacity. The new capacity
1344 // semispace and less than the current capacity.
1401 // Returns the current capacity of the semi space.
1402 int Capacity() { return capacity_; }
1404 // Returns the maximum capacity of the semi space.
1407 // Returns the initial capacity of the semi space.
1411 // The current and maximum capacity of the space.
1504 // Grow the capacity of the semispaces. Assumes that they are not at
1505 // their maximum capacity.
1508 // Shrink the capacity of the semispaces.
1528 // Return the current capacity of a semispace.
1529 intptr_t Capacity() {
1530 ASSERT(to_space_.Capacity() == from_space_.Capacity());
1531 return to_space_.Capacity();
1536 if (from_space_.is_committed()) return 2 * Capacity();
1537 return Capacity();
1541 intptr_t Available() { return Capacity() - Size(); }
1543 // Return the maximum capacity of a semispace.
1549 // Returns the initial capacity of a semispace.
1891 // Creates an old space object with a given maximum capacity.
2045 // Creates a map space object with a maximum capacity.
2159 // Creates a property cell space object with a maximum capacity.