Lines Matching refs:operandIndex
169 mLargeOperandValues.push_back(LargeValue{.operandIndex = index, .buffer = buffer}); in setOperandValue()
285 Operand& operand = mOperands[l.operandIndex]; in copyLargeValuesToSharedMemory()
303 Operand& operand = mOperands[l.operandIndex]; in copyLargeValuesToSharedMemory()
443 const uint32_t operandIndex = indexList[i]; in identifyInputsAndOutputs() local
444 if (operandIndex >= mOperands.size()) { in identifyInputsAndOutputs()
448 << operandIndex << " as this exceeds the numbe of operands " in identifyInputsAndOutputs()
452 (*indexVector)[i] = operandIndex; in identifyInputsAndOutputs()
453 Operand& operand = mOperands[operandIndex]; in identifyInputsAndOutputs()
456 << operandIndex in identifyInputsAndOutputs()
819 for (uint32_t operandIndex : mOperations[operationIndex].inputs) { in sortIntoRunOrder() local
820 auto lifetime = mOperands[operandIndex].lifetime; in sortIntoRunOrder()
825 std::pair<uint32_t, uint32_t>(operandIndex, operationIndex)); in sortIntoRunOrder()
843 for (uint32_t operandIndex : operation.outputs) { in sortIntoRunOrder() local
844 auto range = operandToOperations.equal_range(operandIndex); in sortIntoRunOrder()