Home
last modified time | relevance | path

Searched refs:maxScore (Results 1 – 4 of 4) sorted by relevance

/frameworks/opt/telephony/src/java/com/android/internal/telephony/
DCarrierResolver.java753 int maxScore = CarrierMatchingRule.SCORE_INVALID; in matchSubscriptionCarrier() local
769 if (rule.mScore > maxScore) { in matchSubscriptionCarrier()
770 maxScore = rule.mScore; in matchSubscriptionCarrier()
773 } else if (maxScore > CarrierMatchingRule.SCORE_INVALID && rule.mScore == maxScore) { in matchSubscriptionCarrier()
786 if (maxScore == CarrierMatchingRule.SCORE_INVALID) { in matchSubscriptionCarrier()
818 String unknownGid1ToLog = ((maxScore & CarrierMatchingRule.SCORE_GID1) == 0 in matchSubscriptionCarrier()
820 String unknownMccmncToLog = ((maxScore == CarrierMatchingRule.SCORE_INVALID in matchSubscriptionCarrier()
821 || (maxScore & CarrierMatchingRule.SCORE_GID1) == 0) in matchSubscriptionCarrier()
926 int maxScore = CarrierMatchingRule.SCORE_INVALID; in getCarrierIdFromIdentifier() local
931 if (rule.mScore > maxScore) { in getCarrierIdFromIdentifier()
[all …]
/frameworks/ml/nn/common/operations/
DHeatmapMaxKeypoint.cpp105 float maxScore = -FLT_MAX; in heatmapMaxKeypointFloat32Nhwc() local
108 if (maxScore < val) { in heatmapMaxKeypointFloat32Nhwc()
109 maxScore = val; in heatmapMaxKeypointFloat32Nhwc()
136 float delta[2] = {0.0f, 0.0f}, deltaScore = maxScore; in heatmapMaxKeypointFloat32Nhwc()
DGenerateProposals.cpp316 auto& maxScore = *std::max_element(selectStart, selectEnd, in hardNmsSingleClass() local
320 std::swap(maxScore, *selectStart); in hardNmsSingleClass()
379 auto& maxScore = *std::max_element(selectStart, selectEnd, in softNmsSingleClass() local
383 std::swap(maxScore, *selectStart); in softNmsSingleClass()
/frameworks/base/core/java/com/android/internal/graphics/palette/
DPalette.java374 float maxScore = 0; in getMaxScoredSwatchForTarget() local
380 if (maxScoreSwatch == null || score > maxScore) { in getMaxScoredSwatchForTarget()
382 maxScore = score; in getMaxScoredSwatchForTarget()