Home | History | Annotate | Download | only in heap

Lines Matching refs:wasted

1939   // Sets the capacity, the available space and the wasted space to zero.
1943 // to the available and wasted totals.
1966 // Wasted bytes in this space. These are just the bytes that were thrown away
2008 size_t wasted = free_list_.Free(start, size_in_bytes, kLinkCategory);
2010 DCHECK_GE(size_in_bytes, wasted);
2011 return size_in_bytes - wasted;
2015 size_t wasted = free_list_.Free(start, size_in_bytes, kDoNotLinkCategory);
2016 DCHECK_GE(size_in_bytes, wasted);
2017 return size_in_bytes - wasted;