Searched refs:maxint64 (Results 1 – 6 of 6) sorted by relevance
/external/starlark-go/starlark/testdata/ |
D | int.star | 14 maxint64 = (1 << 63) - 1 18 assert.eq(maxint64, 9223372036854775807) 237 assert.eq(str(maxint64), "9223372036854775807") 238 assert.eq(str(maxint64 + 1), "9223372036854775808")
|
/external/python/cpython2/Lib/test/ |
D | test_marshal.py | 40 maxint64 = (1L << 63) - 1 41 minint64 = -maxint64-1 43 for base in maxint64, minint64, -maxint64, -(minint64 >> 1):
|
D | pickletester.py | 544 maxint64 = (1L << 63) - 1 545 data = 'I' + str(maxint64) + '\n.' 547 self.assertEqual(got, maxint64) 550 data = 'I' + str(maxint64) + 'JUNK\n.'
|
/external/python/cpython3/Lib/test/ |
D | test_marshal.py | 40 maxint64 = (1 << 63) - 1 41 minint64 = -maxint64-1 42 for base in maxint64, minint64, -maxint64, -(minint64 >> 1):
|
D | pickletester.py | 938 maxint64 = (1 << 63) - 1 939 data = b'I' + str(maxint64).encode("ascii") + b'\n.' 941 self.assert_is_copy(maxint64, got) 944 data = b'I' + str(maxint64).encode("ascii") + b'JUNK\n.'
|
/external/starlark-go/starlark/ |
D | int.go | 131 if i.Cmp(maxint64) > 0 { 157 maxint64 = new(big.Int).SetInt64(math.MaxInt64) var
|