Searched refs:exp_max (Results 1 - 3 of 3) sorted by relevance

/external/libxml2/
H A Dxmlregexp.c6460 #define exp_max field.count.f_max macro
6721 if ((insert->exp_min == min) && (insert->exp_max == max) &&
6747 entry->exp_max = max;
7152 if (exp->exp_max == 0)
7163 if (exp->exp_max == 1)
7165 if (exp->exp_max < 0) /* unbounded */
7168 max = exp->exp_max - 1;
7407 (sub->exp_max == 1) &&
7467 if (sub->exp_max < 0)
7470 max = sub->exp_max
[all...]
/external/opencv3/3rdparty/libwebp/enc/
H A Dquant.c251 const double exp_max = 0.9; local
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);
/external/webp/src/enc/
H A Dquant.c333 const double exp_max = 0.9; local
334 const double slope = (exp_min - exp_max) / (amax - amin);
335 // Linearly interpolate 'expn' from exp_min to exp_max
338 : (alpha < amin) ? exp_max
339 : exp_max + slope * (alpha - amin);

Completed in 110 milliseconds