HomeSort by relevance Sort by last modified time
    Searched refs:IntPtr (Results 1 - 18 of 18) sorted by null

  /external/clang/test/SemaCXX/
warn-cast-align.cpp 20 typedef int *IntPtr;
21 c = IntPtr(P); // expected-warning {{cast from 'char *' to 'IntPtr' (aka 'int *') increases required alignment from 1 to 4}}
43 typedef int *IntPtr;
44 c = IntPtr(P);
composite-pointer-type.cpp 39 typedef int *IntPtr;
40 typedef IntPtr *IntPtrPtr;
41 typedef IntPtr const *IntPtrConstPtr;
  /prebuilts/misc/common/swig/include/2.0.11/csharp/
boost_shared_ptr.i 98 %typemap (imtype, out="IntPtr") SWIG_SHARED_PTR_QNAMESPACE::shared_ptr< CONST TYPE >,
113 IntPtr cPtr = $imcall;
114 $typemap(cstype, TYPE) ret = (cPtr == IntPtr.Zero) ? null : new $typemap(cstype, TYPE)(cPtr, true);$excode
118 IntPtr cPtr = $imcall;
119 $typemap(cstype, TYPE) ret = (cPtr == IntPtr.Zero) ? null : new $typemap(cstype, TYPE)(cPtr, true);$excode
123 IntPtr cPtr = $imcall;
124 $typemap(cstype, TYPE) ret = (cPtr == IntPtr.Zero) ? null : new $typemap(cstype, TYPE)(cPtr, true);$excode
128 IntPtr cPtr = $imcall;
129 $typemap(cstype, TYPE) ret = (cPtr == IntPtr.Zero) ? null : new $typemap(cstype, TYPE)(cPtr, true);$excode
143 IntPtr cPtr = $imcall
    [all...]
boost_intrusive_ptr.i 210 %typemap (imtype, out="IntPtr") SWIG_INTRUSIVE_PTR_QNAMESPACE::intrusive_ptr< CONST TYPE >,
227 IntPtr cPtr = $imcall;
228 $typemap(cstype, TYPE) ret = (cPtr == IntPtr.Zero) ? null : new $typemap(cstype, TYPE)(cPtr, true);$excode
232 IntPtr cPtr = $imcall;
233 $typemap(cstype, TYPE) ret = (cPtr == IntPtr.Zero) ? null : new $typemap(cstype, TYPE)(cPtr, true);$excode
237 IntPtr cPtr = $imcall;
238 $typemap(cstype, TYPE) ret = (cPtr == IntPtr.Zero) ? null : new $typemap(cstype, TYPE)(cPtr, true);$excode
242 IntPtr cPtr = $imcall;
243 $typemap(cstype, TYPE) ret = (cPtr == IntPtr.Zero) ? null : new $typemap(cstype, TYPE)(cPtr, true);$excode
247 IntPtr cPtr = $imcall;
    [all...]
wchar.i 23 public delegate string SWIGWStringDelegate(IntPtr message);
29 static string CreateWString([MarshalAs(UnmanagedType.LPWStr)]IntPtr cString) {
80 %typemap(imtype, inattributes="[MarshalAs(UnmanagedType.LPWStr)]", out="IntPtr" ) wchar_t * "string"
csharp.swg 113 %typemap(imtype, out="IntPtr") SWIGTYPE "HandleRef"
117 %typemap(imtype, out="IntPtr") SWIGTYPE [] "HandleRef"
121 %typemap(imtype, out="IntPtr") SWIGTYPE * "HandleRef"
125 %typemap(imtype, out="IntPtr") SWIGTYPE & "HandleRef"
432 %typemap(csdirectorin) SWIGTYPE *, SWIGTYPE (CLASS::*) "($iminput == IntPtr.Zero) ? null : new $csclassname($iminput, false)"
662 IntPtr cPtr = $imcall;
663 $csclassname ret = (cPtr == IntPtr.Zero) ? null : new $csclassname(cPtr, $owner);$excode
777 IntPtr cPtr = $imcall;
778 $csclassname ret = (cPtr == IntPtr.Zero) ? null : new $csclassname(cPtr, $owner);$excode
791 %typemap(imtype, out="IntPtr") SWIGTYPE *const& "HandleRef
    [all...]
std_map.i 72 IntPtr iter = create_iterator_begin();
  /external/llvm/lib/Target/AArch64/
AArch64SelectionDAGInfo.cpp 40 EVT IntPtr = TLI.getPointerTy();
52 DAG.getExternalSymbol(bzeroEntry, IntPtr), std::move(Args), 0)
  /external/llvm/lib/Object/
