Home
last modified time | relevance | path

Searched refs:int_info (Results 1 – 10 of 10) sorted by relevance

/external/python/cpython3/Lib/test/
Dtest_sys.py444 self.assertEqual(len(sys.int_info), 2)
445 self.assertTrue(sys.int_info.bits_per_digit % 5 == 0)
446 self.assertTrue(sys.int_info.sizeof_digit >= 1)
447 self.assertEqual(type(sys.int_info.bits_per_digit), int)
448 self.assertEqual(type(sys.int_info.sizeof_digit), int)
1059 self.longdigit = sys.int_info.sizeof_digit
1257 PyLong_BASE = 2**sys.int_info.bits_per_digit
Dtest_long.py11 SHIFT = sys.int_info.bits_per_digit
/external/python/cpython3/Doc/whatsnew/
D3.1.rst488 new :attr:`sys.int_info` that provides information about the
493 >>> sys.int_info
494 sys.int_info(bits_per_digit=30, sizeof_digit=4)
/external/python/cpython3/Objects/
Dlongobject.c5738 PyObject* int_info; in PyLong_GetInfo() local
5740 int_info = PyStructSequence_New(&Int_InfoType); in PyLong_GetInfo()
5741 if (int_info == NULL) in PyLong_GetInfo()
5743 PyStructSequence_SET_ITEM(int_info, field++, in PyLong_GetInfo()
5745 PyStructSequence_SET_ITEM(int_info, field++, in PyLong_GetInfo()
5748 Py_CLEAR(int_info); in PyLong_GetInfo()
5751 return int_info; in PyLong_GetInfo()
/external/python/cpython3/Doc/tutorial/
Dmodules.rst322 'gettrace', 'hash_info', 'hexversion', 'implementation', 'int_info',
/external/python/cpython3/Doc/library/
Dsys.rst924 .. data:: int_info
936 | | ``2**int_info.bits_per_digit`` |
/external/deqp-deps/SPIRV-Tools/test/val/
Dval_ext_inst_test.cpp3196 %int_info = OpExtInst %void %DbgExt DebugTypeBasic %int_name %int_32 Signed
3199 %len_info = OpExtInst %void %DbgExt DebugLocalVariable %len_name %int_info %dbg_src 0 0 %comp_unit …
/external/swiftshader/third_party/SPIRV-Tools/test/val/
Dval_ext_inst_test.cpp3196 %int_info = OpExtInst %void %DbgExt DebugTypeBasic %int_name %int_32 Signed
3199 %len_info = OpExtInst %void %DbgExt DebugLocalVariable %len_name %int_info %dbg_src 0 0 %comp_unit …
/external/angle/third_party/vulkan-deps/spirv-tools/src/test/val/
Dval_ext_inst_test.cpp3196 %int_info = OpExtInst %void %DbgExt DebugTypeBasic %int_name %int_32 Signed
3199 %len_info = OpExtInst %void %DbgExt DebugLocalVariable %len_name %int_info %dbg_src 0 0 %comp_unit …
/external/python/cpython3/Misc/
DHISTORY15120 default. Add sys.int_info structseq to provide information about