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

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

Completed in 162 milliseconds