/external/chromium_org/content/browser/gamepad/ |
xbox_data_fetcher_mac.cc | 261 SInt32 score; // Unused, but required for IOCreatePlugInInterfaceForService. local 267 &score); 364 &score);
|
/external/chromium_org/gpu/config/ |
gpu_info_collector_win.cc | 58 double score; local 59 if (!base::StringToDouble(score_string, &score)) 62 return static_cast<float>(score); 143 LOG(ERROR) << "Could not read overall score from assessment results."; 145 LOG(ERROR) << "Could not read graphics score from assessment results."; 147 LOG(ERROR) << "Could not read gaming score from assessment results.";
|
/external/chromium_org/third_party/cld/encodings/compact_lang_det/ |
cldutil.cc | 382 // UNIGRAM score one => tote 397 // BIGRAM, QUADGRAM, OCTAGRAM score one => tote 422 // Score up to n unigrams, returning number of bytes consumed 501 // Score all bigrams in isrc, using languages that have bigrams (CJK) 520 // Lookup and score this bigram 559 // Score up to n quadgrams, returning number of bytes consumed 588 // Lookup and score this quadgram 670 // Score all words in isrc, using languages that have quadgrams 684 // Score all words truncated to 8 characters 699 // Lookup and score this wor [all...] |
/external/srec/srec/ca/ |
ann_api.c | 269 int score; local 279 score = annotation_compare(testAnnotation->data, refAnnotation->data); 281 return (score);
|
/sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/uimodel/ |
UiResourceAttributeNode.java | 423 int compare = score(attributeInfo, s1) - score(attributeInfo, s2); 433 /** Compute a suitable sorting score for the given */ 434 private static final int score(IAttributeInfo attributeInfo, String value) { method in class:UiResourceAttributeNode
|
/external/chromium_org/third_party/mesa/src/src/gallium/drivers/r300/compiler/ |
radeon_pair_schedule.c | 72 /** This scheduler uses the value of Score to determine which 73 * instruction to schedule. Instructions with a higher value of Score 75 int Score; 189 unsigned score = sinst->Score; local 190 fprintf(stderr,"%u (%d) [%u],", ptr->Instruction->IP, score, 233 while(temp && inst->Score <= temp->Score) { 278 sinst->Score = 0; 284 sinst->Score = 0 1073 int score; local [all...] |
/external/mesa3d/src/gallium/drivers/r300/compiler/ |
radeon_pair_schedule.c | 72 /** This scheduler uses the value of Score to determine which 73 * instruction to schedule. Instructions with a higher value of Score 75 int Score; 189 unsigned score = sinst->Score; local 190 fprintf(stderr,"%u (%d) [%u],", ptr->Instruction->IP, score, 233 while(temp && inst->Score <= temp->Score) { 278 sinst->Score = 0; 284 sinst->Score = 0 1073 int score; local [all...] |
/external/chromium_org/chrome/browser/history/ |
history_types.cc | 302 FilteredURL::FilteredURL() : score(0.0) {} 307 score(page_data.GetScore()) {
|
expire_history_backend_unittest.cc | 220 ThumbnailScore score(0.25, true, true, Time::Now()); 224 top_sites_->SetPageThumbnail(url_row1.url(), thumbnail, score); 225 top_sites_->SetPageThumbnail(url_row2.url(), thumbnail, score); 226 top_sites_->SetPageThumbnail(url_row3.url(), thumbnail, score);
|
/external/chromium_org/v8/tools/ |
run_benchmarks.py | 62 "units": "score", 77 "units": "score", 159 self.units = "score"
|
/external/deqp/modules/gles2/accuracy/ |
es2aVaryingInterpolationTests.cpp | 271 int score = tcu::measurePixelDiffAccuracy(log, "Result", "Image comparison result", reference, rendered, bestScoreDiff, worstScoreDiff, tcu::COMPARE_LOG_EVERYTHING); local 273 m_testCtx.setTestResult(QP_TEST_RESULT_PASS, de::toString(score).c_str());
|
es2aTextureFilteringTests.cpp | 307 int score = measureAccuracy(log, referenceFrame, renderedFrame, bestScoreDiff, worstScoreDiff); local 308 m_testCtx.setTestResult(QP_TEST_RESULT_PASS, de::toString(score).c_str()); 619 int score = measureAccuracy(log, referenceFrame, renderedFrame, bestScoreDiff, worstScoreDiff); local 620 m_testCtx.setTestResult(QP_TEST_RESULT_PASS, de::toString(score).c_str());
|
es2aTextureMipmapTests.cpp | 364 int score = measureAccuracy(log, idealFrame, renderedFrame, bestScoreDiff, worstScoreDiff); local 365 m_testCtx.setTestResult(QP_TEST_RESULT_PASS, de::toString(score).c_str()); 631 int score = measureAccuracy(log, idealFrame, renderedFrame, bestScoreDiff, worstScoreDiff); local 632 m_testCtx.setTestResult(QP_TEST_RESULT_PASS, de::toString(score).c_str());
|
/external/deqp/modules/gles3/accuracy/ |
es3aVaryingInterpolationTests.cpp | 278 int score = tcu::measurePixelDiffAccuracy(log, "Result", "Image comparison result", reference, rendered, bestScoreDiff, worstScoreDiff, tcu::COMPARE_LOG_EVERYTHING); local 280 m_testCtx.setTestResult(QP_TEST_RESULT_PASS, de::toString(score).c_str());
|
es3aTextureFilteringTests.cpp | 296 int score = measureAccuracy(log, referenceFrame, renderedFrame, bestScoreDiff, worstScoreDiff); local 297 m_testCtx.setTestResult(QP_TEST_RESULT_PASS, de::toString(score).c_str()); 635 int score = measureAccuracy(log, referenceFrame, renderedFrame, bestScoreDiff, worstScoreDiff); local 636 m_testCtx.setTestResult(QP_TEST_RESULT_PASS, de::toString(score).c_str());
|
es3aTextureMipmapTests.cpp | 357 int score = measureAccuracy(log, idealFrame, renderedFrame, bestScoreDiff, worstScoreDiff); local 358 m_testCtx.setTestResult(QP_TEST_RESULT_PASS, de::toString(score).c_str()); 620 int score = measureAccuracy(log, idealFrame, renderedFrame, bestScoreDiff, worstScoreDiff); local 621 m_testCtx.setTestResult(QP_TEST_RESULT_PASS, de::toString(score).c_str());
|
/frameworks/ml/bordeaux/learning/predictor_histogram/java/android/bordeaux/learning/ |
HistogramPredictor.java | 130 // those as having count one. Hence their score, i.e. log(count) 134 double score = Math.log((double) count); local 135 classScores.put(app, score);
|
/hardware/samsung_slsi/exynos5/include/ |
ExynosCamera.h | 423 int getDetectedFacesAreas(int num, int *id, int *score, ExynosRect *face, ExynosRect *leftEye, ExynosRect *rightEye, ExynosRect *mouth); 426 int getDetectedFacesAreas(int num, int *id, int *score, ExynosRect2 *face, ExynosRect2 *leftEye, ExynosRect2 *rightEye, ExynosRect2 *mouth);
|
/external/freetype/src/autofit/ |
aflatin.c | 1456 FT_Pos dist_demerit, score; local [all...] |
/packages/apps/Camera/src/com/android/camera/ui/ |
FaceView.java | 202 if (mFaces[i].score < 50) continue;
|
/external/valgrind/main/coregrind/ |
m_transtab.c | 2301 static ULong score ( TTEntry* tte ) function [all...] |
/external/apache-xml/src/main/java/org/apache/xpath/axes/ |
WalkerFactory.java | 903 XNumber score = pat.getStaticScore(); local 912 attrPat.setStaticScore(score); 941 // We need to keep the new nodetest from affecting the score... 942 XNumber score = tail.getStaticScore(); local 944 tail.setStaticScore(score); 945 selfPattern.setStaticScore(score); [all...] |
/external/deqp/framework/common/ |
tcuImageCompare.cpp | 333 int score = deClamp32(deFloorFloatToInt32(100.0f - (de::max(sum-(float)bestScoreDiff, 0.0f) / (float)(worstScoreDiff-bestScoreDiff))*100.0f), 0, 100); local 338 if (logMode == COMPARE_LOG_EVERYTHING || score <= failThreshold) 359 if (logMode != COMPARE_LOG_ON_ERROR || score <= failThreshold) 361 << TestLog::Integer("Score", "Score", "", QP_KEY_TAG_QUALITY, score); 363 return score; [all...] |
/frameworks/base/services/core/java/com/android/server/ |
ConnectivityService.java | 1866 Integer score = (Integer) msg.obj; local 2141 int score = 0; local [all...] |
/external/qemu/ |
block.c | 274 int score_max = 0, score; local 279 score = d->bdrv_probe_device(filename); 280 if (score > score_max) { 281 score_max = score; 337 int ret, score, score_max; local 370 score = drv1->bdrv_probe(buf, ret, filename); 371 if (score > score_max) { 372 score_max = score; [all...] |