COFFObjectFile.cpp 504 uintptr_t IntPtr = 0;
505 if (std::error_code EC = getRvaPtr(Rva, IntPtr))
507 const uint8_t *Ptr = reinterpret_cast<const uint8_t *>(IntPtr);
532 uintptr_t IntPtr = 0;
533 if (std::error_code EC = getRvaPtr(ImportTableRva, IntPtr))
536 const import_directory_table_entry *>(IntPtr);
552 uintptr_t IntPtr = 0;
553 if (std::error_code EC = getRvaPtr(RVA, IntPtr))
556 const delay_import_directory_table_entry *>(IntPtr);
573 uintptr_t IntPtr = 0
    [all...]
  /external/clang/test/CXX/dcl.dcl/dcl.spec/dcl.type/dcl.spec.auto/
p7-1y.cpp 18 using IntPtr = int*;
41 using IntPtr = decltype(x7a);
  /external/llvm/tools/llvm-objdump/
COFFDump.cpp 245 uintptr_t IntPtr = 0;
246 if (error(Obj->getVaPtr(TableVA, IntPtr)))
248 const support::ulittle32_t *P = (const support::ulittle32_t *)IntPtr;
270 uintptr_t IntPtr = 0;
273 if (error(Obj->getRvaPtr(DataDir->RelativeVirtualAddress, IntPtr)))
276 auto *LoadConf = reinterpret_cast<const coff_load_configuration32 *>(IntPtr);
  /prebuilts/misc/common/swig/include/2.0.11/modula3/
modula3.swg 641 RETURN (cPtr = IntPtr.Zero) ? null : NEW($1_basetype, cPtr, $owner);
689 IntPtr cPtr = $imcall;
690 RETURN (cPtr == IntPtr.Zero) ? null : new $1_basetype(cPtr, $owner);
    [all...]
  /external/llvm/lib/CodeGen/
IntrinsicLowering.cpp 467 Type *IntPtr = DL.getIntPtrType(Context);
468 Value *Size = Builder.CreateIntCast(CI->getArgOperand(2), IntPtr,
478 Type *IntPtr = DL.getIntPtrType(Context);
479 Value *Size = Builder.CreateIntCast(CI->getArgOperand(2), IntPtr,
490 Type *IntPtr = DL.getIntPtrType(Op0->getType());
491 Value *Size = Builder.CreateIntCast(CI->getArgOperand(2), IntPtr,
  /external/llvm/lib/Transforms/Scalar/
LoopIdiomRecognize.cpp     [all...]
  /external/llvm/lib/Target/X86/
X86SelectionDAGInfo.cpp 84 EVT IntPtr = DAG.getTargetLoweringInfo().getPointerTy();
97 DAG.getExternalSymbol(bzeroEntry, IntPtr), std::move(Args),
  /external/llvm/lib/Target/R600/
AMDGPUISelDAGToDAG.cpp 83 bool SelectGlobalValueConstantOffset(SDValue Addr, SDValue& IntPtr);
683 SDValue& IntPtr) {
685 IntPtr = CurDAG->getIntPtrConstant(Cst->getZExtValue() / 4, true);
    [all...]
  /external/v8/src/compiler/
raw-machine-assembler.h 298 Node* IntPtr##name(Node* a, Node* b) { \
  /external/llvm/lib/CodeGen/SelectionDAG/
SelectionDAGBuilder.cpp     [all...]

Completed in 3216 milliseconds