Home
last modified time | relevance | path

Searched refs:maxR (Results 1 – 5 of 5) sorted by relevance

/external/opencv/cv/src/
Dcvstereogc.cpp436 static inline int icvSmoothnessCostFunc( int da, int db, int maxR, const int* stabR, int scale ) in icvSmoothnessCostFunc() argument
438 return da == db ? 0 : (da == OCCLUDED || db == OCCLUDED ? maxR : stabR[da - db])*scale; in icvSmoothnessCostFunc()
531 int maxR = state2->interactionRadius; in icvComputeEnergy() local
567 E += icvSmoothnessCostFunc(d, d1, maxR, stabR, stabI[left[x*3] - left[x*3+3]] ); in icvComputeEnergy()
572 E += icvSmoothnessCostFunc(d, d1, maxR, stabR, stabI[left[x*3] - left[x*3+step]] ); in icvComputeEnergy()
582 E += icvSmoothnessCostFunc(d, d1, maxR, stabR, stabI[right[x*3] - right[x*3+3]] ); in icvComputeEnergy()
587 … E += icvSmoothnessCostFunc(d, d1, maxR, stabR, stabI[right[x*3] - right[x*3+step]] ); in icvComputeEnergy()
670 int maxR = state2->interactionRadius; in icvAlphaExpand() local
778 E0a = icvSmoothnessCostFunc( d, a, maxR, stabR, scale ); in icvAlphaExpand()
779 Ea0 = icvSmoothnessCostFunc( a, d1, maxR, stabR, scale ); in icvAlphaExpand()
[all …]
/external/skia/tests/
DPathOpsAngleIdeas.cpp814 double maxR = SK_ScalarMax; in DEF_TEST() local
838 maxR = SkTMin(maxR, mDistance(reporter, agrees, quad1, quad2)); in DEF_TEST()
854 maxR = SkTMin(maxR, mDistance(reporter, agrees, q1, q2)); in DEF_TEST()
871 maxR = SkTMin(maxR, mDistance(reporter, agrees, q1, q2)); in DEF_TEST()
883 SkDebugf("maxR=%1.9g\n", maxR); in DEF_TEST()
DPaintTest.cpp192 SkRect maxR = fillR; in DEF_TEST() local
197 maxR.inset(-inset, -inset); in DEF_TEST()
200 REPORTER_ASSERT(reporter, maxR.contains(strokeR)); in DEF_TEST()
/external/deqp/framework/common/
DtcuTexCompareVerifier.cpp123 const float maxR = result+err; in isResultInSet() local
125 return (resultSet.isTrue && de::inRange(1.0f, minR, maxR)) || in isResultInSet()
126 (resultSet.isFalse && de::inRange(0.0f, minR, maxR)); in isResultInSet()
240 const float maxR = maxV+totalErr; in isLinearCompareValid() local
242 if (de::inRange(result, minR, maxR)) in isLinearCompareValid()
351 const float maxR = maxV+totalErr; in isBilinearPCFCompareValid() local
353 if (de::inRange(result, minR, maxR)) in isBilinearPCFCompareValid()
512 const float maxR = maxF+totalErr; in isTrilinearPCFCompareValid() local
514 if (de::inRange(result, minR, maxR)) in isTrilinearPCFCompareValid()
/external/skia/tools/
Dsk_tool_utils.cpp586 SkScalar maxR = SkTMax(ur.fX, lr.fX); in compute_tallest_occluder() local
588 return SkRect::MakeLTRB(r.fLeft + maxL, r.fTop, r.fRight - maxR, r.fBottom); in compute_tallest_occluder()