Lines Matching refs:operandIndex
181 mLargeOperandValues.push_back(LargeValue{.operandIndex = index, .buffer = buffer}); in setOperandValue()
292 Operand& operand = mOperands[l.operandIndex]; in copyLargeValuesToSharedMemory()
310 Operand& operand = mOperands[l.operandIndex]; in copyLargeValuesToSharedMemory()
440 const uint32_t operandIndex = indexList[i]; in identifyInputsAndOutputs() local
441 if (operandIndex >= mOperands.size()) { in identifyInputsAndOutputs()
445 << operandIndex << " as this exceeds the numbe of operands " in identifyInputsAndOutputs()
449 (*indexVector)[i] = operandIndex; in identifyInputsAndOutputs()
450 Operand& operand = mOperands[operandIndex]; in identifyInputsAndOutputs()
453 << operandIndex in identifyInputsAndOutputs()
817 for (uint32_t operandIndex : mOperations[operationIndex].inputs) { in sortIntoRunOrder() local
818 auto lifetime = mOperands[operandIndex].lifetime; in sortIntoRunOrder()
823 std::pair<uint32_t, uint32_t>(operandIndex, operationIndex)); in sortIntoRunOrder()
841 for (uint32_t operandIndex : operation.outputs) { in sortIntoRunOrder() local
842 auto range = operandToOperations.equal_range(operandIndex); in sortIntoRunOrder()