/external/webrtc/webrtc/modules/audio_coding/neteq/ |
D | audio_decoder_unittest.cc | 49 int tolerance, in CompareInputOutput() 67 int tolerance) { in CompareTwoChannels() 176 void EncodeDecodeTest(size_t expected_bytes, int tolerance, double mse, in EncodeDecodeTest() 479 int tolerance = 251; in TEST_F() local 505 int tolerance = 308; in TEST_F() local 517 int tolerance = 0; in TEST_F() local 530 int tolerance = 6808; in TEST_F() local 544 int tolerance = 3399; in TEST_F() local 557 int tolerance = 19757; in TEST_F() local 570 int tolerance = 11034; in TEST_F() local [all …]
|
/external/chromium-trace/catapult/telemetry/telemetry/internal/image_processing/ |
D | _bitmap.py | 64 def Histogram(self, ignore_color, tolerance): argument 75 def BoundingBox(self, color, tolerance): argument 162 def IsEqual(self, other, tolerance=0): argument 217 def GetBoundingBox(self, color, tolerance=0): argument 232 def ColorHistogram(self, ignore_color=None, tolerance=0): argument
|
D | image_util_bitmap_impl.py | 37 def AreEqual(bitmap1, bitmap2, tolerance, _): argument 43 def GetBoundingBox(bitmap, color, tolerance): argument 49 def GetColorHistogram(bitmap, ignore_color, tolerance): argument
|
D | image_util_numpy_impl.py | 78 def AreEqual(image1, image2, tolerance, likely_equal): argument 114 def GetBoundingBox(image, color, tolerance): argument 153 def GetColorHistogram(image, ignore_color, tolerance): argument
|
D | cv_util.py | 13 def AreLinesOrthogonal(line1, line2, tolerance): argument 69 def IsPointApproxOnLine(point, line, tolerance=1): argument
|
D | bitmaptools.cc | 153 int tolerance) { in PixelsEqual() 162 bool PixelsEqual(const unsigned char* pixel, int color, int tolerance) { in PixelsEqual() 171 int tolerance; in Histogram() local 200 int tolerance; in BoundingBox() local
|
/external/chromium-trace/catapult/telemetry/telemetry/util/ |
D | rgba_color.py | 15 def IsEqual(self, expected_color, tolerance=0): argument 25 def AssertIsRGB(self, r, g, b, tolerance=0): argument 28 def AssertIsRGBA(self, r, g, b, a, tolerance=0): argument
|
D | image_util.py | 84 def AreEqual(image1, image2, tolerance=0, likely_equal=True): argument 96 def GetBoundingBox(image, color, tolerance=0): argument 113 def GetColorHistogram(image, ignore_color=None, tolerance=0): argument
|
/external/skia/src/effects/ |
D | SkAvoidXfermode.cpp | 14 SkAvoidXfermode::SkAvoidXfermode(SkColor opColor, U8CPU tolerance, Mode mode) { in SkAvoidXfermode() 26 const unsigned tolerance = buffer.readUInt(); in CreateProc() local 186 static const GrFragmentProcessor* Create(SkColor opColor, uint8_t tolerance, in Create() 225 AvoidFP(SkColor opColor, uint8_t tolerance, in AvoidFP() 337 uint8_t tolerance = d->fRandom->nextBits(8); in TestCreate() local 354 SkColor opColor, uint8_t tolerance, SkAvoidXfermode::Mode mode) in AvoidXP() 464 static GrXPFactory* Create(SkColor opColor, uint8_t tolerance, in Create() 476 GrAvoidXPFactory(SkColor opColor, uint8_t tolerance, SkAvoidXfermode::Mode mode) in GrAvoidXPFactory() 516 uint8_t tolerance = d->fRandom->nextBits(8); in TestCreate() local
|
/external/guava/guava-gwt/src-super/com/google/common/math/super/com/google/common/math/ |
D | DoubleMath.java | 136 public static boolean fuzzyEquals(double a, double b, double tolerance) { in fuzzyEquals() 159 public static int fuzzyCompare(double a, double b, double tolerance) { in fuzzyCompare()
|
/external/ceres-solver/internal/ceres/ |
D | numeric_diff_test_utils.cc | 78 const double tolerance = (method == CENTRAL)? 3e-9 : 2e-5; in ExpectCostFunctionEvaluationIsNearlyCorrect() local 148 const double tolerance = (method == CENTRAL)? 3e-9 : 2e-5; in ExpectCostFunctionEvaluationIsNearlyCorrect() local
|
D | incomplete_lq_factorization_test.cc | 44 const double tolerance) { in ExpectMatricesAreEqual()
|
/external/eigen/test/eigen2/ |
D | eigen2_regression.cpp | 54 typename VectorType::Scalar tolerance) in check_linearRegression() 69 typename VectorType::Scalar tolerance) in check_fitHyperplane()
|
/external/eigen/Eigen/src/IterativeLinearSolvers/ |
D | IterativeSolverBase.h | 120 RealScalar tolerance() const { return m_tolerance; } in tolerance() function 123 Derived& setTolerance(const RealScalar& tolerance) in setTolerance()
|
/external/skia/include/client/android/ |
D | SkAvoidXfermode.h | 42 static SkAvoidXfermode* Create(SkColor opColor, U8CPU tolerance, Mode mode) { in Create()
|
/external/eigen/Eigen/src/SparseCore/ |
D | SparseSparseProductWithPruning.h | 20 …pl(const Lhs& lhs, const Rhs& rhs, ResultType& res, const typename ResultType::RealScalar& toleran… in sparse_sparse_product_with_pruning_impl()
|
/external/guava/guava/src/com/google/common/math/ |
D | DoubleMath.java | 351 public static boolean fuzzyEquals(double a, double b, double tolerance) { in fuzzyEquals() 374 public static int fuzzyCompare(double a, double b, double tolerance) { in fuzzyCompare()
|
/external/apache-commons-math/src/main/java/org/apache/commons/math/analysis/solvers/ |
D | MullerSolver.java | 240 … final double tolerance = FastMath.max(relativeAccuracy * FastMath.abs(x), absoluteAccuracy); in solve() local 394 … final double tolerance = FastMath.max(relativeAccuracy * FastMath.abs(x), absoluteAccuracy); in solve2() local
|
D | LaguerreSolver.java | 266 double tolerance = FastMath.max(relativeAccuracy * z.abs(), absoluteAccuracy); in isRootOK() local 397 double tolerance = FastMath.max(relativeAccuracy * z.abs(), in solve() local
|
D | RiddersSolver.java | 209 … final double tolerance = FastMath.max(relativeAccuracy * FastMath.abs(x), absoluteAccuracy); in solve() local
|
/external/skia/tests/ |
D | ColorMatrixTest.cpp | 19 SkColor expected, SkColor actual, int tolerance) { in assert_color()
|
D | Matrix44Test.cpp | 12 const double tolerance = 1e-7; in nearly_equal_double() local 20 const SkMScalar tolerance = SK_MScalar1 / 200000; in nearly_equal_mscalar() local 26 const SkScalar tolerance = SK_Scalar1 / 200000; in nearly_equal_scalar() local
|
/external/chromium-trace/catapult/telemetry/third_party/webpagereplay/ |
D | proxyshaper_test.py | 48 def assertValuesAlmostEqual(self, expected, actual, tolerance=0.05): argument
|
/external/webrtc/webrtc/modules/audio_processing/beamformer/ |
D | matrix_test_helpers.h | 81 float tolerance) { in ValidateMatrixNearEqualityComplexFloat()
|
/external/droiddriver/src/io/appium/droiddriver/helpers/ |
D | BaseDroidDriverTest.java | 235 int tolerance = 1; in runTest() local
|