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

  /external/opencv3/3rdparty/include/ffmpeg_/libavutil/
common.h 94 * Clip a signed integer value into the amin-amax range.
97 * @param amax maximum value of the clip range
100 static av_always_inline av_const int av_clip_c(int a, int amin, int amax)
103 if (amin > amax) abort();
106 else if (a > amax) return amax;
111 * Clip a signed 64bit integer value into the amin-amax range.
114 * @param amax maximum value of the clip range
117 static av_always_inline av_const int64_t av_clip64_c(int64_t a, int64_t amin, int64_t amax)
120 if (amin > amax) abort()
    [all...]
  /external/opencv/cv/src/
cvdominants.cpp 56 CvSeq ** corners, int dmin2, int dmax2, int dneigh2, float amax )
71 float mincos = (float) cos( 3.14159265359 * amax / 180 );
86 if( (amax < 0) || (amax > 180) )
383 int amax = cvRound(parameter4); local
385 if( amax == 0 )
386 amax = 150;
395 dmin*dmin, dmax*dmax, dneigh*dneigh, (float)amax ));
  /external/libedit/src/
tokenizer.c 76 size_t argc, amax; /* Current and maximum number of args */ local
122 tok->amax = AINCR;
123 tok->argv = tok_malloc(sizeof(*tok->argv) * tok->amax);
415 if (tok->argc >= tok->amax - 4) {
417 tok->amax += AINCR;
418 p = tok_realloc(tok->argv, tok->amax * sizeof(*p));
  /external/chromium-trace/catapult/telemetry/telemetry/internal/image_processing/
image_util_numpy_impl.py 74 amax = np.maximum(image1, image2)
76 return amax - amin
85 return np.amax(_SimpleDiff(image1, image2)) <= tolerance
88 if np.amax(_SimpleDiff(image1[row], image2[row])) > tolerance:
  /external/libvncserver/libvncserver/
cursor.c 573 int amax = 255; /* alphaSource is always 8bits of info per pixel */ local
642 rsrc = (asrc * rsrc)/amax;
643 gsrc = (asrc * gsrc)/amax;
644 bsrc = (asrc * bsrc)/amax;
646 rdst = rsrc + ((amax - asrc) * rdst)/amax;
647 gdst = gsrc + ((amax - asrc) * gdst)/amax;
648 bdst = bsrc + ((amax - asrc) * bdst)/amax;
    [all...]
  /external/pdfium/third_party/lcms2-2.6/src/
cmsgmt.c 510 double amax, double amin,
531 if (Lab -> a < amin || Lab->a > amax||
558 // clip by amax
559 Lab -> a = amax;
560 Lab -> b = amax * slope;
  /external/eigen/blas/
level1_impl.h 100 Scalar amax = aa>ab ? a : b; local
101 r = amax>0 ? r : -r;
  /external/autotest/client/site_tests/power_SuspendStress/
power_SuspendStress.py 71 keyvals[key + '_max'] = numpy.amax(values)
  /external/opencv3/3rdparty/libwebp/enc/
quant.c 249 const double amax = 0.85; local
252 const double slope = (exp_min - exp_max) / (amax - amin);
254 // in the [amin, amax] range.
255 const double expn = (alpha > amax) ? exp_min
    [all...]
  /external/webp/src/enc/
quant.c 331 const double amax = 0.85; local
334 const double slope = (exp_min - exp_max) / (amax - amin);
336 // in the [amin, amax] range.
337 const double expn = (alpha > amax) ? exp_min
    [all...]
  /external/libpng/contrib/libtests/
pngstest.c 2648 png_byte in_use[256], amax = 0, bmax = 0; local
    [all...]
  /external/icu/icu4c/source/tools/tzcode/
zic.c 454 int amax = INT_MAX < SIZE_MAX ? INT_MAX : SIZE_MAX; local
455 if ((amax - 1) / 3 * 2 < *nitems_alloc)
    [all...]
  /external/pdfium/third_party/lcms2-2.6/include/
lcms2.h     [all...]

Completed in 320 milliseconds