Home
last modified time | relevance | path

Searched refs:maxint64 (Results 1 – 6 of 6) sorted by relevance

/external/starlark-go/starlark/testdata/
Dint.star14 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/
Dtest_marshal.py40 maxint64 = (1L << 63) - 1
41 minint64 = -maxint64-1
43 for base in maxint64, minint64, -maxint64, -(minint64 >> 1):
Dpickletester.py544 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/
Dtest_marshal.py40 maxint64 = (1 << 63) - 1
41 minint64 = -maxint64-1
42 for base in maxint64, minint64, -maxint64, -(minint64 >> 1):
Dpickletester.py938 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/
Dint.go131 if i.Cmp(maxint64) > 0 {
157 maxint64 = new(big.Int).SetInt64(math.MaxInt64) var