/frameworks/ml/nn/driver/sample/ |
D | SampleDriverPartial.cpp | 42 std::vector<bool> supported = getSupportedOperationsImpl(model); in getSupportedOperations_1_3() local 43 cb(ErrorStatus::NONE, supported); in getSupportedOperations_1_3() 45 std::vector<bool> supported; in getSupportedOperations_1_3() local 46 cb(ErrorStatus::INVALID_ARGUMENT, supported); in getSupportedOperations_1_3() 56 std::vector<bool> supported = getSupportedOperationsImpl(model); in prepareModel_1_3() local 58 std::all_of(supported.begin(), supported.end(), [](bool v) { return v; }); in prepareModel_1_3()
|
D | SampleDriverFull.cpp | 50 std::vector<bool> supported(count, true); in getSupportedOperations_1_3() local 53 supported[i] = !isExtensionOperationType(operation.type); in getSupportedOperations_1_3() 55 cb(ErrorStatus::NONE, supported); in getSupportedOperations_1_3() 57 std::vector<bool> supported; in getSupportedOperations_1_3() local 58 cb(ErrorStatus::INVALID_ARGUMENT, supported); in getSupportedOperations_1_3()
|
D | SampleDriverMinimal.cpp | 67 std::vector<bool> supported(count); in getSupportedOperationsImpl() local 70 supported[i] = false; in getSupportedOperationsImpl() 78 supported[i] = true; in getSupportedOperationsImpl() 86 return supported; in getSupportedOperationsImpl()
|
D | SampleDriverQuant.cpp | 67 std::vector<bool> supported(count); in getSupportedOperationsImpl() local 72 supported[i] = isQuantized(firstOperand.type); in getSupportedOperationsImpl() 75 supported[i] = isQuantized(secondOperand.type); in getSupportedOperationsImpl() 79 return supported; in getSupportedOperationsImpl()
|
D | SampleDriverFloatSlow.cpp | 67 std::vector<bool> supported(count); in getSupportedOperationsImpl() local 72 supported[i] = firstOperand.type == OperandType::TENSOR_FLOAT32; in getSupportedOperationsImpl() 75 return supported; in getSupportedOperationsImpl()
|
D | SampleDriverFloatFast.cpp | 67 std::vector<bool> supported(count); in getSupportedOperationsImpl() local 72 supported[i] = firstOperand.type == OperandType::TENSOR_FLOAT32; in getSupportedOperationsImpl() 75 return supported; in getSupportedOperationsImpl()
|
/frameworks/base/libs/androidfw/tests/ |
D | ConfigLocale_test.cpp | 370 ResTable_config supported, requested; in TEST() local 372 fillIn(NULL, NULL, NULL, NULL, &supported); in TEST() 375 EXPECT_TRUE(supported.match(requested)); in TEST() 377 fillIn("en", "CA", NULL, NULL, &supported); in TEST() 380 EXPECT_FALSE(supported.match(requested)); in TEST() 382 fillIn("tl", "PH", NULL, NULL, &supported); in TEST() 385 EXPECT_TRUE(supported.match(requested)); in TEST() 387 fillIn("qaa", "FR", NULL, NULL, &supported); in TEST() 390 EXPECT_FALSE(supported.match(requested)); in TEST() 392 fillIn("qaa", "FR", "Latn", NULL, &supported); in TEST() [all …]
|
/frameworks/base/core/java/android/net/util/ |
D | KeepaliveUtils.java | 72 int supported; in getSupportedKeepalives() local 75 supported = Integer.parseInt(arr[1]); in getSupportedKeepalives() 84 if (supported < 0) { in getSupportedKeepalives() 86 "Invalid supported count " + supported + " for " in getSupportedKeepalives() 89 ret[transport] = supported; in getSupportedKeepalives()
|
/frameworks/compile/mclinker/include/mcld/LD/ |
D | DiagRelocations.inc | 25 "relocation type `%0' is not supported for symbol `%1'\nPlease report to " 27 "relocation type `%0' is not supported for symbol `%1'\nPlease report to " 64 "supported yet", 66 "supported yet") 69 "applying relocation `%0' for .debug_str is not supported. " 71 "applying relocation `%0' for .debug_str is not supported. "
|
D | DiagLayouts.inc | 3 "Exception handling has not been fully supported yet.\nsection `%0'.", 4 "Exception handling has not been fully supported yet.\nsection `%0'.") 7 "Symbolic versioning has not been fully supported yet.\nsection `%0'.", 8 "Symbolic versioning has not been fully supported yet.\nsection `%0'")
|
/frameworks/av/services/audiopolicy/common/managerdefinitions/src/ |
D | AudioProfileVectorHelper.cpp | 231 for (const auto &supported : channelMasks) { in checkCompatibleChannelMask() local 232 if (supported == channelMask) { in checkCompatibleChannelMask() 239 if (isRecordThread && supported != AUDIO_CHANNEL_NONE) { in checkCompatibleChannelMask() 258 const bool isSupportedIndex = (audio_channel_mask_get_representation(supported) in checkCompatibleChannelMask() 260 const uint32_t supportedChannelCount = audio_channel_count_from_in_mask(supported); in checkCompatibleChannelMask() 266 & audio_channel_mask_get_bits(supported)); in checkCompatibleChannelMask() 277 equivalentBits & audio_channel_mask_get_bits(supported)); in checkCompatibleChannelMask() 282 & audio_channel_mask_get_bits(supported)); in checkCompatibleChannelMask() 283 switch (supported) { in checkCompatibleChannelMask() 302 updatedChannelMask = supported; in checkCompatibleChannelMask()
|
/frameworks/base/services/core/java/com/android/server/hdmi/ |
D | DetectTvSystemAudioModeSupportAction.java | 85 private void finishAction(boolean supported) { in finishAction() argument 86 mCallback.onResult(supported); in finishAction() 87 audioSystem().setTvSystemAudioModeSupport(supported); in finishAction()
|
D | SystemAudioInitiationActionFromAvr.java | 132 supported -> { in queryTvSystemAudioModeSupport() 133 if (supported) { in queryTvSystemAudioModeSupport()
|
/frameworks/minikin/libs/minikin/ |
D | Locale.cpp | 448 int Locale::calcScoreFor(const LocaleList& supported) const { in calcScoreFor() 453 for (size_t i = 0; i < supported.size(); ++i) { in calcScoreFor() 454 if (mEmojiStyle != EmojiStyle::EMPTY && mEmojiStyle == supported[i].mEmojiStyle) { in calcScoreFor() 456 if (mLanguage == supported[i].mLanguage) { in calcScoreFor() 460 if (isEqualScript(supported[i]) || in calcScoreFor() 461 supportsScript(supported[i].mSubScriptBits, mSubScriptBits)) { in calcScoreFor() 463 if (mLanguage == supported[i].mLanguage) { in calcScoreFor() 469 if (supportsScript(supported.getUnionOfSubScriptBits(), mSubScriptBits)) { in calcScoreFor() 471 if (mLanguage == supported[0].mLanguage && supported.isAllTheSameLocale()) { in calcScoreFor()
|
/frameworks/native/libs/nativewindow/ |
D | ANativeWindow.cpp | 37 bool supported = false; in isDataSpaceValid() local 46 native_window_get_wide_color_support(window, &supported); in isDataSpaceValid() 47 return supported; in isDataSpaceValid() 50 native_window_get_hdr_support(window, &supported); in isDataSpaceValid() 51 return supported; in isDataSpaceValid()
|
/frameworks/base/services/core/java/com/android/server/inputmethod/ |
D | LocaleUtils.java | 48 private static byte calculateMatchingSubScore(@NonNull final ULocale supported, in calculateMatchingSubScore() argument 51 if (supported.equals(desired)) { in calculateMatchingSubScore() 57 final String supportedScript = supported.getScript(); in calculateMatchingSubScore() 63 final String supportedCountry = supported.getCountry(); in calculateMatchingSubScore()
|
/frameworks/base/core/java/android/os/ |
D | LocaleList.java | 315 private static int matchScore(Locale supported, Locale desired) { in matchScore() argument 316 if (supported.equals(desired)) { in matchScore() 319 if (!supported.getLanguage().equals(desired.getLanguage())) { in matchScore() 322 if (isPseudoLocale(supported) || isPseudoLocale(desired)) { in matchScore() 327 final String supportedScr = getLikelyScript(supported); in matchScore() 332 final String supportedRegion = supported.getCountry(); in matchScore()
|
/frameworks/wilhelm/src/itf/ |
D | IBassBoost.cpp | 158 int32_t supported = 0; in IBassBoost_IsStrengthSupported() 165 &supported); in IBassBoost_IsStrengthSupported() 169 *pSupported = (SLboolean) (supported != 0); in IBassBoost_IsStrengthSupported()
|
D | IVirtualizer.cpp | 160 int32_t supported = 0; in IVirtualizer_IsStrengthSupported() 167 VIRTUALIZER_PARAM_STRENGTH_SUPPORTED, &supported); in IVirtualizer_IsStrengthSupported() 171 *pSupported = (SLboolean) (supported != 0); in IVirtualizer_IsStrengthSupported()
|
/frameworks/compile/mclinker/include/mcld/Config/ |
D | Targets.def.in | 10 |* This file enumerates all of the target architectures supported by *| 16 |* The set of targets supported by MCLD is generated at configuration *|
|
D | Targets.def.cmake | 10 |* This file enumerates all of the target architectures supported by *| 16 |* The set of targets supported by MCLD is generated at configuration *|
|
D | Linkers.def.in | 10 // This file enumerates all of the linkers supported by this build of MCLinker. 16 // The set of targets supported by MCLD is generated at configuration
|
D | Linkers.def.cmake | 10 // This file enumerates all of the linkers supported by this build of MCLinker. 16 // The set of targets supported by MCLD is generated at configuration
|
D | Linkers.def | 10 // This file enumerates all of the linkers supported by this build of MCLinker. 16 // The set of targets supported by MCLD is generated at configuration
|
D | Targets.def | 10 |* This file enumerates all of the target architectures supported by *| 16 |* The set of targets supported by MCLD is generated at configuration *|
|