Home | History | Annotate | Download | only in src

Lines Matching refs:segment

21 class Segment;
31 // allocation is attempted, a segment of memory will be requested
52 // small (size <= kMaximumKeptSegmentSize) segment around if it finds one.
55 // Deletes the last small segment kept around by DeleteAll(). You
104 // Creates a new segment, sets it size, and pushes it to the front
105 // of the segment chain. Returns the new segment.
106 inline Segment* NewSegment(size_t size);
108 // Deletes the given segment. Does not touch the segment chain.
109 inline void DeleteSegment(Segment* segment, size_t size);
111 // The free region in the current (front) segment is represented as
117 Segment* segment_head_;