Searched refs:Ptr (Results 201 - 225 of 507) sorted by relevance

1234567891011>>

/external/chromium_org/third_party/sfntly/cpp/src/sfntly/table/truetype/
H A Dglyph_table.h108 typedef Ptr<GlyphTable::Glyph::Builder> GlyphBuilderPtr;
326 typedef Ptr<GlyphTable> GlyphTablePtr;
327 typedef Ptr<GlyphTable::Builder> GlyphTableBuilderPtr;
329 typedef Ptr<GlyphTable::Glyph> GlyphPtr;
330 typedef Ptr<GlyphTable::Glyph::Builder> GlyphBuilderPtr;
/external/llvm/include/llvm/MC/
H A DMCContext.h423 void Deallocate(void *Ptr) { argument
451 /// @c Context.Deallocate(Ptr).
468 inline void operator delete(void *Ptr, llvm::MCContext &C, size_t) argument
470 C.Deallocate(Ptr);
485 /// @c Context.Deallocate(Ptr).
503 inline void operator delete[](void *Ptr, llvm::MCContext &C) throw () { argument
504 C.Deallocate(Ptr);
/external/sfntly/cpp/src/sfntly/table/truetype/
H A Dglyph_table.h108 typedef Ptr<GlyphTable::Glyph::Builder> GlyphBuilderPtr;
326 typedef Ptr<GlyphTable> GlyphTablePtr;
327 typedef Ptr<GlyphTable::Builder> GlyphTableBuilderPtr;
329 typedef Ptr<GlyphTable::Glyph> GlyphPtr;
330 typedef Ptr<GlyphTable::Glyph::Builder> GlyphBuilderPtr;
/external/llvm/lib/Analysis/
H A DConstantFolding.cpp711 static Constant* StripPtrCastKeepAS(Constant* Ptr) { argument
712 assert(Ptr->getType()->isPointerTy() && "Not a pointer type");
713 PointerType *OldPtrTy = cast<PointerType>(Ptr->getType());
714 Ptr = Ptr->stripPointerCasts();
715 PointerType *NewPtrTy = cast<PointerType>(Ptr->getType());
721 Ptr = ConstantExpr::getPointerCast(Ptr, NewPtrTy);
723 return Ptr;
731 Constant *Ptr local
[all...]
/external/llvm/lib/IR/
H A DInstructions.cpp929 "Ptr must have pointer type.");
934 LoadInst::LoadInst(Value *Ptr, const Twine &Name, Instruction *InsertBef) argument
935 : UnaryInstruction(cast<PointerType>(Ptr->getType())->getElementType(),
936 Load, Ptr, InsertBef) {
944 LoadInst::LoadInst(Value *Ptr, const Twine &Name, BasicBlock *InsertAE) argument
945 : UnaryInstruction(cast<PointerType>(Ptr->getType())->getElementType(),
946 Load, Ptr, InsertAE) {
954 LoadInst::LoadInst(Value *Ptr, const Twine &Name, bool isVolatile, argument
956 : UnaryInstruction(cast<PointerType>(Ptr->getType())->getElementType(),
957 Load, Ptr, InsertBe
965 LoadInst(Value *Ptr, const Twine &Name, bool isVolatile, BasicBlock *InsertAE) argument
976 LoadInst(Value *Ptr, const Twine &Name, bool isVolatile, unsigned Align, Instruction *InsertBef) argument
987 LoadInst(Value *Ptr, const Twine &Name, bool isVolatile, unsigned Align, BasicBlock *InsertAE) argument
998 LoadInst(Value *Ptr, const Twine &Name, bool isVolatile, unsigned Align, AtomicOrdering Order, SynchronizationScope SynchScope, Instruction *InsertBef) argument
1011 LoadInst(Value *Ptr, const Twine &Name, bool isVolatile, unsigned Align, AtomicOrdering Order, SynchronizationScope SynchScope, BasicBlock *InsertAE) argument
1024 LoadInst(Value *Ptr, const char *Name, Instruction *InsertBef) argument
1034 LoadInst(Value *Ptr, const char *Name, BasicBlock *InsertAE) argument
1044 LoadInst(Value *Ptr, const char *Name, bool isVolatile, Instruction *InsertBef) argument
1055 LoadInst(Value *Ptr, const char *Name, bool isVolatile, BasicBlock *InsertAE) argument
1218 Init(Value *Ptr, Value *Cmp, Value *NewVal, AtomicOrdering SuccessOrdering, AtomicOrdering FailureOrdering, SynchronizationScope SynchScope) argument
1249 AtomicCmpXchgInst(Value *Ptr, Value *Cmp, Value *NewVal, AtomicOrdering SuccessOrdering, AtomicOrdering FailureOrdering, SynchronizationScope SynchScope, Instruction *InsertBefore) argument
1262 AtomicCmpXchgInst(Value *Ptr, Value *Cmp, Value *NewVal, AtomicOrdering SuccessOrdering, AtomicOrdering FailureOrdering, SynchronizationScope SynchScope, BasicBlock *InsertAtEnd) argument
1279 Init(BinOp Operation, Value *Ptr, Value *Val, AtomicOrdering Ordering, SynchronizationScope SynchScope) argument
1299 AtomicRMWInst(BinOp Operation, Value *Ptr, Value *Val, AtomicOrdering Ordering, SynchronizationScope SynchScope, Instruction *InsertBefore) argument
1310 AtomicRMWInst(BinOp Operation, Value *Ptr, Value *Val, AtomicOrdering Ordering, SynchronizationScope SynchScope, BasicBlock *InsertAtEnd) argument
1345 init(Value *Ptr, ArrayRef<Value *> IdxList, const Twine &Name) argument
1372 getIndexedTypeInternal(Type *Ptr, ArrayRef<IndexTy> IdxList) argument
1397 getIndexedType(Type *Ptr, ArrayRef<Value *> IdxList) argument
1401 getIndexedType(Type *Ptr, ArrayRef<Constant *> IdxList) argument
1406 getIndexedType(Type *Ptr, ArrayRef<uint64_t> IdxList) argument
[all...]
/external/llvm/lib/ExecutionEngine/
H A DExecutionEngine.cpp1031 GenericValue *Ptr, Type *Ty) {
1039 StoreIntToMemory(Val.IntVal, (uint8_t*)Ptr, StoreBytes);
1042 *((float*)Ptr) = Val.FloatVal;
1045 *((double*)Ptr) = Val.DoubleVal;
1048 memcpy(Ptr, Val.IntVal.getRawData(), 10);
1053 memset(&(Ptr->PointerVal), 0, StoreBytes);
1055 *((PointerTy*)Ptr) = Val.PointerVal;
1060 *(((double*)Ptr)+i) = Val.AggregateVal[i].DoubleVal;
1062 *(((float*)Ptr)+i) = Val.AggregateVal[i].FloatVal;
1066 (uint8_t*)Ptr
1030 StoreValueToMemory(const GenericValue &Val, GenericValue *Ptr, Type *Ty) argument
1106 LoadValueFromMemory(GenericValue &Result, GenericValue *Ptr, Type *Ty) argument
1298 void *Ptr = getPointerToGlobalIfAvailable(CGV); local
[all...]
/external/llvm/utils/FileCheck/
H A DFileCheck.cpp632 for (const char *Ptr = MB->getBufferStart(), *End = MB->getBufferEnd();
633 Ptr != End; ++Ptr) {
635 if (Ptr <= End - 2 && Ptr[0] == '\r' && Ptr[1] == '\n') {
641 if (PreserveHorizontal || (*Ptr != ' ' && *Ptr != '\t')) {
642 NewFile.push_back(*Ptr);
648 while (Ptr
[all...]
/external/llvm/include/llvm/IR/
H A DInstructions.h157 LoadInst(Value *Ptr, const Twine &NameStr, Instruction *InsertBefore);
158 LoadInst(Value *Ptr, const Twine &NameStr, BasicBlock *InsertAtEnd);
159 LoadInst(Value *Ptr, const Twine &NameStr, bool isVolatile = false,
161 LoadInst(Value *Ptr, const Twine &NameStr, bool isVolatile,
163 LoadInst(Value *Ptr, const Twine &NameStr, bool isVolatile,
165 LoadInst(Value *Ptr, const Twine &NameStr, bool isVolatile,
167 LoadInst(Value *Ptr, const Twine &NameStr, bool isVolatile,
171 LoadInst(Value *Ptr, const Twine &NameStr, bool isVolatile,
176 LoadInst(Value *Ptr, const char *NameStr, Instruction *InsertBefore);
177 LoadInst(Value *Ptr, cons
792 Create(Value *Ptr, ArrayRef<Value *> IdxList, const Twine &NameStr = �, Instruction *InsertBefore = nullptr) argument
799 Create(Value *Ptr, ArrayRef<Value *> IdxList, const Twine &NameStr, BasicBlock *InsertAtEnd) argument
809 CreateInBounds(Value *Ptr, ArrayRef<Value *> IdxList, const Twine &NameStr = �, Instruction *InsertBefore = nullptr) argument
817 CreateInBounds(Value *Ptr, ArrayRef<Value *> IdxList, const Twine &NameStr, BasicBlock *InsertAtEnd) argument
879 getGEPReturnType(Value *Ptr, ArrayRef<Value *> IdxList) argument
942 GetElementPtrInst(Value *Ptr, ArrayRef<Value *> IdxList, unsigned Values, const Twine &NameStr, Instruction *InsertBefore) argument
953 GetElementPtrInst(Value *Ptr, ArrayRef<Value *> IdxList, unsigned Values, const Twine &NameStr, BasicBlock *InsertAtEnd) argument
[all...]
/external/llvm/lib/Transforms/Scalar/
H A DSROA.cpp839 Value *Ptr; variable
841 Ptr = LI->getOperand(0);
843 Ptr = cast<StoreInst>(I)->getPointerOperand();
850 if (Ptr == &AI)
853 if (BitCastInst *BCI = dyn_cast<BitCastInst>(Ptr))
854 Ptr = BCI->getOperand(0);
855 else if (GetElementPtrInst *GEPI = dyn_cast<GetElementPtrInst>(Ptr))
856 Ptr = GEPI->getPointerOperand();
860 } while (Visited.insert(Ptr));
1330 Value *Ptr, Typ
1329 getNaturalGEPRecursively(IRBuilderTy &IRB, const DataLayout &DL, Value *Ptr, Type *Ty, APInt &Offset, Type *TargetTy, SmallVectorImpl<Value *> &Indices, Twine NamePrefix) argument
1402 getNaturalGEPWithOffset(IRBuilderTy &IRB, const DataLayout &DL, Value *Ptr, APInt Offset, Type *TargetTy, SmallVectorImpl<Value *> &Indices, Twine NamePrefix) argument
1442 getAdjustedPtr(IRBuilderTy &IRB, const DataLayout &DL, Value *Ptr, APInt Offset, Type *PointerTy, Twine NamePrefix) argument
2678 Value *Ptr = getNewAllocaSlicePtr(IRB, OldPtr->getType()); local
2808 Value *Ptr; member in class:__anon26330::AggLoadStoreRewriter::OpSplitter
2812 OpSplitter(Instruction *InsertionPoint, Value *Ptr) argument
2868 LoadOpSplitter(Instruction *InsertionPoint, Value *Ptr) argument
2899 StoreOpSplitter(Instruction *InsertionPoint, Value *Ptr) argument
[all...]
/external/chromium_org/mojo/public/cpp/bindings/
H A Dstruct_ptr.h19 template <typename Ptr>
20 static void Initialize(Ptr* ptr) { ptr->Initialize(); }
/external/chromium_org/third_party/sfntly/cpp/src/sfntly/table/bitmap/
H A Dbitmap_size_table.h166 typedef Ptr<BitmapSizeTable> BitmapSizeTablePtr;
168 typedef Ptr<BitmapSizeTable::Builder> BitmapSizeTableBuilderPtr;
H A Deblc_table.h190 typedef Ptr<EblcTable> EblcTablePtr;
191 typedef Ptr<EblcTable::Builder> EblcTableBuilderPtr;
H A Dindex_sub_table_format4.h129 typedef Ptr<IndexSubTableFormat4> IndexSubTableFormat4Ptr;
130 typedef Ptr<IndexSubTableFormat4::Builder> IndexSubTableFormat4BuilderPtr;
/external/chromium_org/third_party/sfntly/cpp/src/sfntly/table/core/
H A Dcmap_table.h211 typedef Ptr<CMap> CMapPtr;
212 typedef Ptr<CMap::Builder> CMapBuilderPtr;
356 std::vector<Ptr<Segment> >*
357 DeepCopy(std::vector<Ptr<Segment> >* original);
365 typedef std::vector<Ptr<Segment> > SegmentList;
536 typedef Ptr<Builder> CMapTableBuilderPtr;
705 typedef Ptr<CMapTable> CMapTablePtr;
706 typedef std::vector<Ptr<CMapTable::CMapFormat4::Builder::Segment> > SegmentList;
H A Dfont_header_table.h163 typedef Ptr<FontHeaderTable> FontHeaderTablePtr;
164 typedef Ptr<FontHeaderTable::Builder> FontHeaderTableBuilderPtr;
/external/clang/test/SemaCXX/
H A Dexplicit.cpp211 struct Ptr { struct
218 Ptr p;
/external/llvm/lib/Support/Windows/
H A DRWMutex.inc31 PVOID Ptr;
/external/sfntly/cpp/src/sfntly/table/bitmap/
H A Dbitmap_size_table.h166 typedef Ptr<BitmapSizeTable> BitmapSizeTablePtr;
168 typedef Ptr<BitmapSizeTable::Builder> BitmapSizeTableBuilderPtr;
H A Deblc_table.h190 typedef Ptr<EblcTable> EblcTablePtr;
191 typedef Ptr<EblcTable::Builder> EblcTableBuilderPtr;
H A Dindex_sub_table_format4.h129 typedef Ptr<IndexSubTableFormat4> IndexSubTableFormat4Ptr;
130 typedef Ptr<IndexSubTableFormat4::Builder> IndexSubTableFormat4BuilderPtr;
/external/sfntly/cpp/src/sfntly/table/core/
H A Dcmap_table.h211 typedef Ptr<CMap> CMapPtr;
212 typedef Ptr<CMap::Builder> CMapBuilderPtr;
356 std::vector<Ptr<Segment> >*
357 DeepCopy(std::vector<Ptr<Segment> >* original);
365 typedef std::vector<Ptr<Segment> > SegmentList;
536 typedef Ptr<Builder> CMapTableBuilderPtr;
705 typedef Ptr<CMapTable> CMapTablePtr;
706 typedef std::vector<Ptr<CMapTable::CMapFormat4::Builder::Segment> > SegmentList;
H A Dfont_header_table.h163 typedef Ptr<FontHeaderTable> FontHeaderTablePtr;
164 typedef Ptr<FontHeaderTable::Builder> FontHeaderTableBuilderPtr;
/external/chromium_org/third_party/WebKit/Source/wtf/
H A DTerminatedArray.h74 typedef OwnPtr<TerminatedArray> Ptr; typedef in struct:WTF::TerminatedArray::Allocator
H A DTerminatedArrayBuilder.h70 typename ArrayType<T>::Allocator::Ptr m_array;
/external/chromium_org/third_party/sfntly/cpp/src/sample/subtly/
H A Dstats.cc53 Ptr<FontDataTable> new_table = new_font->GetTable(it->first);

Completed in 623 milliseconds

1234567891011>>