Home
last modified time | relevance | path

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

/external/brotli/research/
Ddurchschlag.cc105 Score maxScore = 0; in buildCandidatesList() local
114 if (score > maxScore) { in buildCandidatesList()
115 maxScore = score; in buildCandidatesList()
136 if (score > maxScore) { in buildCandidatesList()
137 maxScore = score; in buildCandidatesList()
142 if (candidates->size() > CANDIDATE_BUNDLE_SIZE && maxScore != minScore) { in buildCandidatesList()
195 Score maxScore = 0; in rebuildCandidatesList() local
206 if (score > maxScore) { in rebuildCandidatesList()
207 maxScore = score; in rebuildCandidatesList()
223 candidates->resize(maxScore + 1); in rebuildCandidatesList()
[all …]
/external/tensorflow/tensorflow/examples/android/src/org/tensorflow/demo/tracking/
DObjectTracker.java176 private final float maxScore; field in ObjectTracker.FrameChange
180 float maxScore = -100.0f; in FrameChange() local
196 maxScore = Math.max(maxScore, score); in FrameChange()
202 this.maxScore = maxScore; in FrameChange()
353 final float maxScore = lastKeypoints.maxScore; in drawKeypointsDebug() local
358 floatToChar((keypoint.keypointA.score - minScore) / (maxScore - minScore)); in drawKeypointsDebug()
360 floatToChar(1.0f - (keypoint.keypointA.score - minScore) / (maxScore - minScore)); in drawKeypointsDebug()
444 lines.add("Max score: " + lastKeypoints.maxScore); in getDebugText()
/external/tensorflow/tensorflow/lite/examples/android/app/src/main/java/org/tensorflow/demo/tracking/
DObjectTracker.java176 private final float maxScore; field in ObjectTracker.FrameChange
180 float maxScore = -100.0f; in FrameChange() local
196 maxScore = Math.max(maxScore, score); in FrameChange()
202 this.maxScore = maxScore; in FrameChange()
353 final float maxScore = lastKeypoints.maxScore; in drawKeypointsDebug() local
358 floatToChar((keypoint.keypointA.score - minScore) / (maxScore - minScore)); in drawKeypointsDebug()
360 floatToChar(1.0f - (keypoint.keypointA.score - minScore) / (maxScore - minScore)); in drawKeypointsDebug()
444 lines.add("Max score: " + lastKeypoints.maxScore); in getDebugText()
/external/skia/src/core/
DSkFontMgr.cpp229 Score maxScore = { 0, 0 }; in matchStyleCSS3() local
298 if (maxScore < currentScore) { in matchStyleCSS3()
299 maxScore = currentScore; in matchStyleCSS3()
303 return this->createTypeface(maxScore.index); in matchStyleCSS3()
/external/skqp/src/core/
DSkFontMgr.cpp229 Score maxScore = { 0, 0 }; in matchStyleCSS3() local
298 if (maxScore < currentScore) { in matchStyleCSS3()
299 maxScore = currentScore; in matchStyleCSS3()
303 return this->createTypeface(maxScore.index); in matchStyleCSS3()
/external/icu/icu4j/tools/misc/src/com/ibm/icu/dev/tool/charsetdet/sbcs/
DStatisticsTool.java410 int bestFit = -1, maxScore = 0; in main() local
419 if (score > maxScore) { in main()
420 maxScore = score; in main()