Home
last modified time | relevance | path

Searched refs:long_info (Results 1 – 8 of 8) sorted by relevance

/external/python/cpython2/Lib/test/
Dtest_sys.py381 self.assertEqual(len(sys.long_info), 2)
382 self.assertTrue(sys.long_info.bits_per_digit % 5 == 0)
383 self.assertTrue(sys.long_info.sizeof_digit >= 1)
384 self.assertEqual(type(sys.long_info.bits_per_digit), int)
385 self.assertEqual(type(sys.long_info.sizeof_digit), int)
484 self.longdigit = sys.long_info.sizeof_digit
680 PyLong_BASE = 2**sys.long_info.bits_per_digit
Dtest_long.py19 SHIFT = sys.long_info.bits_per_digit
/external/mesa3d/src/gallium/targets/haiku-softpipe/
DSoftwareRenderer.rdef15 long_info = "Haiku Gallium Software GL Renderer"
/external/python/cpython2/Objects/
Dlongobject.c4384 PyObject* long_info; in PyLong_GetInfo() local
4386 long_info = PyStructSequence_New(&Long_InfoType); in PyLong_GetInfo()
4387 if (long_info == NULL) in PyLong_GetInfo()
4389 PyStructSequence_SET_ITEM(long_info, field++, in PyLong_GetInfo()
4391 PyStructSequence_SET_ITEM(long_info, field++, in PyLong_GetInfo()
4394 Py_CLEAR(long_info); in PyLong_GetInfo()
4397 return long_info; in PyLong_GetInfo()
/external/python/cpython2/Doc/library/
Dsys.rst599 .. data:: long_info
611 | | ``2**long_info.bits_per_digit`` |
/external/python/cpython2/Doc/tutorial/
Dmodules.rst299 'long_info', 'maxint', 'maxsize', 'maxunicode', 'meta_path', 'modules',
/external/python/cpython2/Doc/whatsnew/
D2.7.rst952 debugging purposes there's a new structseq :data:`sys.long_info` that
958 >>> sys.long_info
959 sys.long_info(bits_per_digit=30, sizeof_digit=4)
/external/python/cpython2/Misc/
DNEWS7549 configure, which overrides the default. Add sys.long_info structseq to