Lines Matching defs:high_hole
126 struct util_vma_hole *high_hole = calloc(1, sizeof(*hole));
127 high_hole->offset = offset + size;
128 high_hole->size = waste;
138 list_addtail(&high_hole->link, &hole->link);
261 struct util_vma_hole *high_hole = NULL, *low_hole = NULL;
267 high_hole = hole;
270 if (high_hole)
271 assert(offset + size <= high_hole->offset);
272 bool high_adjacent = high_hole && offset + size == high_hole->offset;
282 low_hole->size += size + high_hole->size;
283 list_del(&high_hole->link);
284 free(high_hole);
290 high_hole->offset = offset;
291 high_hole->size += size;
300 if (high_hole)
301 list_add(&hole->link, &high_hole->link);