Lines Matching refs:operands
53 hidl_vec<Operand> operands(testModel.main.operands.size()); in createModel() local
55 for (uint32_t i = 0; i < testModel.main.operands.size(); i++) { in createModel()
56 const auto& op = testModel.main.operands[i]; in createModel()
71 operands[i] = {.type = static_cast<OperandType>(op.type), in createModel()
91 for (uint32_t i = 0; i < testModel.main.operands.size(); i++) { in createModel()
92 const auto& op = testModel.main.operands[i]; in createModel()
96 std::copy(begin, end, operandValues.data() + operands[i].location.offset); in createModel()
113 for (uint32_t i = 0; i < testModel.main.operands.size(); i++) { in createModel()
114 const auto& op = testModel.main.operands[i]; in createModel()
118 std::copy(begin, end, mappedPtr + operands[i].location.offset); in createModel()
123 return {.operands = std::move(operands), in createModel()