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.java754 int maxScore = CarrierMatchingRule.SCORE_INVALID; in matchSubscriptionCarrier() local
770 if (rule.mScore > maxScore) { in matchSubscriptionCarrier()
771 maxScore = rule.mScore; in matchSubscriptionCarrier()
774 } else if (maxScore > CarrierMatchingRule.SCORE_INVALID && rule.mScore == maxScore) { in matchSubscriptionCarrier()
787 if (maxScore == CarrierMatchingRule.SCORE_INVALID) { in matchSubscriptionCarrier()
819 String unknownGid1ToLog = ((maxScore & CarrierMatchingRule.SCORE_GID1) == 0 in matchSubscriptionCarrier()
821 String unknownMccmncToLog = ((maxScore == CarrierMatchingRule.SCORE_INVALID in matchSubscriptionCarrier()
822 || (maxScore & CarrierMatchingRule.SCORE_GID1) == 0) in matchSubscriptionCarrier()
927 int maxScore = CarrierMatchingRule.SCORE_INVALID; in getCarrierIdFromIdentifier() local
932 if (rule.mScore > maxScore) { in getCarrierIdFromIdentifier()
[all …]
/frameworks/ml/nn/common/operations/
DHeatmapMaxKeypoint.cpp111 float maxScore = -FLT_MAX; in heatmapMaxKeypointFloat32Nhwc() local
114 if (maxScore < val) { in heatmapMaxKeypointFloat32Nhwc()
115 maxScore = val; in heatmapMaxKeypointFloat32Nhwc()
142 float delta[2] = {0.0f, 0.0f}, deltaScore = maxScore; in heatmapMaxKeypointFloat32Nhwc()
DGenerateProposals.cpp368 auto& maxScore = *std::max_element(selectStart, selectEnd, in hardNmsSingleClass() local
372 std::swap(maxScore, *selectStart); in hardNmsSingleClass()
431 auto& maxScore = *std::max_element(selectStart, selectEnd, in softNmsSingleClass() local
435 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()