Lines Matching refs:start_
117 if (p->start_ > start) in remove()
124 if (p->start_ <= start && p->end_ >= end) in remove()
128 if (p->start_ + 3 >= start && p->end_ <= end + 3) in remove()
131 else if (p->start_ + 3 >= start) in remove()
132 p->start_ = end; in remove()
140 Free_list_node newnode(p->start_, start); in remove()
141 p->start_ = end; in remove()
181 off_t start = p->start_ > minoff ? p->start_ : minoff; in allocate()
191 if (p->start_ + fuzz >= start && p->end_ <= end + fuzz) in allocate()
193 else if (p->start_ + fuzz >= start) in allocate()
194 p->start_ = end; in allocate()
199 Free_list_node newnode(p->start_, start); in allocate()
200 p->start_ = end; in allocate()
222 gold_info(" %08lx %08lx %08lx", static_cast<long>(p->start_), in dump()
224 static_cast<long>(p->end_ - p->start_)); in dump()