Lines Matching defs:gap
407 /* Use a slightly shorter box to leave a small gap between adjacent variables */
893 /* best fit algorithm: find the smallest gap to fit in the variable */
914 PhysRegInterval gap = PhysRegInterval::from_until(*reg_it, *next_nonfree_it);
917 if (size == gap.size) {
918 adjust_max_used_regs(ctx, rc, gap.lo());
919 return {gap.lo(), true};
922 /* check if it fits and the gap size is smaller */
923 if (size < gap.size && gap.size < best_gap.size) {
924 best_gap = gap;
934 /* find best position within gap by leaving a good stride for other variables*/