Home | History | Annotate | Download | only in bfd

Lines Matching refs:low2

2113 /* Check whether [low1, high1) can be combined with [low2, high2),
2119 bfd_vma low2,
2122 if (low1 == low2 || high1 == high2)
2125 /* Sort so that low1 is below low2. */
2126 if (low1 > low2)
2131 low1 = low2;
2132 low2 = tmp;
2139 /* We touch iff low2 == high1.
2140 We overlap iff low2 is within [low1, high1). */
2141 return low2 <= high1;