• Home
  • Raw
  • Download

Lines Matching refs:mSourceOperandToOutputIndex

626                 CHECK(mSourceOperandToOutputIndex.find(sourceOperandIndex) !=  in findModelOutputsThatAreDownstreamInputs()
627 mSourceOperandToOutputIndex.end()); in findModelOutputsThatAreDownstreamInputs()
629 mSourceOperandToOutputIndex.at(sourceOperandIndex)); in findModelOutputsThatAreDownstreamInputs()
955 mSourceOperandToOutputIndex[index] = i; in finish()
1133 mSourceOperandToOutputIndex(std::move(sourceOperandToOutputIndex)), in Controller()
1385 body->mSourceOperandToOutputIndex, body->mSourceOperandToBoundaryConstantCopy, in makeController()
1465 const auto& sourceOperandToOutputIndex = controller->mSourceOperandToOutputIndex; in getBuffer()
1575 controller->mSourceOperandToInputIndex, controller->mSourceOperandToOutputIndex, in nextCompound()
1594 mSourceOperandToOutputIndex.count(innerOperand) + in setInput()
1600 mSourceOperandToOutputIndex.erase(innerOperand); in setInput()
1608 } else if (auto it = mSourceOperandToOutputIndex.find(outerOperand); in setInput()
1609 it != mSourceOperandToOutputIndex.end()) { in setInput()
1610 mSourceOperandToOutputIndex.emplace(innerOperand, it->second); in setInput()
1627 mSourceOperandToOutputIndex.count(innerOperand), in setOutput()
1631 mSourceOperandToOutputIndex.erase(innerOperand); in setOutput()
1635 } else if (auto it = mSourceOperandToOutputIndex.find(outerOperand); in setOutput()
1636 it != mSourceOperandToOutputIndex.end()) { in setOutput()
1637 mSourceOperandToOutputIndex.emplace(innerOperand, it->second); in setOutput()
1776 CHECK_EQ(controller->mSourceOperandToOutputIndex.count(outputOperand), 0u); in nextCompound()