Lines Matching full:q1
35 APInt Q1, R1, Q2, R2; in get() local
36 // initialize Q1 = 2P/abs(NC); R1 = rem(2P,abs(NC)) in get()
37 APInt::udivrem(SignedMin, ANC, Q1, R1); in get()
42 Q1 <<= 1; // update Q1 = 2P/abs(NC) in get()
45 ++Q1; in get()
57 } while (Q1.ult(Delta) || (Q1 == Delta && R1.isZero())); in get()
91 APInt Q1, R1, Q2, R2; in get() local
92 // initialize Q1 = 2P/NC; R1 = rem(2P,NC) in get()
93 APInt::udivrem(SignedMin, NC, Q1, R1); in get()
99 // update Q1 in get()
100 Q1 <<= 1; in get()
101 ++Q1; in get()
106 Q1 <<= 1; // update Q1 in get()
133 (Q1.ult(Delta) || (Q1 == Delta && R1.isZero()))); in get()