Home
last modified time | relevance | path

Searched refs:getPointer (Results 1 – 25 of 109) sorted by relevance

12345

/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/include/llvm/ADT/
DSmallBitVector.h94 BitVector *getPointer() const { in getPointer() function
157 switchToLarge(new BitVector(*RHS.getPointer())); in SmallBitVector()
166 delete getPointer(); in ~SmallBitVector()
188 return isSmall() ? getSmallSize() == 0 : getPointer()->empty(); in empty()
193 return isSmall() ? getSmallSize() : getPointer()->size(); in size()
202 return getPointer()->count(); in count()
209 return getPointer()->any(); in any()
216 return getPointer()->all(); in all()
223 return getPointer()->none(); in none()
234 return getPointer()->find_first(); in find_first()
[all …]
DFunctionExtras.h127 return CallbackAndInlineFlag.getPointer().template is<TrivialCallback *>(); in isTrivialCallback()
131 return CallbackAndInlineFlag.getPointer().template get<TrivialCallback *>()->CallPtr; in getTrivialCallback()
135 return CallbackAndInlineFlag.getPointer() in getNonTrivialCallbacks()
177 if (!CallbackAndInlineFlag.getPointer()) in ~unique_function()
286 return (bool)CallbackAndInlineFlag.getPointer();
DPointerIntPair.h59 PointerTy getPointer() const { return Info::getPointer(Value); } in getPointer() function
85 assert(Value == reinterpret_cast<intptr_t>(getPointer()) && in getAddrOfPointer()
166 static PointerT getPointer(intptr_t Value) {
DPointerUnion.h179 bool isNull() const { return !this->Val.getPointer(); }
196 return PointerLikeTypeTraits<T>::getFromVoidPointer(this->Val.getPointer());
219 this->Val.getPointer() &&
DOptional.h253 const T *getPointer() const { return &Storage.getValue(); } in getPointer() function
254 T *getPointer() { return &Storage.getValue(); } in getPointer() function
260 const T *operator->() const { return getPointer(); }
261 T *operator->() { return getPointer(); }
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Support/
DSourceMgr.cpp63 if (Loc.getPointer() >= Buffers[i].Buffer->getBufferStart() && in FindBufferContainingLoc()
66 Loc.getPointer() <= Buffers[i].Buffer->getBufferEnd()) in FindBufferContainingLoc()
131 const char *Ptr = Loc.getPointer(); in getLineAndColumn()
182 const char *LineStart = Loc.getPointer(); in GetMessage()
189 const char *LineEnd = Loc.getPointer(); in GetMessage()
202 if (R.Start.getPointer() > LineEnd || R.End.getPointer() < LineStart) in GetMessage()
206 if (R.Start.getPointer() < LineStart) in GetMessage()
208 if (R.End.getPointer() > LineEnd) in GetMessage()
213 ColRanges.push_back(std::make_pair(R.Start.getPointer()-LineStart, in GetMessage()
214 R.End.getPointer()-LineStart)); in GetMessage()
[all …]
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-subzero/include/llvm/Support/
DSourceMgr.h217 if (Range.Start.getPointer() != Other.Range.Start.getPointer())
218 return Range.Start.getPointer() < Other.Range.Start.getPointer();
219 if (Range.End.getPointer() != Other.Range.End.getPointer())
220 return Range.End.getPointer() < Other.Range.End.getPointer();
DMemoryObject.h56 virtual const uint8_t *getPointer(uint64_t address, uint64_t size) const = 0;
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-subzero/include/llvm/ADT/
DOptional.h119 const T* getPointer() const { assert(hasVal); return reinterpret_cast<const T*>(storage.buffer); } in getPointer() function
120 T* getPointer() { assert(hasVal); return reinterpret_cast<T*>(storage.buffer); } in getPointer() function
121 const T& getValue() const LLVM_LVALUE_FUNCTION { assert(hasVal); return *getPointer(); } in getValue()
122 T& getValue() LLVM_LVALUE_FUNCTION { assert(hasVal); return *getPointer(); } in getValue()
126 const T* operator->() const { return getPointer(); }
127 T* operator->() { return getPointer(); }
128 const T& operator*() const LLVM_LVALUE_FUNCTION { assert(hasVal); return *getPointer(); }
129 T& operator*() LLVM_LVALUE_FUNCTION { assert(hasVal); return *getPointer(); }
137 T&& getValue() && { assert(hasVal); return std::move(*getPointer()); } in getValue()
138 T&& operator*() && { assert(hasVal); return std::move(*getPointer()); }
DPointerIntPair.h56 PointerTy getPointer() const { return Info::getPointer(Value); } in getPointer() function
84 assert(Value == reinterpret_cast<intptr_t>(getPointer()) && in getAddrOfPointer()
147 static PointerT getPointer(intptr_t Value) { in getPointer() function
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/include/llvm/Support/
DSourceMgr.h251 if (Range.Start.getPointer() != Other.Range.Start.getPointer())
252 return Range.Start.getPointer() < Other.Range.Start.getPointer();
253 if (Range.End.getPointer() != Other.Range.End.getPointer())
254 return Range.End.getPointer() < Other.Range.End.getPointer();
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Transforms/IPO/
DCalledValuePropagation.cpp127 if (isa<Instruction>(Key.getPointer())) { in ComputeLatticeVal()
129 } else if (auto *A = dyn_cast<Argument>(Key.getPointer())) { in ComputeLatticeVal()
132 } else if (auto *C = dyn_cast<Constant>(Key.getPointer())) { in ComputeLatticeVal()
138 if (auto *GV = dyn_cast<GlobalVariable>(Key.getPointer())) { in ComputeLatticeVal()
141 } else if (auto *F = cast<Function>(Key.getPointer())) in ComputeLatticeVal()
212 if (isa<Function>(Key.getPointer())) in PrintLatticeKey()
213 OS << Key.getPointer()->getName(); in PrintLatticeKey()
215 OS << *Key.getPointer(); in PrintLatticeKey()
364 return Key.getPointer(); in getValueFromLatticeKey()
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Analysis/
DGlobalsModRef.cpp105 delete Info.getPointer(); in ~FunctionInfo()
112 if (const auto *ArgPtr = Arg.Info.getPointer()) in FunctionInfo()
116 : Info(Arg.Info.getPointer(), Arg.Info.getInt()) { in FunctionInfo()
120 delete Info.getPointer(); in operator =()
122 if (const auto *RHSPtr = RHS.Info.getPointer()) in operator =()
127 delete Info.getPointer(); in operator =()
128 Info.setPointerAndInt(RHS.Info.getPointer(), RHS.Info.getInt()); in operator =()
163 if (AlignedMap *P = Info.getPointer()) { in getModRefInfoForGlobal()
179 if (AlignedMap *P = FI.Info.getPointer()) in addFunctionInfo()
185 AlignedMap *P = Info.getPointer(); in addModRefInfoForGlobal()
[all …]
/third_party/skia/third_party/externals/swiftshader/third_party/subzero/pnacl-llvm/
DStreamingMemoryObject.cpp28 const uint8_t *getPointer(uint64_t address, uint64_t size) const override;
63 const uint8_t *RawMemoryObject::getPointer(uint64_t address, in getPointer() function in __anon570388d90111::RawMemoryObject
108 const uint8_t *StreamingMemoryObject::getPointer(uint64_t Address, in getPointer() function in llvm::StreamingMemoryObject
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/include/llvm/Analysis/
DPtrUseVisitor.h83 Instruction *getAbortingInst() const { return AbortedInfo.getPointer(); } in getAbortingInst()
88 Instruction *getEscapingInst() const { return EscapedInfo.getPointer(); } in getEscapingInst()
236 U = ToVisit.UseAndIsOffsetKnown.getPointer(); in visitPtr()
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/include/llvm/CodeGen/
DSlotIndexes.h118 assert(!lie.getPointer()->isPoisoned() &&
121 return lie.getPointer();
145 assert(lie.getPointer() != nullptr &&
152 return lie.getPointer();
198 return A.lie.getPointer() == B.lie.getPointer();
DDIE.h503 return Next.getInt() ? nullptr : Next.getPointer(); in getNext()
515 assert(N.Next.getPointer() == &N && "Expected unlinked node"); in push_back()
526 assert(N.Next.getPointer() == &N && "Expected unlinked node"); in push_front()
530 N.Next.setPointerAndInt(Last->Next.getPointer(), false); in push_front()
547 return *static_cast<T *>(Last ? Last->Next.getPointer() : nullptr); in front()
550 return *static_cast<T *>(Last ? Last->Next.getPointer() : nullptr); in front()
608 return Last ? iterator(static_cast<T *>(Last->Next.getPointer())) : end(); in begin()
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Transforms/Scalar/
DLoopRotation.cpp50 MSSAU.hasValue() ? MSSAU.getPointer() : nullptr, in run()
109 MSSAU.hasValue() ? MSSAU.getPointer() : nullptr, SQ, in runOnLoop()
DLoopInstSimplify.cpp206 MSSAU.hasValue() ? MSSAU.getPointer() : nullptr); in runOnLoop()
234 MSSAU.hasValue() ? MSSAU.getPointer() : nullptr)) in run()
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/MC/MCParser/
DAsmParser.cpp824 Loc.getPointer()); in jumpToLoc()
1017 const char *Start = getTok().getLoc().getPointer(); in parseStringToEndOfStatement()
1022 const char *End = getTok().getLoc().getPointer(); in parseStringToEndOfStatement()
1027 const char *Start = getTok().getLoc().getPointer(); in parseStringToComma()
1033 const char *End = getTok().getLoc().getPointer(); in parseStringToComma()
1369 assert((StrLoc.getPointer() != nullptr) && in isAltmacroString()
1371 const char *CharPtr = StrLoc.getPointer(); in isAltmacroString()
2291 AsmStrRewrites.emplace_back(AOK_Skip, StartLoc, Lexer.getLoc().getPointer() - in parseCurlyBlockScope()
2292 StartLoc.getPointer()); in parseCurlyBlockScope()
2687 const char *StrChar = StrLoc.getPointer(); in parseMacroArguments()
[all …]
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/include/llvm/ExecutionEngine/Orc/
DSpeculation.h97 const auto &ImplSymbolName = ImplSymbol.getPointer()->first; in launchCompile()
98 JITDylib *ImplJD = ImplSymbol.getPointer()->second; in launchCompile()
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/DebugInfo/PDB/Native/
DNativeTypeUDT.cpp22 Class(std::move(CR)), Tag(Class.getPointer()) {} in NativeTypeUDT()
27 Union(std::move(UR)), Tag(Union.getPointer()) {} in NativeTypeUDT()
/third_party/skia/third_party/externals/swiftshader/third_party/subzero/pnacl-llvm/include/llvm/Support/
DMemoryObject.h56 virtual const uint8_t *getPointer(uint64_t address, uint64_t size) const = 0;
/third_party/skia/third_party/externals/swiftshader/src/Vulkan/
DVkBufferView.cpp37 void *BufferView::getPointer() const in getPointer() function in vk::BufferView
DVkBufferView.hpp36 void *getPointer() const;

12345