Home
last modified time | relevance | path

Searched refs:amax (Results 1 – 13 of 13) 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/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/chromium-trace/catapult/telemetry/telemetry/internal/image_processing/
Dimage_util_numpy_impl.py79 amax = np.maximum(image1, image2)
81 return amax - amin
90 return np.amax(_SimpleDiff(image1, image2)) <= tolerance
93 if np.amax(_SimpleDiff(image1[row], image2[row])) > tolerance:
/external/pdfium/third_party/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/autotest/client/site_tests/power_SuspendStress/
Dpower_SuspendStress.py99 keyvals[key + '_max'] = numpy.amax(values)
/external/cblas/
DREADME60 Fixed the i?amax error that I reported three years ago: standard dictates
/external/eigen/Eigen/src/misc/
Dlapacke.h236 float* colcnd, float* amax );
240 double* rowcnd, double* colcnd, double* amax );
245 float* amax );
250 double* amax );
255 float* colcnd, float* amax );
259 double* rowcnd, double* colcnd, double* amax );
264 float* amax );
269 double* colcnd, double* amax );
532 float* rowcnd, float* colcnd, float* amax );
536 double* amax );
[all …]
/external/webp/src/enc/
Dquant_enc.c343 const double amax = 0.85; in QualityToJPEGCompression() local
346 const double slope = (exp_min - exp_max) / (amax - amin); in QualityToJPEGCompression()
349 const double expn = (alpha > amax) ? exp_min in QualityToJPEGCompression()
/external/libpng/contrib/libtests/
Dpngstest.c2648 png_byte in_use[256], amax = 0, bmax = 0; in compare_two_images() local
2675 if (aval > amax) in compare_two_images()
2676 amax = aval; in compare_two_images()
2752 if (amax >= a->image.colormap_entries) in compare_two_images()
2755 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/third_party/lcms2-2.6/include/
Dlcms2.h1872 double amax, double amin,