| /llvm-project-15.0.7/cross-project-tests/debuginfo-tests/dexter/dex/debugger/dbgeng/ |
| H A D | client.py | 41 wrp = partial(WINFUNCTYPE, c_long, POINTER(IDebugClient7)) 42 idc_queryinterface = wrp(POINTER(IID), POINTER(c_void_p)) 147 IDebugClient7._fields_ = [("lpVtbl", POINTER(IDebugClient7Vtbl))] 152 DbgEng.DebugCreate.argtypes = [POINTER(IID), POINTER(POINTER(IDebugClient7))] 156 ptr = POINTER(IDebugClient7)() 169 self.control_ptr = cast(ptr, POINTER(control.IDebugControl7)) 176 self.sysobjects_ptr = cast(ptr, POINTER(sysobjs.IDebugSystemObjects4)) 183 self.symbols_ptr = cast(ptr, POINTER(symbols.IDebugSymbols5))
|
| H A D | control.py | 28 PDEBUG_STACK_FRAME_EX = POINTER(DEBUG_STACK_FRAME_EX) 47 PDEBUG_VALUE = POINTER(DEBUG_VALUE) 71 wrp = partial(WINFUNCTYPE, c_long, POINTER(IDebugControl7)) 77 idc_addbreakpoint2 = wrp(c_ulong, c_ulong, POINTER(POINTER(DebugBreakpoint2))) 263 IDebugControl7._fields_ = [("lpVtbl", POINTER(IDebugControl7Vtbl))] 334 breakpoint = POINTER(DebugBreakpoint2)()
|
| H A D | symbols.py | 77 PDEBUG_MODULE_PARAMETERS = POINTER(DEBUG_MODULE_PARAMETERS) 84 PDEBUG_MODULE_AND_ID = POINTER(DEBUG_MODULE_AND_ID) 101 PDEBUG_SYMBOL_ENTRY = POINTER(DEBUG_SYMBOL_ENTRY) 110 wrp = partial(WINFUNCTYPE, c_long, POINTER(IDebugSymbols5)) 123 …ids_getscopesymbolgroup2 = wrp(c_ulong, POINTER(IDebugSymbolGroup2), POINTER(POINTER(IDebugSymbolG… 264 IDebugSymbols5._fields_ = [("lpVtbl", POINTER(IDebugSymbols5Vtbl))] 323 retptr = POINTER(IDebugSymbolGroup2)()
|
| H A D | utils.py | 46 c_ulong_p = POINTER(c_ulong) 47 c_ulong64_p = POINTER(c_ulonglong)
|
| H A D | breakpoint.py | 33 wrp = partial(WINFUNCTYPE, c_long, POINTER(DebugBreakpoint2)) 67 DebugBreakpoint2._fields_ = [("lpVtbl", POINTER(DebugBreakpoint2Vtbl))]
|
| H A D | sysobjs.py | 20 wrp = partial(WINFUNCTYPE, c_long, POINTER(IDebugSystemObjects4)) 21 ids_getnumberprocesses = wrp(POINTER(c_ulong)) 78 IDebugSystemObjects4._fields_ = [("lpVtbl", POINTER(IDebugSystemObjects4Vtbl))]
|
| H A D | symgroup.py | 20 wrp = partial(WINFUNCTYPE, c_long, POINTER(IDebugSymbolGroup2)) 54 IDebugSymbolGroup2._fields_ = [("lpVtbl", POINTER(IDebugSymbolGroup2Vtbl))]
|
| /llvm-project-15.0.7/llvm/bindings/python/llvm/ |
| H A D | disassembler.py | 10 from ctypes import POINTER 100 buf = cast(c_char_p(source), POINTER(c_ubyte)) 125 buf = cast(source_bytes, POINTER(c_ubyte * len(source))).contents 130 b = cast(addressof(buf) + offset, POINTER(c_ubyte)) 155 library.LLVMDisasmInstruction.argtypes = [Disassembler, POINTER(c_ubyte), 166 POINTER(c_uint64), c_uint64, 167 POINTER(c_char_p))
|
| H A D | bit_reader.py | 9 from ctypes import POINTER 27 library.LLVMParseBitcode2.argtypes = [MemoryBuffer, POINTER(c_object_p)]
|
| H A D | common.py | 9 from ctypes import POINTER 25 c_object_p = POINTER(c_void_p)
|
| H A D | core.py | 16 from ctypes import POINTER 507 POINTER(c_object_p), POINTER(c_char_p)] 537 POINTER(c_char_p)]
|
| H A D | object.py | 81 from ctypes import POINTER 465 library.LLVMGetSectionContents.restype = POINTER(c_char)
|
| /llvm-project-15.0.7/mlir/test/Integration/Dialect/SparseTensor/taco/tools/ |
| H A D | mlir_pytaco_utils.py | 141 shape = ctypes.POINTER(ctypes.c_ulonglong)() 143 values = ctypes.POINTER(runtime.as_ctype(np.dtype(dtype)))() 144 indices = ctypes.POINTER(ctypes.c_ulonglong)() 182 shape = np_shape.ctypes.data_as(ctypes.POINTER(ctypes.c_ulonglong)) 184 ctypes.POINTER(runtime.as_ctype(np.dtype(np_values.dtype)))) 185 indices = np_indices.ctypes.data_as(ctypes.POINTER(ctypes.c_ulonglong)) 187 perm = np_perm.ctypes.data_as(ctypes.POINTER(ctypes.c_ulonglong)) 188 sparse = np_sparse.ctypes.data_as(ctypes.POINTER(ctypes.c_uint8)) 214 ("storage", ctypes.POINTER(ctypes.c_ulonglong)),
|
| /llvm-project-15.0.7/llvm/test/CodeGen/X86/ |
| H A D | vecloadextract.ll | 10 ; CHECK: [[POINTER:%[0-9]+]]:gr32 = MOV32rm %fixed-stack.0, 1, $noreg, 0, $noreg :: (load (s32) … 11 ; CHECK: [[LOAD:%[0-9]+]]:gr32 = MOV32rm killed [[POINTER]], 1, $noreg, 4, $noreg :: (load (s32)… 24 ; CHECK: [[POINTER:%[0-9]+]]:gr32 = MOV32rm %fixed-stack.1, 1, $noreg, 0, $noreg :: (load (s32) … 25 ; CHECK: [[LOAD:%[0-9]+]]:gr32 = MOV32rm killed [[POINTER]], 4, killed [[MASKED_INDEX]], 0, $nor… 38 ; CHECK: [[POINTER:%[0-9]+]]:gr32 = MOV32rm %fixed-stack.1, 1, $noreg, 0, $noreg :: (load (s32) … 39 ; CHECK: [[LOAD:%[0-9]+]]:gr32 = MOV32rm killed [[POINTER]], 4, killed [[MASKED_INDEX]], 0, $nor…
|
| /llvm-project-15.0.7/lldb/test/API/functionalities/data-formatter/data-formatter-stl/generic/bitset/ |
| H A D | TestDataFormatterGenericBitset.py | 16 POINTER = "POINTER" variable 34 elif variant == POINTER: 79 self.check("ptr", 13, POINTER) 84 self.check("ptr", 70, POINTER) 89 self.check("ptr", 1000, POINTER)
|
| /llvm-project-15.0.7/llvm/test/Bitcode/ |
| H A D | pr18704.ll | 15 ; <POINTER abbrevid=4 op0=0 op1=0/> 16 ; <POINTER abbrevid=4 op0=1 op1=0/> 18 ; <POINTER abbrevid=4 op0=3 op1=0/> 20 ; <POINTER abbrevid=4 op0=5 op1=0/> 22 ; <POINTER abbrevid=4 op0=7 op1=0/> 24 ; <POINTER abbrevid=4 op0=9 op1=0/> 28 ; <POINTER abbrevid=4 op0=12 op1=0/> 30 ; <POINTER abbrevid=4 op0=14 op1=0/> 32 ; <POINTER abbrevid=4 op0=16 op1=0/> 35 ; <POINTER abbrevid=4 op0=19 op1=0/> [all …]
|
| /llvm-project-15.0.7/mlir/python/mlir/runtime/ |
| H A D | np_to_memref.py | 55 ("aligned", ctypes.POINTER(dtype)), 71 ("aligned", ctypes.POINTER(dtype)), 89 x.aligned = nparray.ctypes.data_as(ctypes.POINTER(ctp)) 95 x.aligned = nparray.ctypes.data_as(ctypes.POINTER(ctp)) 119 val = ctypes.cast(unranked_memref[0].descriptor, ctypes.POINTER(descriptor))
|
| /llvm-project-15.0.7/mlir/test/Integration/Dialect/SparseTensor/python/tools/ |
| H A D | np_to_sparse_tensor.py | 64 shape = ctypes.POINTER(ctypes.c_ulonglong)() 65 values = ctypes.POINTER(np.ctypeslib.as_ctypes_type(dtype))() 66 indices = ctypes.POINTER(ctypes.c_ulonglong)()
|
| /llvm-project-15.0.7/clang/bindings/python/clang/ |
| H A D | cindex.py | 145 c_object_p = POINTER(c_void_p) 547 tokens_memory = POINTER(Token)() 2064 TypeKind.POINTER = TypeKind(101) 3331 [TranslationUnit, POINTER(Token), c_uint, POINTER(Cursor)]), 3337 [c_interop_string, POINTER(c_uint)], 3383 POINTER(CCRStructure)), 3473 [TranslationUnit, POINTER(Token), c_uint]), 3680 [Diagnostic, POINTER(_CXString)], 3742 [SourceLocation, POINTER(c_object_p), POINTER(c_uint), POINTER(c_uint), 3743 POINTER(c_uint)]), [all …]
|
| /llvm-project-15.0.7/clang/bindings/python/tests/cindex/ |
| H A D | test_type.py | 102 self.assertEqual(fields[6].type.kind, TypeKind.POINTER) 110 self.assertEqual(fields[7].type.kind, TypeKind.POINTER) 111 self.assertEqual(fields[7].type.get_pointee().kind, TypeKind.POINTER) 112 self.assertEqual(fields[7].type.get_pointee().get_pointee().kind, TypeKind.POINTER) 145 self.assertEqual(fields[0].type.get_array_element_type().kind, TypeKind.POINTER)
|
| /llvm-project-15.0.7/flang/include/flang/Semantics/ |
| H A D | attr.h | 27 OPTIONAL, PARAMETER, PASS, POINTER, PRIVATE, PROTECTED, PUBLIC, PURE, in ENUM_CLASS() argument
|
| /llvm-project-15.0.7/lld/MachO/Arch/ |
| H A D | ARM64_32.cpp | 52 {"POINTER_TO_GOT", B(PCREL) | B(EXTERN) | B(GOT) | B(POINTER) | B(BYTE4)},
|
| /llvm-project-15.0.7/lld/MachO/ |
| H A D | Relocations.h | 41 POINTER = 1 << 12, // Non-relaxable indirect load (pointer is taken) enumerator
|
| /llvm-project-15.0.7/mlir/test/python/ |
| H A D | execution_engine.py | 152 @ctypes.CFUNCTYPE(None, ctypes.POINTER(UnrankedMemRefDescriptor)) 200 ctypes.POINTER(
|
| /llvm-project-15.0.7/clang/include/clang/Serialization/ |
| H A D | TypeBitCodes.def | 15 TYPE_BIT_CODE(Pointer, POINTER, 4)
|