Searched defs:correct (Results 1 - 25 of 30) sorted by relevance

12

/external/compiler-rt/test/builtins/Unit/
H A Dpowidf2_test.c25 int correct = (x == expected) && (signbit(x) == signbit(expected)); local
26 if (!correct)
29 return !correct;
H A Dpowisf2_test.c25 int correct = (x == expected) && (signbit(x) == signbit(expected)); local
26 if (!correct)
29 return !correct;
H A Dpowitf2_test.c28 int correct = (x == expected) && (signbit(x) == signbit(expected)); local
29 if (!correct)
32 return !correct;
H A Dpowixf2_test.c27 int correct = (x == expected) && (signbit(x) == signbit(expected)); local
28 if (!correct)
31 return !correct;
/external/opencv3/modules/video/src/
H A Dkalman.cpp104 const Mat& KalmanFilter::correct(const Mat& measurement) function in class:cv::KalmanFilter
/external/skia/tests/
H A DSkNxTest.cpp180 // This way should always be exactly correct.
181 int correct = (av * bv).div255()[0]; local
182 REPORTER_ASSERT(r, correct == exact);
184 // We're a bit more flexible on this method: correct for 0 or 255, otherwise off by <=1.
/external/icu/icu4j/perf-tests/src/com/ibm/icu/dev/test/perf/
H A DBreakIteratorPerformanceTest.java121 PerfTest.Function createTestICU(final com.ibm.icu.text.BreakIterator iIter, final String[] correct, argument
129 if (!correct[k++].equals(fileContents.substring(start, end)))
132 if (k != correct.length)
143 PerfTest.Function createTestJava(final java.text.BreakIterator jIter, final String[] correct, final String breakType) { argument
149 if (!correct[k++].equals(fileContents.substring(start, end)))
152 if (k != correct.length)
/external/opencv3/modules/flann/include/opencv2/flann/
H A Dindex_testing.h105 int correct = 0; local
112 correct = 0;
118 correct += countCorrectMatches(neighbors,matches[i], nn);
125 float precicion = (float)correct/(nn*testData.rows);
/external/zopfli/src/zopflipng/
H A Dzopflipng_bin.cc220 bool correct = true; local
221 if ((value.size() + 1) % 5 != 0) correct = false;
222 for (size_t i = 0; i + 4 <= value.size() && correct; i += 5) {
224 if (i > 4 && value[i - 1] != ',') correct = false;
226 if (!correct) {
/external/opencv3/modules/calib3d/test/
H A Dtest_fisheye.cpp112 cv::Mat correct = cv::imread(combine(datasets_repository_path, "new_f_100.png")); local
113 if (correct.empty())
116 EXPECT_MAT_NEAR(correct, undistorted, 1e-10);
122 cv::Mat correct = cv::imread(combine(datasets_repository_path, "balance_1.0.png")); local
123 if (correct.empty())
126 EXPECT_MAT_NEAR(correct, undistorted, 1e-10);
133 cv::Mat correct = cv::imread(combine(datasets_repository_path, "balance_0.0.png")); local
134 if (correct.empty())
137 EXPECT_MAT_NEAR(correct, undistorted, 1e-10);
433 cv::Mat correct local
[all...]
/external/regex-re2/re2/testing/
H A Dtester.cc453 // Checks whether r is okay given that correct is the right answer.
456 static bool ResultOkay(const Result& r, const Result& correct) { argument
459 if (r.matched != correct.matched)
463 if (correct.submatch[i].begin() != r.submatch[i].begin() ||
464 correct.submatch[i].size() != r.submatch[i].size())
477 Result correct; local
478 RunSearch(kEngineBacktrack, text, context, anchor, &correct);
479 if (correct.skipped) {
501 if (ResultOkay(r, correct)) {
520 if (r.matched != correct
[all...]
/external/ImageMagick/MagickCore/
H A Dsegment.c717 correct,
755 correct=(-1);
763 correct=center;
768 if (correct == -1)
775 correct=left;
780 if (correct == -1)
787 correct=right;
791 if (correct != -1)
792 zero_crossing[i].crossings[correct]=(short) l;
710 correct, local
/external/opencv3/modules/java/src/
H A Dvideo+KalmanFilter.java78 // C++: Mat correct(Mat measurement)
81 //javadoc: KalmanFilter::correct(measurement)
82 public Mat correct(Mat measurement) method in class:KalmanFilter
389 // C++: Mat correct(Mat measurement)
/external/libpng/contrib/libtests/
H A Dtarith.c330 /* Test this character (ch) to ensure the parser does the correct thing.
645 * numbers, so correct for that here.
793 double correct = -log(i/255.)/log(2.)*65536; local
794 double error = png_log8bit(i) - correct;
800 i != 0 && png_log8bit(i) != floor(correct+.5))
803 i, png_log8bit(i), correct);
813 double correct = -log(i/65535.)/log(2.)*65536; local
814 double error = png_log16bit(i) - correct;
820 i != 0 && png_log16bit(i) != floor(correct+.5))
825 " error: %f\n", i, png_log16bit(i), correct, erro
837 double correct = exp(-i/65536. * log(2.)) * (65536. * 65536); local
855 double correct = exp(-i/65536. * log(2.)) * 255; local
873 double correct = exp(-i/65536. * log(2.)) * 65535; local
902 double correct = pow(j/255., g) * 255; local
921 double correct = pow(j/65535., g) * 65535; local
[all...]
H A Dpngvalid.c16 * read code) and validates that the result has the correct data.
714 png_uint_32 id; /* must be correct (see FILEID) */
1076 /* Return a single row from the correct image. */
3769 /* Use a compressed text string to test the correct interaction of text
3859 /* Use a compressed text string to test the correct interaction of text
3989 /* Use a compressed text string to test the correct interaction of text
4112 /* Use a compressed text string to test the correct interaction of text
4474 png_const_charp correct = "29 Aug 2079 13:53:60 +0000"; local
4509 if (strcmp(result, correct) != 0)
4515 pos = safecat(msg, sizeof msg, pos, correct);
[all...]
/external/skia/src/core/
H A DSkRecordDraw.cpp522 SkRect correct = *rect; local
532 correct.fLeft += metrics.fXMin;
533 correct.fTop += metrics.fTop;
534 correct.fRight += metrics.fXMax;
535 correct.fBottom += metrics.fBottom;
537 SkASSERTF(paint.getTextSize() < 0.001f || rect->contains(correct),
/external/webrtc/webrtc/base/
H A Dsslstreamadapter_unittest.cc328 void SetPeerIdentitiesByDigest(bool correct) { argument
339 if (!correct) {
351 if (!correct) {
/external/pdfium/third_party/libopenjpeg20/
H A Dj2k.h447 OPJ_BOOL correct; member in struct:opj_cp
475 /** Only tiles index in the correct range will be decoded.*/
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/
H A Dorg.eclipse.jdt.core_3.6.2.v_A76_R36x.jarMETA-INF/MANIFEST.MF META-INF/ECLIPSEF.SF META-INF/ECLIPSEF.RSA META ...
/external/guice/extensions/struts2/lib/
H A Dcore-3.1.1.jarMETA-INF/ org/ org/eclipse/ org/eclipse/jdt/ org/eclipse/jdt/core/ org/eclipse/jdt/core/compiler/ org/ ...
/external/libgdx/backends/gdx-backend-moe/libs/
H A Dintel-moe-core.jarMETA-INF/ META-INF/MANIFEST.MF LICENSE SQLite/ SQLite/Authorizer.class Authorizer.java package ...
/external/icu/tools/srcgen/currysrc/libs/
H A Dorg.eclipse.jdt.core_3.11.0.v20150602-1242.jarMETA-INF/MANIFEST.MF META-INF/ECLIPSE_.SF META-INF/ECLIPSE_.RSA META ...
/external/dagger2/lib/
H A Dgoogle-java-format-0.1-20151017.042846-2.jarMETA-INF/ META-INF/MANIFEST.MF com/ com/google/ com/google/googlejavaformat/ com/google/googlejavaformat/CloseOp ...
/external/robolectric/v3/runtime/
H A Dandroid-all-4.1.2_r1-robolectric-0.jarMETA-INF/ META-INF/MANIFEST.MF android/ android/accessibilityservice/ android/accessibilityservice/AccessibilityService$1.class ...
H A Dandroid-all-4.2.2_r1.2-robolectric-0.jarMETA-INF/ META-INF/MANIFEST.MF android/ android/accessibilityservice/ android/accessibilityservice/AccessibilityService$1.class ...

Completed in 663 milliseconds

12