Lines Matching defs:bytes
130 // Available bytes without growing. These are the bytes on the free list.
131 // The bytes in the linear allocation area are not included in this total
136 // Allocated bytes in this space. Garbage bytes that were not found due to
137 // concurrent sweeping are counted as being allocated! The bytes in the
142 // Wasted bytes in this space. These are just the bytes that were thrown away
146 // Allocate the requested number of bytes in the space from a background
196 void DecreaseAllocatedBytes(size_t bytes, Page* page) {
197 accounting_stats_.DecreaseAllocatedBytes(bytes, page);
199 void IncreaseAllocatedBytes(size_t bytes, Page* page) {
200 accounting_stats_.IncreaseAllocatedBytes(bytes, page);
202 void DecreaseCapacity(size_t bytes) {
203 accounting_stats_.DecreaseCapacity(bytes);
205 void IncreaseCapacity(size_t bytes) {
206 accounting_stats_.IncreaseCapacity(bytes);
215 // Adds the page to this space and returns the number of bytes added to the
219 // Remove a page if it has at least |size_in_bytes| bytes available that can