/external/opencv/cv/src/ |
D | cvstereogc.cpp | 436 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/chromium_org/third_party/skia/tests/ |
D | PathOpsAngleIdeas.cpp | 792 double maxR = SK_ScalarMax; in DEF_TEST() local 813 maxR = SkTMin(maxR, mDistance(reporter, agrees, quad1, quad2)); in DEF_TEST() 829 maxR = SkTMin(maxR, mDistance(reporter, agrees, q1, q2)); in DEF_TEST() 846 maxR = SkTMin(maxR, mDistance(reporter, agrees, q1, q2)); in DEF_TEST() 858 SkDebugf("maxR=%1.9g\n", maxR); in DEF_TEST()
|
D | PaintTest.cpp | 221 SkRect maxR = fillR; in DEF_TEST() local 226 maxR.inset(-inset, -inset); in DEF_TEST() 229 REPORTER_ASSERT(reporter, maxR.contains(strokeR)); in DEF_TEST()
|
/external/skia/tests/ |
D | PathOpsAngleIdeas.cpp | 792 double maxR = SK_ScalarMax; in DEF_TEST() local 813 maxR = SkTMin(maxR, mDistance(reporter, agrees, quad1, quad2)); in DEF_TEST() 829 maxR = SkTMin(maxR, mDistance(reporter, agrees, q1, q2)); in DEF_TEST() 846 maxR = SkTMin(maxR, mDistance(reporter, agrees, q1, q2)); in DEF_TEST() 858 SkDebugf("maxR=%1.9g\n", maxR); in DEF_TEST()
|
D | PaintTest.cpp | 221 SkRect maxR = fillR; in DEF_TEST() local 226 maxR.inset(-inset, -inset); in DEF_TEST() 229 REPORTER_ASSERT(reporter, maxR.contains(strokeR)); in DEF_TEST()
|
/external/skia/src/effects/ |
D | SkMorphologyImageFilter.cpp | 103 int maxB = 0, maxG = 0, maxR = 0, maxA = 0; in dilate() local 111 if (r > maxR) maxR = r; in dilate() 114 *dptr = SkPackARGB32(maxA, maxR, maxG, maxB); in dilate()
|
/external/chromium_org/third_party/skia/src/effects/ |
D | SkMorphologyImageFilter.cpp | 106 int maxB = 0, maxG = 0, maxR = 0, maxA = 0; in dilate() local 114 if (r > maxR) maxR = r; in dilate() 117 *dptr = SkPackARGB32(maxA, maxR, maxG, maxB); in dilate()
|
/external/deqp/framework/common/ |
D | tcuTexCompareVerifier.cpp | 123 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() 217 const float maxR = maxV+totalErr; in isLinearCompareValid() local 219 if (de::inRange(result, minR, maxR)) in isLinearCompareValid() 328 const float maxR = maxV+totalErr; in isBilinearPCFCompareValid() local 330 if (de::inRange(result, minR, maxR)) in isBilinearPCFCompareValid() 489 const float maxR = maxF+totalErr; in isTrilinearPCFCompareValid() local 491 if (de::inRange(result, minR, maxR)) in isTrilinearPCFCompareValid()
|