Lines Matching refs:mSourceOperandToOutputIndex
666 CHECK(mSourceOperandToOutputIndex.find(sourceOperandIndex) != in findModelOutputsThatAreDownstreamInputs()
667 mSourceOperandToOutputIndex.end()); in findModelOutputsThatAreDownstreamInputs()
669 mSourceOperandToOutputIndex.at(sourceOperandIndex)); in findModelOutputsThatAreDownstreamInputs()
999 mSourceOperandToOutputIndex[index] = i; in finish()
1185 mSourceOperandToOutputIndex(std::move(sourceOperandToOutputIndex)), in Controller()
1437 body->mSourceOperandToOutputIndex, body->mSourceOperandToBoundaryConstantCopy, in makeController()
1517 const auto& sourceOperandToOutputIndex = controller->mSourceOperandToOutputIndex; in getBuffer()
1627 controller->mSourceOperandToInputIndex, controller->mSourceOperandToOutputIndex, in nextCompound()
1646 mSourceOperandToOutputIndex.count(innerOperand) + in setInput()
1652 mSourceOperandToOutputIndex.erase(innerOperand); in setInput()
1660 } else if (auto it = mSourceOperandToOutputIndex.find(outerOperand); in setInput()
1661 it != mSourceOperandToOutputIndex.end()) { in setInput()
1662 mSourceOperandToOutputIndex.emplace(innerOperand, it->second); in setInput()
1679 mSourceOperandToOutputIndex.count(innerOperand), in setOutput()
1683 mSourceOperandToOutputIndex.erase(innerOperand); in setOutput()
1687 } else if (auto it = mSourceOperandToOutputIndex.find(outerOperand); in setOutput()
1688 it != mSourceOperandToOutputIndex.end()) { in setOutput()
1689 mSourceOperandToOutputIndex.emplace(innerOperand, it->second); in setOutput()
1828 CHECK_EQ(controller->mSourceOperandToOutputIndex.count(outputOperand), 0u); in nextCompound()