Home
last modified time | relevance | path

Searched refs:bestScore (Results 1 – 8 of 8) sorted by relevance

/frameworks/av/media/libmediaplayerservice/
DMediaPlayerFactory.cpp97 float bestScore = 0.0; \
104 thisScore = v->scoreFactory(a, bestScore); \
105 if (thisScore > bestScore) { \
107 bestScore = thisScore; \
111 if (0.0 == bestScore) { \
DVideoFrameScheduler.cpp224 int64_t bestScore; in prime() local
255 if (i == 0 || score > bestScore) { in prime()
256 bestScore = score; in prime()
/frameworks/base/services/core/java/com/android/server/
DCommonTimeManagementService.java275 byte bestScore = -1; in reevaluateServiceState()
312 if (thisScore <= bestScore) in reevaluateServiceState()
321 bestScore = thisScore; in reevaluateServiceState()
354 byte newPrio = (bestScore > 0) in reevaluateServiceState()
355 ? (byte)(bestScore * BASE_SERVER_PRIO) in reevaluateServiceState()
/frameworks/base/packages/Keyguard/src/com/android/keyguard/
DKeyguardAccountView.java231 int bestScore = 0; in findIntendedAccount() local
249 if (score > bestScore) { in findIntendedAccount()
251 bestScore = score; in findIntendedAccount()
252 } else if (score == bestScore) { in findIntendedAccount()
/frameworks/minikin/libs/minikin/
DFontCollection.cpp112 int bestScore = -1; in getFamilyForChar() local
124 if (score > bestScore) { in getFamilyForChar()
125 bestScore = score; in getFamilyForChar()
/frameworks/native/opengl/libs/ETC1/
Detc1.cpp301 etc1_uint32 bestScore = ~0; in chooseModifier() local
313 if (score >= bestScore) { in chooseModifier()
318 if (score >= bestScore) { in chooseModifier()
323 if (score < bestScore) { in chooseModifier()
324 bestScore = score; in chooseModifier()
331 return bestScore; in chooseModifier()
/frameworks/base/media/java/android/media/
DSubtitleController.java212 int bestScore = -1; in getDefaultTrack() local
250 if (score > bestScore) { in getDefaultTrack()
251 bestScore = score; in getDefaultTrack()
/frameworks/av/media/libstagefright/wifi-display/
DVideoFormats.cpp490 uint32_t bestScore = 0; in PickBestFormat() local
518 if (first || score > bestScore) { in PickBestFormat()
519 bestScore = score; in PickBestFormat()