Home
last modified time | relevance | path

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

/external/apache-xml/src/main/java/org/apache/xpath/patterns/
DUnionPattern.java120 XObject bestScore = null; in execute() local
129 if (null == bestScore) in execute()
130 bestScore = score; in execute()
131 else if (score.num() > bestScore.num()) in execute()
132 bestScore = score; in execute()
136 if (null == bestScore) in execute()
138 bestScore = NodeTest.SCORE_NONE; in execute()
141 return bestScore; in execute()
/external/archive-patcher/generator/src/main/java/com/google/archivepatcher/generator/bsdiff/
DBsDiffPatchWriter.java128 int bestScore = 0; in generatePatchWithMatcher() local
138 if (score > bestScore) { in generatePatchWithMatcher()
139 bestScore = score; in generatePatchWithMatcher()
151 int bestScore = 0; in generatePatchWithMatcher() local
162 if (score > bestScore) { in generatePatchWithMatcher()
163 bestScore = score; in generatePatchWithMatcher()
174 int bestScore = 0; in generatePatchWithMatcher() local
188 if (score > bestScore) { in generatePatchWithMatcher()
189 bestScore = score; in generatePatchWithMatcher()
/external/skqp/third_party/etc1/
Detc1.cpp309 etc1_uint32 bestScore = ~0; in chooseModifier() local
321 if (score >= bestScore) { in chooseModifier()
326 if (score >= bestScore) { in chooseModifier()
331 if (score < bestScore) { in chooseModifier()
332 bestScore = score; in chooseModifier()
339 return bestScore; in chooseModifier()
/external/skia/third_party/etc1/
Detc1.cpp309 etc1_uint32 bestScore = ~0; in chooseModifier() local
321 if (score >= bestScore) { in chooseModifier()
326 if (score >= bestScore) { in chooseModifier()
331 if (score < bestScore) { in chooseModifier()
332 bestScore = score; in chooseModifier()
339 return bestScore; in chooseModifier()
/external/mesa3d/src/gallium/drivers/nouveau/codegen/
Dnv50_ir_ra.cpp1320 float bestScore = best->weight / (float)best->degree; in simplify() local
1324 if (score < bestScore) { in simplify()
1326 bestScore = score; in simplify()
1329 if (isinf(bestScore)) { in simplify()
/external/sqlite/dist/orig/
Dsqlite3.c106434 int bestScore = 0; /* Score of best match */
106447 if( score>bestScore ){
106449 bestScore = score;
106467 bestScore = 0;
106472 if( score>bestScore ){
106474 bestScore = score;
106484 if( createFlag && bestScore<FUNC_PERFECT_MATCH &&
/external/sqlite/dist/
Dsqlite3.c106450 int bestScore = 0; /* Score of best match */
106463 if( score>bestScore ){
106465 bestScore = score;
106483 bestScore = 0;
106488 if( score>bestScore ){
106490 bestScore = score;
106500 if( createFlag && bestScore<FUNC_PERFECT_MATCH &&