Searched refs:BeginIndex (Results 1 – 6 of 6) sorted by relevance
/external/clang/lib/ASTMatchers/Dynamic/ |
D | Diagnostics.cpp | 43 : Error(Error), BeginIndex(Error->Errors.size()) {} in OverloadContext() 47 if (BeginIndex < Error->Errors.size()) { in ~OverloadContext() 48 Diagnostics::ErrorContent &Dest = Error->Errors[BeginIndex]; in ~OverloadContext() 49 for (size_t i = BeginIndex + 1, e = Error->Errors.size(); i < e; ++i) { in ~OverloadContext() 52 Error->Errors.resize(BeginIndex + 1); in ~OverloadContext() 58 Error->Errors.resize(BeginIndex); in revertErrors()
|
/external/swiftshader/third_party/llvm-7.0/llvm/lib/Transforms/Scalar/ |
D | SROA.cpp | 1783 uint64_t BeginIndex = BeginOffset / ElementSize; in isVectorPromotionViableForSlice() local 1784 if (BeginIndex * ElementSize != BeginOffset || in isVectorPromotionViableForSlice() 1785 BeginIndex >= Ty->getNumElements()) in isVectorPromotionViableForSlice() 1793 assert(EndIndex > BeginIndex && "Empty vector!"); in isVectorPromotionViableForSlice() 1794 uint64_t NumElements = EndIndex - BeginIndex; in isVectorPromotionViableForSlice() 2144 static Value *extractVector(IRBuilderTy &IRB, Value *V, unsigned BeginIndex, in extractVector() argument 2147 unsigned NumElements = EndIndex - BeginIndex; in extractVector() 2154 V = IRB.CreateExtractElement(V, IRB.getInt32(BeginIndex), in extractVector() 2162 for (unsigned i = BeginIndex; i != EndIndex; ++i) in extractVector() 2171 unsigned BeginIndex, const Twine &Name) { in insertVector() argument [all …]
|
/external/llvm/lib/Transforms/Scalar/ |
D | SROA.cpp | 1715 uint64_t BeginIndex = BeginOffset / ElementSize; in isVectorPromotionViableForSlice() local 1716 if (BeginIndex * ElementSize != BeginOffset || in isVectorPromotionViableForSlice() 1717 BeginIndex >= Ty->getNumElements()) in isVectorPromotionViableForSlice() 1725 assert(EndIndex > BeginIndex && "Empty vector!"); in isVectorPromotionViableForSlice() 1726 uint64_t NumElements = EndIndex - BeginIndex; in isVectorPromotionViableForSlice() 2066 static Value *extractVector(IRBuilderTy &IRB, Value *V, unsigned BeginIndex, in extractVector() argument 2069 unsigned NumElements = EndIndex - BeginIndex; in extractVector() 2076 V = IRB.CreateExtractElement(V, IRB.getInt32(BeginIndex), in extractVector() 2084 for (unsigned i = BeginIndex; i != EndIndex; ++i) in extractVector() 2093 unsigned BeginIndex, const Twine &Name) { in insertVector() argument [all …]
|
/external/clang/include/clang/ASTMatchers/Dynamic/ |
D | Diagnostics.h | 132 unsigned BeginIndex; member
|
/external/swiftshader/third_party/llvm-7.0/llvm/include/llvm/IR/ |
D | InstrTypes.h | 1647 const unsigned BeginIndex) { 1648 auto It = static_cast<InstrTy *>(this)->op_begin() + BeginIndex; 1654 unsigned CurrentIndex = BeginIndex;
|
/external/llvm/include/llvm/IR/ |
D | InstrTypes.h | 1601 const unsigned BeginIndex) { 1602 auto It = static_cast<InstrTy *>(this)->op_begin() + BeginIndex; 1608 unsigned CurrentIndex = BeginIndex;
|