/external/skia/tests/ |
PaintTest.cpp | 89 SkRect maxR = fillR; 94 maxR.inset(-inset, -inset); 97 REPORTER_ASSERT(reporter, maxR.contains(strokeR));
|
/external/skia/legacy/src/effects/ |
SkMorphologyImageFilter.cpp | 86 int maxB = 0, maxG = 0, maxR = 0, maxA = 0; 94 if (r > maxR) maxR = r; 97 *dptr = SkPackARGB32(maxA, maxR, maxG, maxB);
|
/external/opencv/cv/src/ |
cvstereogc.cpp | 436 static inline int icvSmoothnessCostFunc( int da, int db, int maxR, const int* stabR, int scale ) 438 return da == db ? 0 : (da == OCCLUDED || db == OCCLUDED ? maxR : stabR[da - db])*scale; 531 int maxR = state2->interactionRadius; 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; 778 E0a = icvSmoothnessCostFunc( d, a, maxR, stabR, scale ); 779 Ea0 = icvSmoothnessCostFunc( a, d1, maxR, stabR, scale ) [all...] |
/external/skia/src/effects/ |
SkMorphologyImageFilter.cpp | 100 int maxB = 0, maxG = 0, maxR = 0, maxA = 0; 108 if (r > maxR) maxR = r; 111 *dptr = SkPackARGB32(maxA, maxR, maxG, maxB);
|
/external/jmonkeyengine/engine/src/core/com/jme3/collision/ |
SweepSphere.java | 117 private static float getLowestRoot(float a, float b, float c, float maxR) { 133 if (r1 > 0 && r1 < maxR){ 137 if (r2 > 0 && r2 < maxR){
|
/packages/apps/Browser/src/com/android/browser/view/ |
PieMenu.java | 409 int maxr = mRadius + mLevels * mRadiusInc + 50; local 426 if (polar.y > maxr) {
|
/frameworks/native/libs/gui/tests/ |
CpuConsumer_test.cpp | 423 unsigned short maxR = (maxBlockX == maxBlockY) ? 1000 : 200; 426 checkPixel(buf, w-1, h-1, maxR, maxG, maxB);
|
/external/mp4parser/isoparser/src/main/resources/ |
isoparser-default.properties | 212 #hinf-maxr=com.coremedia.iso.boxes.rtp.MaximumDataRateBox()
|
/external/libvpx/libvpx/vp8/encoder/ |
mcomp.c | 197 #define IFMVCV(r,c,s,e) if ( c >= minc && c <= maxc && r >= minr && r <= maxr) s else e; 226 int maxr = MIN(x->mv_row_max << 2, (ref_mv->as_mv.row >> 1) + ((1 << mvlong_width) - 1)); local [all...] |