Home
last modified time | relevance | path

Searched refs:IntPtr (Results 1 – 14 of 14) sorted by relevance

/external/llvm/lib/Object/
DCOFFObjectFile.cpp504 uintptr_t IntPtr = 0; in getHintName() local
505 if (std::error_code EC = getRvaPtr(Rva, IntPtr)) in getHintName()
507 const uint8_t *Ptr = reinterpret_cast<const uint8_t *>(IntPtr); in getHintName()
532 uintptr_t IntPtr = 0; in initImportTablePtr() local
533 if (std::error_code EC = getRvaPtr(ImportTableRva, IntPtr)) in initImportTablePtr()
536 const import_directory_table_entry *>(IntPtr); in initImportTablePtr()
552 uintptr_t IntPtr = 0; in initDelayImportTablePtr() local
553 if (std::error_code EC = getRvaPtr(RVA, IntPtr)) in initDelayImportTablePtr()
556 const delay_import_directory_table_entry *>(IntPtr); in initDelayImportTablePtr()
573 uintptr_t IntPtr = 0; in initExportTablePtr() local
[all …]
/external/zlib/src/contrib/dotzlib/DotZLib/
DGZipStream.cs21 private static extern IntPtr gzopen(string name, string mode); in gzopen()
24 private static extern int gzclose(IntPtr gzFile); in gzclose()
27 private static extern int gzwrite(IntPtr gzFile, int data, int length); in gzwrite()
30 private static extern int gzread(IntPtr gzFile, int data, int length); in gzread()
33 private static extern int gzgetc(IntPtr gzFile); in gzgetc()
36 private static extern int gzputc(IntPtr gzFile, int c); in gzputc()
41 private IntPtr _gzFile;
57 if (_gzFile == IntPtr.Zero) in GZipStream()
70 if (_gzFile == IntPtr.Zero) in GZipStream()
DDotZLib.cs32 public IntPtr next_in;
36 public IntPtr next_out;
/external/clang/test/SemaCXX/
Dwarn-cast-align.cpp20 typedef int *IntPtr; in test0() typedef
21 …c = IntPtr(P); // expected-warning {{cast from 'char *' to 'IntPtr' (aka 'int *') increases requir… in test0()
43 typedef int *IntPtr; in test1() typedef
44 c = IntPtr(P); in test1()
Dcomposite-pointer-type.cpp39 typedef int *IntPtr; in f2() typedef
40 typedef IntPtr *IntPtrPtr; in f2()
41 typedef IntPtr const *IntPtrConstPtr; in f2()
/external/llvm/lib/Target/AArch64/
DAArch64SelectionDAGInfo.cpp40 EVT IntPtr = TLI.getPointerTy(); in EmitTargetCodeForMemset() local
52 DAG.getExternalSymbol(bzeroEntry, IntPtr), std::move(Args), 0) in EmitTargetCodeForMemset()
/external/llvm/tools/llvm-objdump/
DCOFFDump.cpp245 uintptr_t IntPtr = 0; in printSEHTable() local
246 if (error(Obj->getVaPtr(TableVA, IntPtr))) in printSEHTable()
248 const support::ulittle32_t *P = (const support::ulittle32_t *)IntPtr; in printSEHTable()
270 uintptr_t IntPtr = 0; in printLoadConfiguration() local
273 if (error(Obj->getRvaPtr(DataDir->RelativeVirtualAddress, IntPtr))) in printLoadConfiguration()
276 auto *LoadConf = reinterpret_cast<const coff_load_configuration32 *>(IntPtr); in printLoadConfiguration()
/external/clang/test/CXX/dcl.dcl/dcl.spec/dcl.type/dcl.spec.auto/
Dp7-1y.cpp18 using IntPtr = int*; typedef
41 using IntPtr = decltype(x7a); typedef
/external/llvm/lib/CodeGen/
DIntrinsicLowering.cpp467 Type *IntPtr = DL.getIntPtrType(Context); in LowerIntrinsicCall() local
468 Value *Size = Builder.CreateIntCast(CI->getArgOperand(2), IntPtr, in LowerIntrinsicCall()
478 Type *IntPtr = DL.getIntPtrType(Context); in LowerIntrinsicCall() local
479 Value *Size = Builder.CreateIntCast(CI->getArgOperand(2), IntPtr, in LowerIntrinsicCall()
490 Type *IntPtr = DL.getIntPtrType(Op0->getType()); in LowerIntrinsicCall() local
491 Value *Size = Builder.CreateIntCast(CI->getArgOperand(2), IntPtr, in LowerIntrinsicCall()
/external/llvm/lib/Transforms/Scalar/
DLoopIdiomRecognize.cpp964 Type *IntPtr = Builder.getIntPtrTy(DL, DestAS); in processLoopStridedStore() local
965 BECount = SE->getTruncateOrZeroExtend(BECount, IntPtr); in processLoopStridedStore()
967 const SCEV *NumBytesS = SE->getAddExpr(BECount, SE->getConstant(IntPtr, 1), in processLoopStridedStore()
970 NumBytesS = SE->getMulExpr(NumBytesS, SE->getConstant(IntPtr, StoreSize), in processLoopStridedStore()
975 Expander.expandCodeFor(NumBytesS, IntPtr, Preheader->getTerminator()); in processLoopStridedStore()
992 IntPtr, in processLoopStridedStore()
/external/llvm/lib/Target/X86/
DX86SelectionDAGInfo.cpp84 EVT IntPtr = DAG.getTargetLoweringInfo().getPointerTy(); in EmitTargetCodeForMemset() local
97 DAG.getExternalSymbol(bzeroEntry, IntPtr), std::move(Args), in EmitTargetCodeForMemset()
/external/llvm/lib/Target/R600/
DAMDGPUISelDAGToDAG.cpp83 bool SelectGlobalValueConstantOffset(SDValue Addr, SDValue& IntPtr);
683 SDValue& IntPtr) { in SelectGlobalValueConstantOffset() argument
685 IntPtr = CurDAG->getIntPtrConstant(Cst->getZExtValue() / 4, true); in SelectGlobalValueConstantOffset()
/external/v8/src/compiler/
Draw-machine-assembler.h298 Node* IntPtr##name(Node* a, Node* b) { \
/external/llvm/lib/CodeGen/SelectionDAG/
DSelectionDAGBuilder.cpp3461 EVT IntPtr = TLI.getPointerTy(); in visitAlloca() local
3462 if (AllocSize.getValueType() != IntPtr) in visitAlloca()
3463 AllocSize = DAG.getZExtOrTrunc(AllocSize, getCurSDLoc(), IntPtr); in visitAlloca()
3465 AllocSize = DAG.getNode(ISD::MUL, getCurSDLoc(), IntPtr, in visitAlloca()
3467 DAG.getConstant(TySize, IntPtr)); in visitAlloca()