Home
last modified time | relevance | path

Searched refs:amax (Results 1 – 11 of 11) sorted by relevance

/external/opencv/cv/src/
Dcvdominants.cpp56 CvSeq ** corners, int dmin2, int dmax2, int dneigh2, float amax ) in icvFindDominantPointsIPAN() argument
71 float mincos = (float) cos( 3.14159265359 * amax / 180 ); in icvFindDominantPointsIPAN()
86 if( (amax < 0) || (amax > 180) ) in icvFindDominantPointsIPAN()
383 int amax = cvRound(parameter4); in cvFindDominantPoints() local
385 if( amax == 0 ) in cvFindDominantPoints()
386 amax = 150; in cvFindDominantPoints()
395 … dmin*dmin, dmax*dmax, dneigh*dneigh, (float)amax )); in cvFindDominantPoints()
/external/jmonkeyengine/engine/src/terrain/com/jme3/terrain/noise/filter/
DHydraulicErodeFilter.java107 float amax = 0; in filter() local
115 if (a - at > a - amax) { in filter()
117 amax = at; in filter()
129 float dwj = Math.min(wt[idx], a - aa) * (a - amax) / dtotal; in filter()
/external/libedit/src/
Dtokenizer.c76 size_t argc, amax; /* Current and maximum number of args */ in TYPE() local
122 tok->amax = AINCR; in TYPE()
123 tok->argv = tok_malloc(sizeof(*tok->argv) * tok->amax); in TYPE()
415 if (tok->argc >= tok->amax - 4) { in FUN()
417 tok->amax += AINCR; in FUN()
418 p = tok_realloc(tok->argv, tok->amax * sizeof(*p)); in FUN()
/external/libvncserver/libvncserver/
Dcursor.c573 int amax = 255; /* alphaSource is always 8bits of info per pixel */ in rfbShowCursor() local
642 rsrc = (asrc * rsrc)/amax; in rfbShowCursor()
643 gsrc = (asrc * gsrc)/amax; in rfbShowCursor()
644 bsrc = (asrc * bsrc)/amax; in rfbShowCursor()
646 rdst = rsrc + ((amax - asrc) * rdst)/amax; in rfbShowCursor()
647 gdst = gsrc + ((amax - asrc) * gdst)/amax; in rfbShowCursor()
648 bdst = bsrc + ((amax - asrc) * bdst)/amax; in rfbShowCursor()
/external/pdfium/core/src/fxcodec/lcms2/lcms2-2.6/src/
Dcmsgmt.c510 double amax, double amin, in cmsDesaturateLab() argument
531 if (Lab -> a < amin || Lab->a > amax|| in cmsDesaturateLab()
559 Lab -> a = amax; in cmsDesaturateLab()
560 Lab -> b = amax * slope; in cmsDesaturateLab()
/external/eigen/blas/
Dlevel1_impl.h100 Scalar amax = aa>ab ? a : b; in EIGEN_BLAS_FUNC() local
101 r = amax>0 ? r : -r; in EIGEN_BLAS_FUNC()
/external/cblas/
DREADME60 Fixed the i?amax error that I reported three years ago: standard dictates
/external/webp/src/enc/
Dquant.c307 const double amax = 0.85; in QualityToJPEGCompression() local
310 const double slope = (exp_min - exp_max) / (amax - amin); in QualityToJPEGCompression()
313 const double expn = (alpha > amax) ? exp_min in QualityToJPEGCompression()
/external/libpng/contrib/libtests/
Dpngstest.c2764 png_byte in_use[256], amax = 0, bmax = 0; in compare_two_images() local
2791 if (aval > amax) in compare_two_images()
2792 amax = aval; in compare_two_images()
2868 if (amax >= a->image.colormap_entries) in compare_two_images()
2871 sprintf(pindex, "%d[%lu]", amax, in compare_two_images()
/external/icu/icu4c/source/tools/tzcode/
Dzic.c454 int amax = INT_MAX < SIZE_MAX ? INT_MAX : SIZE_MAX; in growalloc() local
455 if ((amax - 1) / 3 * 2 < *nitems_alloc) in growalloc()
/external/pdfium/core/src/fxcodec/lcms2/lcms2-2.6/include/
Dlcms2.h1872 double amax, double amin,