/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/include/llvm/ADT/ |
D | SmallBitVector.h | 94 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 …]
|
D | FunctionExtras.h | 127 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();
|
D | PointerIntPair.h | 59 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) {
|
D | PointerUnion.h | 179 bool isNull() const { return !this->Val.getPointer(); } 196 return PointerLikeTypeTraits<T>::getFromVoidPointer(this->Val.getPointer()); 219 this->Val.getPointer() &&
|
D | Optional.h | 253 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/ |
D | SourceMgr.cpp | 63 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/ |
D | SourceMgr.h | 217 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();
|
D | MemoryObject.h | 56 virtual const uint8_t *getPointer(uint64_t address, uint64_t size) const = 0;
|
D | SMLoc.h | 35 const char *getPointer() const { return Ptr; } in getPointer() function
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-subzero/include/llvm/ADT/ |
D | Optional.h | 119 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()); }
|
D | PointerIntPair.h | 56 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/ |
D | SourceMgr.h | 251 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();
|
D | SMLoc.h | 34 const char *getPointer() const { return Ptr; } in getPointer() function
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Transforms/IPO/ |
D | CalledValuePropagation.cpp | 127 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/subzero/pnacl-llvm/ |
D | StreamingMemoryObject.cpp | 28 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 __anona6b1c4ee0111::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/lib/Analysis/ |
D | GlobalsModRef.cpp | 105 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/llvm-10.0/llvm/include/llvm/Analysis/ |
D | PtrUseVisitor.h | 83 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/ |
D | SlotIndexes.h | 118 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();
|
D | DIE.h | 503 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/ |
D | LoopRotation.cpp | 50 MSSAU.hasValue() ? MSSAU.getPointer() : nullptr, in run() 109 MSSAU.hasValue() ? MSSAU.getPointer() : nullptr, SQ, in runOnLoop()
|
D | LoopInstSimplify.cpp | 206 MSSAU.hasValue() ? MSSAU.getPointer() : nullptr); in runOnLoop() 234 MSSAU.hasValue() ? MSSAU.getPointer() : nullptr)) in run()
|
/third_party/skia/third_party/externals/swiftshader/third_party/subzero/pnacl-llvm/include/llvm/Support/ |
D | MemoryObject.h | 56 virtual const uint8_t *getPointer(uint64_t address, uint64_t size) const = 0;
|
/third_party/skia/third_party/externals/swiftshader/src/Vulkan/ |
D | VkBufferView.cpp | 37 void *BufferView::getPointer() const in getPointer() function in vk::BufferView
|
D | VkBufferView.hpp | 36 void *getPointer() const;
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/include/llvm/ExecutionEngine/Orc/ |
D | Speculation.h | 97 const auto &ImplSymbolName = ImplSymbol.getPointer()->first; in launchCompile() 98 JITDylib *ImplJD = ImplSymbol.getPointer()->second; in launchCompile()
|