/hardware/google/aemu/base/include/aemu/base/ |
D | Version.h | 28 class Version { 37 explicit Version(const char* ver); 38 explicit Version(const std::string& ver) : Version(ver.data()) {} in Version() function 40 constexpr Version(); 42 constexpr Version(ComponentType major, 49 constexpr bool operator<(const Version& other) const; 50 constexpr bool operator>(const Version& other) const; 51 constexpr bool operator==(const Version& other) const; 52 constexpr bool operator!=(const Version& other) const; 54 static constexpr Version invalid(); [all …]
|
/hardware/interfaces/neuralnetworks/aidl/utils/test/ |
D | TestUtils.cpp | 28 std::string printTestVersion(const testing::TestParamInfo<nn::Version>& info) { in printTestVersion() 30 case nn::Version::Level::FEATURE_LEVEL_5: in printTestVersion() 32 case nn::Version::Level::FEATURE_LEVEL_6: in printTestVersion() 34 case nn::Version::Level::FEATURE_LEVEL_7: in printTestVersion() 36 case nn::Version::Level::FEATURE_LEVEL_8: in printTestVersion()
|
D | TestUtils.h | 27 class VersionedAidlUtilsTestBase : public ::testing::TestWithParam<nn::Version> { 29 const nn::Version kVersion = GetParam(); 32 std::string printTestVersion(const testing::TestParamInfo<nn::Version>& info);
|
D | PreparedModelTest.cpp | 100 if (kVersion.level >= nn::Version::Level::FEATURE_LEVEL_8) return; in TEST_P() 124 if (kVersion.level >= nn::Version::Level::FEATURE_LEVEL_8) return; in TEST_P() 142 if (kVersion.level >= nn::Version::Level::FEATURE_LEVEL_8) return; in TEST_P() 160 if (kVersion.level >= nn::Version::Level::FEATURE_LEVEL_8) return; in TEST_P() 178 if (kVersion.level >= nn::Version::Level::FEATURE_LEVEL_8) return; in TEST_P() 209 if (kVersion.level >= nn::Version::Level::FEATURE_LEVEL_8) return; in TEST_P() 241 if (kVersion.level >= nn::Version::Level::FEATURE_LEVEL_8) return; in TEST_P() 259 if (kVersion.level >= nn::Version::Level::FEATURE_LEVEL_8) return; in TEST_P() 277 if (kVersion.level >= nn::Version::Level::FEATURE_LEVEL_8) return; in TEST_P() 295 if (kVersion.level >= nn::Version::Level::FEATURE_LEVEL_8) return; in TEST_P() [all …]
|
/hardware/qcom/display/msm8909/sdm/libs/core/drm/ |
D | hw_scale_drm.h | 51 enum class Version { V2 }; enum 52 explicit HWScaleDRM(Version v) : version_(v) {} in HWScaleDRM() 58 Version version_ = Version::V2;
|
/hardware/qcom/display/msm8909w_3100/sdm/libs/core/drm/ |
D | hw_scale_drm.h | 51 enum class Version { V2 }; enum 52 explicit HWScaleDRM(Version v) : version_(v) {} in HWScaleDRM() 58 Version version_ = Version::V2;
|
/hardware/qcom/sm8150/display/sdm/libs/core/drm/ |
D | hw_scale_drm.h | 51 enum class Version { V2 }; enum 52 explicit HWScaleDRM(Version v) : version_(v) {} in HWScaleDRM() 57 Version version_ = Version::V2;
|
/hardware/qcom/sm7250/display/sdm/libs/core/drm/ |
D | hw_scale_drm.h | 51 enum class Version { V2 }; enum 52 explicit HWScaleDRM(Version v) : version_(v) {} in HWScaleDRM() 57 Version version_ = Version::V2;
|
/hardware/google/gfxstream/guest/mesa/src/vulkan/ |
D | vulkan-icd-symbols.txt | 5 # Version 1 - Add support for vk_icdGetInstanceProcAddr. 8 # Version 2 - Add Loader/ICD Interface version negotiation 12 # Version 4 - Add unknown physical device extension querying via
|
/hardware/interfaces/neuralnetworks/aidl/utils/include/nnapi/hal/aidl/ |
D | Device.h | 47 std::string name, std::shared_ptr<aidl_hal::IDevice> device, nn::Version featureLevel); 50 nn::Version featureLevel, nn::DeviceType deviceType, 57 nn::Version getFeatureLevel() const override; 90 const nn::Version kFeatureLevel;
|
D | Callbacks.h | 39 PreparedModelCallback(nn::Version featureLevel) : kFeatureLevel(featureLevel) {} in PreparedModelCallback() 49 const nn::Version kFeatureLevel;
|
D | PreparedModel.h | 45 std::shared_ptr<aidl_hal::IPreparedModel> preparedModel, nn::Version featureLevel); 49 nn::Version featureLevel); 92 const nn::Version kFeatureLevel;
|
D | Burst.h | 91 std::shared_ptr<aidl_hal::IBurst> burst, nn::Version featureLevel); 94 nn::Version featureLevel); 124 const nn::Version kFeatureLevel;
|
D | Service.h | 29 const std::string& name, ::android::nn::Version::Level maxFeatureLevelAllowed);
|
/hardware/interfaces/neuralnetworks/utils/common/include/nnapi/hal/ |
D | InvalidDevice.h | 34 InvalidDevice(std::string name, std::string versionString, nn::Version featureLevel, 41 nn::Version getFeatureLevel() const override; 72 const nn::Version kFeatureLevel;
|
/hardware/interfaces/gnss/2.1/ |
D | types.hal | 4 * Licensed under the Apache License, Version 2.0 (the "License"); 39 * Header Section Description in the RINEX standard (Version 3.XX). In RINEX Version 3.03,
|
/hardware/google/gfxstream/codegen/vulkan/vulkan-docs-next/appendices/ |
D | VK_EXT_non_seamless_cube_map.adoc | 27 === Version History 30 ** First Version
|
D | VK_NV_device_diagnostics_config.adoc | 21 Version 2 of this extension adds 27 === Version History
|
/hardware/interfaces/neuralnetworks/utils/service/src/ |
D | Service.cpp | 77 nn::Version::Level maxFeatureLevelAllowed) { in getAidlDevices() 110 std::vector<nn::SharedDevice> getDevices(nn::Version::Level maxFeatureLevelAllowed) { in getDevices() 114 CHECK_GE(maxFeatureLevelAllowed, nn::Version::Level::FEATURE_LEVEL_5); in getDevices()
|
/hardware/interfaces/security/authgraph/aidl/android/hardware/security/authgraph/ |
D | Identity.cddl | 4 ; Licensed under the Apache License, Version 2.0 (the "License"); 17 1, ; Version
|
/hardware/interfaces/neuralnetworks/aidl/utils/src/ |
D | Service.cpp | 38 nn::GeneralResult<nn::Version> getAidlServiceFeatureLevel(IDevice* service) { in getAidlServiceFeatureLevel() 59 const std::string& instanceName, ::android::nn::Version::Level maxFeatureLevelAllowed) { in getDevice()
|
/hardware/interfaces/tv/tuner/1.0/ |
D | ILnbCallback.hal | 4 * Licensed under the Apache License, Version 2.0 (the "License"); 33 * Specification Version 4.2.
|
/hardware/interfaces/neuralnetworks/utils/service/include/nnapi/hal/ |
D | Service.h | 36 std::vector<nn::SharedDevice> getDevices(nn::Version::Level maxFeatureLevelAllowed);
|
/hardware/interfaces/neuralnetworks/utils/common/src/ |
D | InvalidDevice.cpp | 34 InvalidDevice::InvalidDevice(std::string name, std::string versionString, nn::Version featureLevel, in InvalidDevice() 54 nn::Version InvalidDevice::getFeatureLevel() const { in getFeatureLevel()
|
/hardware/interfaces/contexthub/1.0/ |
D | types.hal | 4 * Licensed under the Apache License, Version 2.0 (the "License"); 35 uint32_t appVersion; // Version of the app (semantics defined by app) 89 uint32_t version; // Version : eg 0x1001 109 uint32_t platformVersion; // Version of the hardware : eg 0x20 110 uint32_t toolchainVersion; // Version of the toolchain : eg: 0x484 191 uint32_t version; // Version of the app
|