Lines Matching defs:Quo
2740 APInt Quo, Rem;
2741 APInt::udivrem(A, B, Quo, Rem);
2743 return Quo;
2744 return Quo + 1;
2755 APInt Quo, Rem;
2756 APInt::sdivrem(A, B, Quo, Rem);
2758 return Quo;
2762 // down from Quo; otherwise, if it's positive or 0, we return Quo, as it's
2766 return Quo - 1;
2767 return Quo;
2770 return Quo;
2771 return Quo + 1;