Home | History | Annotate | Download | only in enc

Lines Matching refs:exp_max

251   const double exp_max = 0.9;
252 const double slope = (exp_min - exp_max) / (amax - amin);
253 // Linearly interpolate 'expn' from exp_min to exp_max
256 : (alpha < amin) ? exp_max
257 : exp_max + slope * (alpha - amin);