HomeSort by relevance Sort by last modified time
    Searched full:max_dist (Results 1 - 25 of 37) sorted by null

1 2

  /external/opencv/cv/src/
cvapprox.cpp 575 int max_dist = 0; local
589 if( dist > max_dist )
591 max_dist = dist;
596 le_eps = max_dist <= eps;
630 int dx, dy, dist, max_dist = 0; local
642 if( dist > max_dist )
644 max_dist = dist;
649 le_eps = (double)max_dist * max_dist <= eps * ((double)dx * dx + (double)dy * dy);
780 double max_dist = 0 local
835 double dx, dy, dist, max_dist = 0; local
    [all...]
cvrotcalipers.cpp 96 float max_dist = 0; local
259 if( dist > max_dist )
260 max_dist = dist;
337 out[0] = max_dist;
  /frameworks/rs/java/tests/ImageProcessing/src/com/android/rs/image/
vignette.rsh 34 const float max_dist = 0.5f * length(axis_scale);
35 sloped_inv_max_dist = desired_slope * 1.f/max_dist;
vignette_approx.rsh 34 const float max_dist = 0.5f * length(axis_scale);
35 sloped_inv_max_dist = desired_slope * 1.f/max_dist;
  /frameworks/rs/java/tests/ImageProcessing2/src/com/android/rs/image/
vignette.rsh 34 const float max_dist = 0.5f * length(axis_scale);
35 sloped_inv_max_dist = desired_slope * 1.f/max_dist;
vignette_approx.rsh 34 const float max_dist = 0.5f * length(axis_scale);
35 sloped_inv_max_dist = desired_slope * 1.f/max_dist;
  /frameworks/rs/java/tests/ImageProcessing_jb/src/com/android/rs/image/
vignette.rsh 34 const float max_dist = 0.5f * length(axis_scale);
35 sloped_inv_max_dist = desired_slope * 1.f/max_dist;
vignette_approx.rsh 34 const float max_dist = 0.5f * length(axis_scale);
35 sloped_inv_max_dist = desired_slope * 1.f/max_dist;
  /frameworks/base/media/mca/filterpacks/java/android/filterpacks/imageproc/
DocumentaryFilter.java 155 float max_dist = ((float) Math.sqrt(scale[0] * scale[0] + scale[1] * scale[1])) * 0.5f; local
158 mProgram.setHostValue("inv_max_dist", 1.0f / max_dist);
VignetteFilter.java 105 float max_dist = ((float) Math.sqrt(scale[0] * scale[0] + scale[1] * scale[1])) * 0.5f; local
107 mProgram.setHostValue("inv_max_dist", 1f / max_dist);
LomoishFilter.java 164 float max_dist = ((float) Math.sqrt(scale[0] * scale[0] + scale[1] * scale[1])) * 0.5f; local
167 mProgram.setHostValue("inv_max_dist", 1.0f / max_dist);
  /external/iproute2/tc/
q_netem.c 53 #define MAX_DIST (16*1024)
380 dist_data = calloc(sizeof(dist_data[0]), MAX_DIST);
381 dist_size = get_distribution(*argv, dist_data, MAX_DIST);
486 if (addattr_l(n, MAX_DIST * sizeof(dist_data[0]),
  /external/jpeg/
jquant2.c 661 INT32 minmaxdist, min_dist, max_dist, tdist; local
694 max_dist = tdist*tdist;
699 max_dist = tdist*tdist;
705 max_dist = tdist*tdist;
708 max_dist = tdist*tdist;
717 max_dist += tdist*tdist;
722 max_dist += tdist*tdist;
727 max_dist += tdist*tdist;
730 max_dist += tdist*tdist;
739 max_dist += tdist*tdist
    [all...]
  /external/qemu/distrib/jpeg-6b/
jquant2.c 661 INT32 minmaxdist, min_dist, max_dist, tdist; local
694 max_dist = tdist*tdist;
699 max_dist = tdist*tdist;
705 max_dist = tdist*tdist;
708 max_dist = tdist*tdist;
717 max_dist += tdist*tdist;
722 max_dist += tdist*tdist;
727 max_dist += tdist*tdist;
730 max_dist += tdist*tdist;
739 max_dist += tdist*tdist
    [all...]
  /external/chromium_org/third_party/yasm/source/patched-yasm/libyasm/tests/
opt-gvmat64.asm 244 ;;; IPos limit = s->strstart > (IPos)MAX_DIST(s) ?
245 ;;; s->strstart - (IPos)MAX_DIST(s) : NIL;
247 mov eax,07efah ; MAX_DIST = (WSIZE-MIN_LOOKAHEAD) (0x8000-(3+8+1))
  /external/zlib/src/contrib/masmx64/
gvmat64.asm 282 ;;; IPos limit = s->strstart > (IPos)MAX_DIST(s) ?
283 ;;; s->strstart - (IPos)MAX_DIST(s) : NIL;
285 mov eax,07efah ; MAX_DIST = (WSIZE-MIN_LOOKAHEAD) (0x8000-(3+8+1))
  /external/opencv/ml/src/
mlem.cpp 587 double max_dist = DBL_MAX; local
689 max_dist = 0;
723 if( max_dist < dist )
724 max_dist = dist;
728 if( max_dist < termcrit.epsilon )
    [all...]
  /external/opencv/cxcore/src/
cxutils.cpp 63 double max_dist; local
103 max_dist = termcrit.epsilon*2;
136 max_dist = 0;
164 if( max_dist < dist )
165 max_dist = dist;
208 if( max_dist < termcrit.epsilon )
    [all...]
  /external/qemu/distrib/zlib-1.2.3/
deflate.c 335 if (length > MAX_DIST(s)) {
336 length = MAX_DIST(s);
    [all...]
deflate.h 276 #define MAX_DIST(s) ((s)->w_size-MIN_LOOKAHEAD)
278 * distances are limited to MAX_DIST instead of WSIZE.
  /external/chromium_org/third_party/zlib/
deflate.h 288 #define MAX_DIST(s) ((s)->w_size-MIN_LOOKAHEAD)
290 * distances are limited to MAX_DIST instead of WSIZE.
  /external/zlib/src/contrib/amd64/
amd64-match.S 204 /* IPos limit = s->strstart > (IPos)MAX_DIST(s) ? */
205 /* s->strstart - (IPos)MAX_DIST(s) : NIL; */
  /external/zlib/src/contrib/asm686/
match.S 164 /* IPos limit = s->strstart > (IPos)MAX_DIST(s) ? */
165 /* s->strstart - (IPos)MAX_DIST(s) : NIL; */
  /external/zlib/src/contrib/gcc_gvmat64/
gvmat64.S 263 //;;; IPos limit = s->strstart > (IPos)MAX_DIST(s) ?
264 //;;; s->strstart - (IPos)MAX_DIST(s) : NIL;
  /external/zlib/src/contrib/masmx86/
match686.asm 267 ;;; IPos limit = s->strstart > (IPos)MAX_DIST(s) ?
268 ;;; s->strstart - (IPos)MAX_DIST(s) : NIL;

Completed in 629 milliseconds

1 2