Lines Matching defs:high_hole
145 struct util_vma_hole *high_hole = calloc(1, sizeof(*hole));
146 high_hole->offset = offset + size;
147 high_hole->size = waste;
157 list_addtail(&high_hole->link, &hole->link);
188 struct util_vma_hole *high_hole = NULL, *low_hole = NULL;
194 high_hole = hole;
197 if (high_hole)
198 assert(offset + size <= high_hole->offset);
199 bool high_adjacent = high_hole && offset + size == high_hole->offset;
209 low_hole->size += size + high_hole->size;
210 list_del(&high_hole->link);
211 free(high_hole);
217 high_hole->offset = offset;
218 high_hole->size += size;
227 if (high_hole)
228 list_add(&hole->link, &high_hole->link);