Home | History | Annotate | Download | only in src

Lines Matching refs:Segment

42 class Segment;
51 // allocation is attempted, a segment of memory will be requested
110 // Creates a new segment, sets it size, and pushes it to the front
111 // of the segment chain. Returns the new segment.
112 Segment* NewSegment(int size);
114 // Deletes the given segment. Does not touch the segment chain.
115 void DeleteSegment(Segment* segment, int size);
117 // The free region in the current (front) segment is represented as
125 Segment* segment_head_;