Searched refs:RHSSize (Results 1 – 11 of 11) sorted by relevance
/external/swiftshader/third_party/llvm-7.0/llvm/include/llvm/ADT/ |
D | SmallVector.h | 723 size_t RHSSize = RHS.size(); 725 if (CurSize >= RHSSize) { 728 if (RHSSize) 729 NewEnd = std::copy(RHS.begin(), RHS.begin()+RHSSize, this->begin()); 737 this->set_size(RHSSize); 744 if (this->capacity() < RHSSize) { 749 this->grow(RHSSize); 760 this->set_size(RHSSize); 782 size_t RHSSize = RHS.size(); 784 if (CurSize >= RHSSize) { [all …]
|
/external/llvm/include/llvm/ADT/ |
D | SmallVector.h | 718 size_t RHSSize = RHS.size(); 720 if (CurSize >= RHSSize) { 723 if (RHSSize) 724 NewEnd = std::copy(RHS.begin(), RHS.begin()+RHSSize, this->begin()); 739 if (this->capacity() < RHSSize) { 744 this->grow(RHSSize); 755 this->setEnd(this->begin()+RHSSize); 777 size_t RHSSize = RHS.size(); 779 if (CurSize >= RHSSize) { 782 if (RHSSize) [all …]
|
/external/swiftshader/third_party/llvm-subzero/include/llvm/ADT/ |
D | SmallVector.h | 720 size_t RHSSize = RHS.size(); 722 if (CurSize >= RHSSize) { 725 if (RHSSize) 726 NewEnd = std::copy(RHS.begin(), RHS.begin()+RHSSize, this->begin()); 741 if (this->capacity() < RHSSize) { 746 this->grow(RHSSize); 757 this->setEnd(this->begin()+RHSSize); 779 size_t RHSSize = RHS.size(); 781 if (CurSize >= RHSSize) { 784 if (RHSSize) [all …]
|
/external/swiftshader/third_party/LLVM/utils/TableGen/ |
D | DAGISelEmitter.cpp | 86 unsigned RHSSize = RHS->getPatternComplexity(CGP); in operator ()() local 87 if (LHSSize > RHSSize) return true; // LHS -> bigger -> less cost in operator ()() 88 if (LHSSize < RHSSize) return false; in operator ()()
|
D | IntrinsicEmitter.cpp | 288 unsigned RHSSize = RHSVec->size(); in operator ()() local 292 if (i == RHSSize) return false; // RHS is shorter than LHS. in operator ()() 297 if (i != RHSSize) return true; in operator ()() 302 RHSSize = RHSVec->size(); in operator ()() 306 if (i == RHSSize) return false; // RHS is shorter than LHS. in operator ()() 311 return i != RHSSize; in operator ()()
|
/external/swiftshader/third_party/llvm-7.0/llvm/utils/TableGen/ |
D | DAGISelEmitter.cpp | 98 int RHSSize = RHS->getPatternComplexity(CGP); in operator ()() local 99 if (LHSSize > RHSSize) return true; // LHS -> bigger -> less cost in operator ()() 100 if (LHSSize < RHSSize) return false; in operator ()()
|
/external/llvm/utils/TableGen/ |
D | DAGISelEmitter.cpp | 98 int RHSSize = RHS->getPatternComplexity(CGP); in operator ()() local 99 if (LHSSize > RHSSize) return true; // LHS -> bigger -> less cost in operator ()() 100 if (LHSSize < RHSSize) return false; in operator ()()
|
/external/swiftshader/third_party/LLVM/include/llvm/ADT/ |
D | SmallVector.h | 612 size_t RHSSize = RHS.size(); 614 if (CurSize >= RHSSize) { 617 if (RHSSize) 618 NewEnd = std::copy(RHS.begin(), RHS.begin()+RHSSize, this->begin()); 632 if (this->capacity() < RHSSize) { 637 this->grow(RHSSize); 648 this->setEnd(this->begin()+RHSSize);
|
/external/swiftshader/third_party/llvm-7.0/llvm/lib/Analysis/ |
D | CFLAndersAliasAnalysis.cpp | 521 LocationSize RHSSize) const { in mayAlias() 562 RHSSize == MemoryLocation::UnknownSize) in mayAlias() 576 if (LLVM_UNLIKELY(LHSSize > INT64_MAX || RHSSize > INT64_MAX)) in mayAlias() 583 auto RHSEnd = static_cast<int64_t>(RHSSize); in mayAlias()
|
D | InstructionSimplify.cpp | 2227 uint64_t LHSSize, RHSSize; in computePointerICmp() local 2233 getObjectSize(RHS, RHSSize, DL, TLI, Opts)) { in computePointerICmp() 2239 RHSOffsetValue.ult(RHSSize)) { in computePointerICmp()
|
/external/llvm/lib/Analysis/ |
D | InstructionSimplify.cpp | 2059 uint64_t LHSSize, RHSSize; in computePointerICmp() local 2062 getObjectSize(RHS, RHSSize, DL, TLI)) { in computePointerICmp() 2068 RHSOffsetValue.ult(RHSSize)) { in computePointerICmp()
|