Lines Matching refs:aidl_hal
35 std::vector<aidl_hal::OperandPerformance> nonExtensionOperandPerformance( in nonExtensionOperandPerformance()
36 aidl_hal::PerformanceInfo perf) { in nonExtensionOperandPerformance()
37 static constexpr ndk::enum_range<aidl_hal::OperandType> kOperandTypeRange; in nonExtensionOperandPerformance()
38 std::vector<aidl_hal::OperandPerformance> ret; in nonExtensionOperandPerformance()
40 for (aidl_hal::OperandType type : kOperandTypeRange) { in nonExtensionOperandPerformance()
41 if (type != aidl_hal::OperandType::SUBGRAPH) { in nonExtensionOperandPerformance()
42 ret.push_back(aidl_hal::OperandPerformance{type, perf}); in nonExtensionOperandPerformance()
46 [](const aidl_hal::OperandPerformance& a, const aidl_hal::OperandPerformance& b) { in nonExtensionOperandPerformance()
53 void update(std::vector<aidl_hal::OperandPerformance>* operandPerformance, in update()
54 aidl_hal::OperandType type, aidl_hal::PerformanceInfo perf) { in update()
57 [](const aidl_hal::OperandPerformance& perf, in update()
58 aidl_hal::OperandType type) { return perf.type < type; }); in update()
64 bool isExtensionOperandType(aidl_hal::OperandType type) { in isExtensionOperandType()
68 aidl_hal::ErrorStatus convertResultCodeToAidlErrorStatus(int resultCode) { in convertResultCodeToAidlErrorStatus()
69 const auto errorStatus = aidl_hal::utils::convert(convertResultCodeToErrorStatus(resultCode)); in convertResultCodeToAidlErrorStatus()