Lines Matching refs:outerOperand
1189 void ExecutionPlan::Controller::setInput(const SourceOperandIndex& outerOperand, in setInput() argument
1192 << toString(outerOperand); in setInput()
1204 if (auto it = mSourceOperandToOffsetOfTemporary.find(outerOperand); in setInput()
1207 } else if (auto it = mSourceOperandToInputIndex.find(outerOperand); in setInput()
1210 } else if (auto it = mSourceOperandToOutputIndex.find(outerOperand); in setInput()
1213 } else if (auto it = mSourceOperandToConstantReference.find(outerOperand); in setInput()
1218 << " from operand " << toString(outerOperand); in setInput()
1223 void ExecutionPlan::Controller::setOutput(const SourceOperandIndex& outerOperand, in setOutput() argument
1226 << toString(outerOperand); in setOutput()
1234 if (auto it = mSourceOperandToOffsetOfTemporary.find(outerOperand); in setOutput()
1237 } else if (auto it = mSourceOperandToOutputIndex.find(outerOperand); in setOutput()
1242 << " from operand " << toString(outerOperand); in setOutput()
1391 const SourceOperandIndex& outerOperand = step->outerOutputOperands[i]; in nextCompound() local
1392 std::optional<Buffer> outerBuffer = getBuffer(controller, outerOperand); in nextCompound()
1395 LOG(ERROR) << "Unable to get outerBuffer for operand " << toString(outerOperand); in nextCompound()
1399 controller->mExecutionBuilder->getSourceOperand(outerOperand); in nextCompound()