HomeSort by: relevance | last modified time | path
    Searched defs:NumLeft (Results 1 - 2 of 2) sorted by relevancy

  /src/external/apache2/llvm/dist/llvm/lib/Transforms/Vectorize/
LoadStoreVectorizer.cpp 635 unsigned NumLeft = (SizeBytes - (SizeBytes % 4)) / ElementSizeBytes;
636 if (NumLeft == Chain.size()) {
637 if ((NumLeft & 1) == 0)
638 NumLeft /= 2; // Split even in half
640 --NumLeft; // Split off last element
641 } else if (NumLeft == 0)
642 NumLeft = 1;
643 return std::make_pair(Chain.slice(0, NumLeft), Chain.slice(NumLeft));
  /src/external/apache2/llvm/dist/llvm/lib/CodeGen/SelectionDAG/
SelectionDAGBuilder.cpp 10765 unsigned NumLeft = LastLeft - W.FirstCluster + 1;
10768 if (std::min(NumLeft, NumRight) < 3 && std::max(NumLeft, NumRight) > 3) {
10772 if (NumLeft < NumRight) {
10784 assert(NumRight < NumLeft);

Completed in 93 milliseconds