Home
last modified time | relevance | path

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

/third_party/python/Lib/test/
Dtest_sys.py486 self.assertEqual(len(sys.int_info), 2)
487 self.assertTrue(sys.int_info.bits_per_digit % 5 == 0)
488 self.assertTrue(sys.int_info.sizeof_digit >= 1)
489 self.assertEqual(type(sys.int_info.bits_per_digit), int)
490 self.assertEqual(type(sys.int_info.sizeof_digit), int)
1137 self.longdigit = sys.int_info.sizeof_digit
1335 PyLong_BASE = 2**sys.int_info.bits_per_digit
Dtest_long.py11 SHIFT = sys.int_info.bits_per_digit
/third_party/python/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)
/third_party/python/Objects/
Dlongobject.c5690 PyObject* int_info; in PyLong_GetInfo() local
5692 int_info = PyStructSequence_New(&Int_InfoType); in PyLong_GetInfo()
5693 if (int_info == NULL) in PyLong_GetInfo()
5695 PyStructSequence_SET_ITEM(int_info, field++, in PyLong_GetInfo()
5697 PyStructSequence_SET_ITEM(int_info, field++, in PyLong_GetInfo()
5700 Py_CLEAR(int_info); in PyLong_GetInfo()
5703 return int_info; in PyLong_GetInfo()
/third_party/python/Doc/using/
Dconfigure.rst43 See :data:`sys.int_info.bits_per_digit <sys.int_info>`.
/third_party/skia/third_party/externals/spirv-tools/test/val/
Dval_ext_inst_debug_test.cpp4954 %int_info = OpExtInst %void %DbgExt DebugTypeBasic %int_name %int_32 Signed
4957 %len_info = OpExtInst %void %DbgExt DebugLocalVariable %len_name %int_info %dbg_src 0 0 %comp_unit …
5079 %int_info = OpExtInst %void %DbgExt DebugTypeBasic %int_name %u32_32 %u32_4 %u32_0
5082 %len_info = OpExtInst %void %DbgExt DebugLocalVariable %len_name %int_info %dbg_src %u32_0 %u32_0 %…
/third_party/skia/third_party/externals/swiftshader/third_party/SPIRV-Tools/test/val/
Dval_ext_inst_debug_test.cpp4954 %int_info = OpExtInst %void %DbgExt DebugTypeBasic %int_name %int_32 Signed
4957 %len_info = OpExtInst %void %DbgExt DebugLocalVariable %len_name %int_info %dbg_src 0 0 %comp_unit …
5079 %int_info = OpExtInst %void %DbgExt DebugTypeBasic %int_name %u32_32 %u32_4 %u32_0
5082 %len_info = OpExtInst %void %DbgExt DebugLocalVariable %len_name %int_info %dbg_src %u32_0 %u32_0 %…
/third_party/python/Doc/tutorial/
Dmodules.rst323 'gettrace', 'hash_info', 'hexversion', 'implementation', 'int_info',
/third_party/python/Doc/library/
Dsys.rst948 .. data:: int_info
960 | | ``2**int_info.bits_per_digit`` |
/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 …
/third_party/python/Misc/
DHISTORY15120 default. Add sys.int_info structseq to provide information about