Lines Matching refs:operands
46 hidl_vec<Operand> operands(testModel.main.operands.size()); in createModel() local
48 for (uint32_t i = 0; i < testModel.main.operands.size(); i++) { in createModel()
49 const auto& op = testModel.main.operands[i]; in createModel()
64 operands[i] = {.type = static_cast<OperandType>(op.type), in createModel()
84 for (uint32_t i = 0; i < testModel.main.operands.size(); i++) { in createModel()
85 const auto& op = testModel.main.operands[i]; in createModel()
89 std::copy(begin, end, operandValues.data() + operands[i].location.offset); in createModel()
106 for (uint32_t i = 0; i < testModel.main.operands.size(); i++) { in createModel()
107 const auto& op = testModel.main.operands[i]; in createModel()
111 std::copy(begin, end, mappedPtr + operands[i].location.offset); in createModel()
116 return {.operands = std::move(operands), in createModel()