Searched defs:minDist (Results 1 - 5 of 5) sorted by relevance

/external/skia/src/pathops/
H A DSkPathOpsCurve.cpp37 double minDist = FLT_MAX; local
40 if (minDist > dist) {
41 minDist = dist;
49 if (!AlmostEqualUlps_Pin(largest, largest + minDist)) { // is distance within ULPS tolerance?
/external/skqp/src/pathops/
H A DSkPathOpsCurve.cpp37 double minDist = FLT_MAX; local
40 if (minDist > dist) {
41 minDist = dist;
49 if (!AlmostEqualUlps_Pin(largest, largest + minDist)) { // is distance within ULPS tolerance?
/external/deqp/framework/common/
H A DtcuFuzzyImageCompare.cpp216 deUint32 minDist = colorDistSquared(pixel, readUnorm8<NumChannels>(surface, x, y)); local
218 if (minDist == 0)
219 return minDist;
242 minDist = de::min(minDist, colorDistSquared(pixel, readUnorm8<NumChannels>(surface, dx, dy)));
243 if (minDist == 0)
244 return minDist;
255 minDist = de::min(minDist, colorDistSquared(pixel, sample));
256 if (minDist
[all...]
/external/opencv/cvaux/src/
H A Dcvcorrimages.cpp130 double minDist; local
136 minDist = 5;
137 cvGoodFeaturesToTrack(grayImage, eigImage, tmpImage, cornerPoints, &foundNum, quality, minDist);
H A Dcvepilines.cpp1951 double minDist = 10000000; local
1958 if( dist < minDist)
1960 minDist = dist;
2224 float minDist = (float)(INT_MAX); local
2240 if( dist < minDist )
2242 minDist = dist;
3285 float minDist = (float)(INT_MAX);
3298 if( dist < minDist )
3300 minDist = dist;
3368 float minDist
[all...]

Completed in 172 milliseconds