/external/llvm/bindings/python/llvm/ |
disassembler.py | 19 from ctypes import c_uint64 namespace 79 result = lib.LLVMDisasmInstruction(self, buf, c_uint64(len(source)), 80 c_uint64(pc), out_str, 255) 108 c_uint64(len(source) - offset), c_uint64(address), 132 c_uint64, c_uint64, c_char_p, c_size_t] 135 library.LLVMSetDisasmOptions.argtypes = [Disassembler, c_uint64] 139 callbacks['op_info'] = CFUNCTYPE(c_int, c_void_p, c_uint64, c_uint64, c_uint64 [all...] |
object.py | 81 from ctypes import c_uint64 namespace 471 library.LLVMGetSectionSize.restype = c_uint64 477 library.LLVMGetSectionAddress.restype = c_uint64 496 library.LLVMGetSymbolAddress.restype = c_uint64 499 library.LLVMGetSymbolFileOffset.restype = c_uint64 502 library.LLVMGetSymbolSize.restype = c_uint64 505 library.LLVMGetRelocationAddress.restype = c_uint64 508 library.LLVMGetRelocationOffset.restype = c_uint64 514 library.LLVMGetRelocationType.restype = c_uint64
|
/external/chromium_org/tools/telemetry/telemetry/core/platform/ |
mac_platform_backend.py | 41 _fields_ = [("pti_virtual_size", ctypes.c_uint64), 42 ("pti_resident_size", ctypes.c_uint64), 43 ("pti_total_user", ctypes.c_uint64), 44 ("pti_total_system", ctypes.c_uint64), 45 ("pti_threads_user", ctypes.c_uint64), 46 ("pti_threads_system", ctypes.c_uint64),
|
/external/v8/tools/ |
grokdump.py | 119 ("flags", ctypes.c_uint64) 137 ("record", ctypes.c_uint64), 138 ("address", ctypes.c_uint64), 141 ("information", ctypes.c_uint64 * MD_EXCEPTION_MAXIMUM_PARAMETERS) 245 ("p1_home", ctypes.c_uint64), 246 ("p2_home", ctypes.c_uint64), 247 ("p3_home", ctypes.c_uint64), 248 ("p4_home", ctypes.c_uint64), 249 ("p5_home", ctypes.c_uint64), 250 ("p6_home", ctypes.c_uint64), [all...] |
ll_prof.py | 338 "x64": ctypes.c_uint64 491 "u64": ctypes.c_uint64
|
/prebuilts/python/darwin-x86/2.7.5/lib/python2.7/ctypes/test/ |
test_sizes.py | 24 self.assertEqual(8, sizeof(c_uint64))
|
test_bitfields.py | 253 @unittest.skipUnless(hasattr(ctypes, "c_uint64"), "c_int64 is required") 256 _fields_ = [("a", c_uint64, 64)]
|
/prebuilts/python/linux-x86/2.7.5/lib/python2.7/ctypes/test/ |
test_sizes.py | 24 self.assertEqual(8, sizeof(c_uint64))
|
test_bitfields.py | 253 @unittest.skipUnless(hasattr(ctypes, "c_uint64"), "c_int64 is required") 256 _fields_ = [("a", c_uint64, 64)]
|
/external/chromium_org/v8/tools/ |
grokdump.py | 182 ("flags", ctypes.c_uint64) 205 ("record", ctypes.c_uint64), 206 ("address", ctypes.c_uint64), 209 ("information", ctypes.c_uint64 * MD_EXCEPTION_MAXIMUM_PARAMETERS) 312 ("fpscr", ctypes.c_uint64), 313 ("regs", ctypes.c_uint64 * MD_FLOATINGSAVEAREA_ARM_FPR_COUNT), 314 ("extra", ctypes.c_uint64 * MD_FLOATINGSAVEAREA_ARM_FPEXTRA_COUNT) 349 ("p1_home", ctypes.c_uint64), 350 ("p2_home", ctypes.c_uint64), 351 ("p3_home", ctypes.c_uint64), [all...] |
ll_prof.py | 354 "x64": ctypes.c_uint64 507 "u64": ctypes.c_uint64 [all...] |
/prebuilts/python/darwin-x86/2.7.5/lib/python2.7/ctypes/ |
__init__.py | 552 elif sizeof(kind) == 8: c_uint64 = kind
|
/prebuilts/python/linux-x86/2.7.5/lib/python2.7/ctypes/ |
__init__.py | 552 elif sizeof(kind) == 8: c_uint64 = kind
|