HomeSort by relevance Sort by last modified time
    Searched refs:max_dist (Results 1 - 20 of 20) sorted by null

  /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;
  /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;
cvshapedescr.cpp 181 float max_dist = 0; local
195 if( max_dist < dist )
197 max_dist = dist;
203 if( max_dist == 0 )
    [all...]
  /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);
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);
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);
  /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/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/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/chromium_org/third_party/mesa/src/src/gallium/drivers/r600/
evergreen_state.c 1641 uint32_t max_dist, num_regs, *sample_locs; local
1839 unsigned max_dist = cayman_set_ms_pos(ctx, rstate, nr_samples); local
1854 unsigned max_dist = evergreen_set_ms_pos(ctx, rstate, nr_samples); local
    [all...]
r600_state.c 1588 uint32_t tl, br, i, nr_samples, max_dist; local
    [all...]
  /external/mesa3d/src/gallium/drivers/r600/
evergreen_state.c 1641 uint32_t max_dist, num_regs, *sample_locs; local
1839 unsigned max_dist = cayman_set_ms_pos(ctx, rstate, nr_samples); local
1854 unsigned max_dist = evergreen_set_ms_pos(ctx, rstate, nr_samples); local
    [all...]
r600_state.c 1588 uint32_t tl, br, i, nr_samples, max_dist; local
    [all...]

Completed in 322 milliseconds