Searched defs:amin (Results 1 - 2 of 2) sorted by relevance

/external/pdfium/third_party/lcms2-2.6/src/
H A Dcmsgmt.c510 double amax, double amin,
531 if (Lab -> a < amin || Lab->a > amax||
571 // clip by amin
572 Lab -> a = amin;
573 Lab -> b = amin * slope;
509 cmsDesaturateLab(cmsCIELab* Lab, double amax, double amin, double bmax, double bmin) argument
/external/webp/src/enc/
H A Dquant.c330 const double amin = 0.30; local
334 const double slope = (exp_min - exp_max) / (amax - amin);
336 // in the [amin, amax] range.
338 : (alpha < amin) ? exp_max
339 : exp_max + slope * (alpha - amin);

Completed in 104 milliseconds