HomeSort by relevance Sort by last modified time
    Searched refs:RHSSize (Results 1 - 6 of 6) sorted by null

  /external/llvm/utils/TableGen/
DAGISelEmitter.cpp 98 int RHSSize = RHS->getPatternComplexity(CGP);
99 if (LHSSize > RHSSize) return true; // LHS -> bigger -> less cost
100 if (LHSSize < RHSSize) return false;
  /external/swiftshader/third_party/LLVM/utils/TableGen/
DAGISelEmitter.cpp 86 unsigned RHSSize = RHS->getPatternComplexity(CGP);
87 if (LHSSize > RHSSize) return true; // LHS -> bigger -> less cost
88 if (LHSSize < RHSSize) return false;
IntrinsicEmitter.cpp 288 unsigned RHSSize = RHSVec->size();
292 if (i == RHSSize) return false; // RHS is shorter than LHS.
297 if (i != RHSSize) return true;
302 RHSSize = RHSVec->size();
306 if (i == RHSSize) return false; // RHS is shorter than LHS.
311 return i != RHSSize;
  /external/llvm/include/llvm/ADT/
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/include/llvm/ADT/
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/llvm/lib/Analysis/
InstructionSimplify.cpp     [all...]

Completed in 991 milliseconds