Home | History | Annotate | Download | only in ADT

Lines Matching refs:nine

203   APInt nine(8, 9);
206 EXPECT_EQ(nine.srem(two), one);
207 EXPECT_EQ(nine.srem(-two), one);
208 EXPECT_EQ((-nine).srem(two), -one);
209 EXPECT_EQ((-nine).srem(-two), -one);
211 APInt::sdivrem(nine, two, q, r);
214 APInt::sdivrem(-nine, two, q, r);
217 APInt::sdivrem(nine, -two, q, r);
220 APInt::sdivrem(-nine, -two, q, r);