Home | History | Annotate | Download | only in big

Lines Matching refs:NewInt

31 	{NewInt(0), NewInt(0), NewInt(0)},
32 {NewInt(1), NewInt(1), NewInt(0)},
33 {NewInt(1111111110), NewInt(123456789), NewInt(987654321)},
34 {NewInt(-1), NewInt(-1), NewInt(0)},
35 {NewInt(864197532), NewInt(-123456789), NewInt(987654321)},
36 {NewInt(-1111111110), NewInt(-123456789), NewInt(-987654321)},
40 {NewInt(0), NewInt(0), NewInt(0)},
41 {NewInt(0), NewInt(1), NewInt(0)},
42 {NewInt(1), NewInt(1), NewInt(1)},
43 {NewInt(-991 * 991), NewInt(991), NewInt(-991)},
275 x := NewInt(test.x)
276 y := NewInt(test.y)
277 q := NewInt(test.q)
278 r := NewInt(test.r)
279 d := NewInt(test.d)
280 m := NewInt(test.m)
921 in := NewInt(testVal)
1030 z = z.And(z, NewInt(1))
1038 one := NewInt(1)
1122 z := NewInt(1)
1123 z.SetBit(NewInt(0), 2, 1)
1124 if z.Cmp(NewInt(4)) != 0 {
1140 z := NewInt(-1)
1160 z := NewInt(-1)
1172 x := NewInt(1)
1182 x := NewInt(2)
1284 one := NewInt(1)
1445 x := NewInt(1)
1446 y := NewInt(2)
1454 n := NewInt(10)
1465 n := NewInt(int64(i))
1468 if r.Cmp(NewInt(int64(root))) != 0 {