Lines Matching refs:innerOperand
1190 const SourceOperandIndex& innerOperand) { in setInput() argument
1191 VLOG(EXECUTION) << "mapping input " << toString(innerOperand) << " from " in setInput()
1194 CHECK_LE(mSourceOperandToOffsetOfTemporary.count(innerOperand) + in setInput()
1195 mSourceOperandToInputIndex.count(innerOperand) + in setInput()
1196 mSourceOperandToOutputIndex.count(innerOperand) + in setInput()
1197 mSourceOperandToConstantReference.count(innerOperand), in setInput()
1200 mSourceOperandToOffsetOfTemporary.erase(innerOperand); in setInput()
1201 mSourceOperandToInputIndex.erase(innerOperand); in setInput()
1202 mSourceOperandToOutputIndex.erase(innerOperand); in setInput()
1203 mSourceOperandToConstantReference.erase(innerOperand); in setInput()
1206 mSourceOperandToOffsetOfTemporary.emplace(innerOperand, it->second); in setInput()
1209 mSourceOperandToInputIndex.emplace(innerOperand, it->second); in setInput()
1212 mSourceOperandToOutputIndex.emplace(innerOperand, it->second); in setInput()
1215 mSourceOperandToConstantReference.emplace(innerOperand, it->second); in setInput()
1217 CHECK(false) << "Cannot set step model input operand " << toString(innerOperand) in setInput()
1224 const SourceOperandIndex& innerOperand) { in setOutput() argument
1225 VLOG(EXECUTION) << "mapping output " << toString(innerOperand) << " from " in setOutput()
1228 CHECK_LE(mSourceOperandToOffsetOfTemporary.count(innerOperand) + in setOutput()
1229 mSourceOperandToOutputIndex.count(innerOperand), in setOutput()
1232 mSourceOperandToOffsetOfTemporary.erase(innerOperand); in setOutput()
1233 mSourceOperandToOutputIndex.erase(innerOperand); in setOutput()
1236 mSourceOperandToOffsetOfTemporary.emplace(innerOperand, it->second); in setOutput()
1239 mSourceOperandToOutputIndex.emplace(innerOperand, it->second); in setOutput()
1241 CHECK(false) << "Cannot set step model output operand " << toString(innerOperand) in setOutput()
1390 const SourceOperandIndex& innerOperand = step->condInputOperands[i]; in nextCompound() local
1402 std::optional<Buffer> innerBuffer = getBuffer(controller, innerOperand); in nextCompound()
1405 LOG(ERROR) << "Unable to get innerBuffer for operand " << toString(innerOperand); in nextCompound()