HomeSort by relevance Sort by last modified time
    Searched refs:confidence (Results 76 - 100 of 143) sorted by null

1 2 34 5 6

  /frameworks/base/core/java/android/view/
VelocityTracker.java 251 * Confidence (coefficient of determination), between 0 (no fit) and 1 (perfect fit).
253 public float confidence; field in class:VelocityTracker.Estimator
  /external/chromium_org/tools/auto_bisect/
bisect_perf_regression_test.py 45 """Checks whether the given sets of values have a given confidence score.
47 The score represents our confidence that the two sets of values wouldn't
52 score: Expected confidence score.
58 confidence = bisect_results.ConfidenceScore(
61 self.assertEqual(score, confidence)
64 # The good and bad sets contain the same values, so the confidence that
75 # Confidence is high if the two sets of values have no internal variance.
80 # The second set of numbers only contains one number, so confidence is 0.
84 # Confidence is zero if either or both samples are empty.
96 The confidence scores asserted below were all copied from the actua
    [all...]
  /frameworks/av/media/libmediaplayerservice/
MediaPlayerFactory.cpp 190 float confidence; local
191 if (SniffWVM(source, &mimeType, &confidence, NULL /* format */)) {
  /frameworks/av/media/libstagefright/mpeg2ts/
MPEG2TSExtractor.cpp 217 const sp<DataSource> &source, String8 *mimeType, float *confidence,
227 *confidence = 0.1f;
MPEG2PSExtractor.cpp 700 const sp<DataSource> &source, String8 *mimeType, float *confidence,
711 *confidence = 0.25f; // Slightly larger than .mp3 extractor's confidence
  /external/chromium_org/ui/events/gesture_detection/
velocity_tracker.cc 66 // Confidence (coefficient of determination), between 0 (no fit)
68 float confidence;
73 confidence = 0;
616 out_estimator->confidence = xdet * ydet;
627 out_estimator->confidence = 1;
808 out_estimator->confidence = 1.0f;
  /external/chromium_org/content/browser/speech/
google_streaming_remote_engine.cc 63 DVLOG(1) << " CONFIDENCE:\t" << alt.confidence();
436 hypothesis.confidence = ws_alternative.confidence();
438 hypothesis.confidence = ws_result.stability();
  /external/chromium_org/content/test/
mock_google_streaming_server.cc 95 proto_alternative->set_confidence(hypothesis.confidence);
  /external/clang/utils/analyzer/
CmpRuns.py 24 # to obtain a list of triples (a, b, confidence).
214 The result is the relation as a list of triples (a, b, confidence) where
216 confidence is a measure of the match quality (where 0 indicates equality,
270 a,b,confidence = res
283 elif confidence:
  /frameworks/native/libs/input/
VelocityTracker.cpp 254 "estimator (degree=%d, xCoeff=%s, yCoeff=%s, confidence=%f)",
259 estimator.confidence);
604 outEstimator->confidence = xdet * ydet;
606 ALOGD("estimate: degree=%d, xCoeff=%s, yCoeff=%s, confidence=%f",
610 outEstimator->confidence);
621 outEstimator->confidence = 1;
798 outEstimator->confidence = 1.0f;
914 outEstimator->confidence = 1;
    [all...]
  /external/opencv/cv/src/
cvfundam.cpp 65 CvMat* mask, double confidence=0.99, int maxIters=1000 );
68 double confidence=0.99, int maxIters=1000 );
164 double confidence, int maxIters )
226 niters = cvRANSACUpdateNumIters( confidence,
258 CvMat* mask, double confidence, int maxIters )
294 niters = cvRound(log(1-confidence)/log(1-pow(1-outlierRatio,(double)modelPoints)));
580 const double confidence = 0.99; local
620 result = estimator.runLMeDS( M, m, &_H, tempMask, confidence );
622 result = estimator.runRANSAC( M, m, &_H, tempMask, ransacReprojThreshold, confidence );
    [all...]
  /external/deqp/modules/gles3/performance/
es3pDepthTests.cpp 758 const float confidence = 0.60f; local
759 const LineParametersWithConfidence testParam = theilSenSiegelLinearRegression(testSamples, confidence);
766 log << TestLog::Message << "Offset & coefficient presented as [confidence interval min, estimate, confidence interval max]. Reported confidence interval for this test is " << confidence << TestLog::EndMessage;
777 log << TestLog::Message << "Coefficient confidence bounds include values below 0.0, the operation likely has neglible per-pixel cost" << TestLog::EndMessage;
782 log << TestLog::Message << "Coefficient confidence range is extremely large, cannot give reliable result" << TestLog::EndMessage;
783 m_results.addResult(QP_TEST_RESULT_PASS, "Result confidence extremely low");
1066 const float confidence = 0.60f local
    [all...]
  /frameworks/av/media/libstagefright/
WAVExtractor.cpp 534 const sp<DataSource> &source, String8 *mimeType, float *confidence,
551 *confidence = 0.3f;
FLACExtractor.cpp 840 const sp<DataSource> &source, String8 *mimeType, float *confidence,
855 *confidence = 0.5;
MP3Extractor.cpp 652 float *confidence, sp<AMessage> *meta) {
666 *confidence = 0.2f;
NuMediaExtractor.cpp 80 float confidence; local
82 bool success = SniffWVM(dataSource, &mimeType, &confidence, &dummy);
  /external/chromium_org/content/renderer/
speech_recognition_dispatcher.cc 205 confidences[i] = static_cast<float>(result.hypotheses[i].confidence);
  /external/netperf/
nettest_sdp.c 282 /* confidence interval (I really should have stayed awake during */
283 /* probstats :). If the user did not request confidence measurement */
284 /* (no confidence is the default) then we will only go though the */
285 /* loop once. the confidence stuff originates from the folks at IBM */
287 while (((confidence < 0) && (confidence_iteration < iteration_max)) ||
683 /* we were not measuring cpu, for the confidence stuff, we */
691 /* at this point, we want to calculate the confidence information. */
709 /* are for all the confidence stuff. we could make the values */
731 if (confidence < 0) {
732 /* we did not hit confidence, but were we asked to look for it? *
    [all...]
nettest_sctp.c 456 /* confidence interval (I really should have stayed awake during */
457 /* probstats :). If the user did not request confidence measurement */
458 /* (no confidence is the default) then we will only go though the */
459 /* loop once. the confidence stuff originates from the folks at IBM */
461 while (((confidence < 0) && (confidence_iteration < iteration_max)) ||
893 /* we were not measuring cpu, for the confidence stuff, we */
901 /* at this point, we want to calculate the confidence information. */
919 /* are for all the confidence stuff. we could make the values */
941 if (confidence < 0) {
942 /* we did not hit confidence, but were we asked to look for it? *
    [all...]
netlib.h 559 /* these are all for the confidence interval stuff */
560 extern double confidence;
nettest_bsd.c     [all...]
  /frameworks/av/media/libmediaplayerservice/nuplayer/
GenericSource.cpp 138 float confidence; local
142 success = SniffWVM(mDataSource, &mimeType, &confidence, &dummy);
525 float confidence; local
527 if (!mCachedSource->sniff(&tmp, &confidence, &meta)) {
    [all...]
  /art/tools/
cpplint.py 98 Every problem is given a confidence score from 1-5, with 5 meaning we are
832 def _ShouldPrintError(category, confidence, linenum):
833 """If confidence >= verbose, category passes filter and is not suppressed."""
840 if confidence < _cpplint_state.verbose_level:
859 def Error(filename, linenum, category, confidence, message):
862 We log where the error was found, and also our confidence in the error,
876 confidence: A number from 1-5 representing a confidence score for
881 if _ShouldPrintError(category, confidence, linenum):
885 filename, linenum, message, category, confidence))
    [all...]
  /external/compiler-rt/lib/sanitizer_common/scripts/
cpplint.py 98 Every problem is given a confidence score from 1-5, with 5 meaning we are
825 def _ShouldPrintError(category, confidence, linenum):
826 """If confidence >= verbose, category passes filter and is not suppressed."""
833 if confidence < _cpplint_state.verbose_level:
852 def Error(filename, linenum, category, confidence, message):
855 We log where the error was found, and also our confidence in the error,
869 confidence: A number from 1-5 representing a confidence score for
874 if _ShouldPrintError(category, confidence, linenum):
878 filename, linenum, message, category, confidence))
    [all...]
  /external/chromium_org/content/shell/renderer/test_runner/
test_runner.h 534 double confidence);

Completed in 1606 milliseconds

1 2 34 5 6