Home
last modified time | relevance | path

Searched refs:NumLeft (Results 1 – 3 of 3) sorted by relevance

/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Transforms/Vectorize/
DLoadStoreVectorizer.cpp590 unsigned NumLeft = (SizeBytes - (SizeBytes % 4)) / ElementSizeBytes; in splitOddVectorElts() local
591 if (NumLeft == Chain.size()) { in splitOddVectorElts()
592 if ((NumLeft & 1) == 0) in splitOddVectorElts()
593 NumLeft /= 2; // Split even in half in splitOddVectorElts()
595 --NumLeft; // Split off last element in splitOddVectorElts()
596 } else if (NumLeft == 0) in splitOddVectorElts()
597 NumLeft = 1; in splitOddVectorElts()
598 return std::make_pair(Chain.slice(0, NumLeft), Chain.slice(NumLeft)); in splitOddVectorElts()
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/CodeGen/SelectionDAG/
DScheduleDAGFast.cpp674 if (unsigned NumLeft = NumOps) { in ScheduleNode() local
677 const SDValue &Op = N->getOperand(NumLeft-1); in ScheduleNode()
680 if (NumLeft == NumOps && Op.getValueType() == MVT::Glue) { in ScheduleNode()
703 } while (--NumLeft); in ScheduleNode()
DSelectionDAGBuilder.cpp10384 unsigned NumLeft = LastLeft - W.FirstCluster + 1; in splitWorkItem() local
10387 if (std::min(NumLeft, NumRight) < 3 && std::max(NumLeft, NumRight) > 3) { in splitWorkItem()
10391 if (NumLeft < NumRight) { in splitWorkItem()
10403 assert(NumRight < NumLeft); in splitWorkItem()