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

  /external/eigen/blas/
level1_impl.h 100 Scalar amax = aa>ab ? a : b; local
101 r = amax>0 ? r : -r;
  /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/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/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/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...]

Completed in 1977 milliseconds