Searched refs:minT (Results 1 – 4 of 4) sorted by relevance
/external/opencv3/modules/imgproc/src/opencl/ |
D | filterSepRow.cl | 77 #define EXTRAPOLATE(t, minT, maxT) \ 79 t = max(min(t, (maxT) - 1), (minT)); \ 82 #define EXTRAPOLATE(x, minT, maxT) \ 84 if (t < (minT)) \ 90 #define EXTRAPOLATE_(t, minT, maxT, delta) \ 92 if ((maxT) - (minT) == 1) \ 93 t = (minT); \ 97 if (t < (minT)) \ 98 t = (minT) - (t - (minT)) - 1 + delta; \ 102 while (t >= (maxT) || t < (minT)); \ [all …]
|
/external/opencv3/3rdparty/openexr/Imath/ |
D | ImathBox.h | 88 Box (const T &minT, const T &maxT); 161 inline Box<T>::Box (const T &minT, const T &maxT) in Box() argument 163 min = minT; in Box() 359 Box (const Vec2<T> &minT, const Vec2<T> &maxT); 417 inline Box<Vec2<T> >::Box (const Vec2<T> &minT, const Vec2<T> &maxT) in Box() argument 419 min = minT; in Box() 601 Box (const Vec3<T> &minT, const Vec3<T> &maxT); 660 inline Box<Vec3<T> >::Box (const Vec3<T> &minT, const Vec3<T> &maxT) in Box() argument 662 min = minT; in Box()
|
D | ImathInterval.h | 75 Interval(const T& minT, const T& maxT);
|
/external/skia/src/gpu/batches/ |
D | GrAAConvexTessellator.cpp | 597 SkScalar minDist = SK_ScalarMax, minT = 0.0f; in createInsetRing() local 608 minT = t; in createInsetRing() 617 newPt.scale(minT); in createInsetRing()
|