Home | History | Annotate | Download | only in Hexagon

Lines Matching defs:Dist

662     int64_t Dist = EndV - StartV;
663 if (Dist == 0)
666 bool Exact = (Dist % IVBump) == 0;
671 if ((Dist < 0) ^ (IVBump < 0))
678 Dist = Dist > 0 ? Dist+1 : Dist-1;
680 // assert (CmpLess => Dist > 0);
681 assert ((!CmpLess || Dist > 0) && "Loop should never iterate!");
682 // assert (CmpGreater => Dist < 0);
683 assert ((!CmpGreater || Dist < 0) && "Loop should never iterate!");
686 int64_t Dist1 = (IVBump > 0) ? (Dist + (IVBump-1)) / IVBump
687 : (-Dist + (-IVBump-1)) / (-IVBump);