Lines Matching refs:innerOperand

1640                                          const SourceOperandIndex& innerOperand) {  in setInput()  argument
1641 VLOG(EXECUTION) << "mapping input " << toString(innerOperand) << " from " in setInput()
1644 CHECK_LE(mSourceOperandToLocationOfTemporary.count(innerOperand) + in setInput()
1645 mSourceOperandToInputIndex.count(innerOperand) + in setInput()
1646 mSourceOperandToOutputIndex.count(innerOperand) + in setInput()
1647 mSourceOperandToConstantReference.count(innerOperand), in setInput()
1650 mSourceOperandToLocationOfTemporary.erase(innerOperand); in setInput()
1651 mSourceOperandToInputIndex.erase(innerOperand); in setInput()
1652 mSourceOperandToOutputIndex.erase(innerOperand); in setInput()
1653 mSourceOperandToConstantReference.erase(innerOperand); in setInput()
1656 mSourceOperandToLocationOfTemporary.emplace(innerOperand, it->second); in setInput()
1659 mSourceOperandToInputIndex.emplace(innerOperand, it->second); in setInput()
1662 mSourceOperandToOutputIndex.emplace(innerOperand, it->second); in setInput()
1665 mSourceOperandToConstantReference.emplace(innerOperand, it->second); in setInput()
1667 CHECK(false) << "Cannot set step model input operand " << toString(innerOperand) in setInput()
1674 const SourceOperandIndex& innerOperand) { in setOutput() argument
1675 VLOG(EXECUTION) << "mapping output " << toString(innerOperand) << " from " in setOutput()
1678 CHECK_LE(mSourceOperandToLocationOfTemporary.count(innerOperand) + in setOutput()
1679 mSourceOperandToOutputIndex.count(innerOperand), in setOutput()
1682 mSourceOperandToLocationOfTemporary.erase(innerOperand); in setOutput()
1683 mSourceOperandToOutputIndex.erase(innerOperand); in setOutput()
1686 mSourceOperandToLocationOfTemporary.emplace(innerOperand, it->second); in setOutput()
1689 mSourceOperandToOutputIndex.emplace(innerOperand, it->second); in setOutput()
1691 CHECK(false) << "Cannot set step model output operand " << toString(innerOperand) in setOutput()
1848 const SourceOperandIndex& innerOperand = step->condInputOperands[i]; in nextCompound() local
1860 std::optional<Buffer> innerBuffer = getBuffer(controller, innerOperand); in nextCompound()
1863 LOG(ERROR) << "Unable to get innerBuffer for operand " << toString(innerOperand); in nextCompound()