Home
last modified time | relevance | path

Searched refs:exp_max (Results 1 – 2 of 2) sorted by relevance

/external/libxml2/
Dxmlregexp.c6454 #define exp_max field.count.f_max macro
6715 if ((insert->exp_min == min) && (insert->exp_max == max) && in xmlExpHashGetEntry()
6741 entry->exp_max = max; in xmlExpHashGetEntry()
7146 if (exp->exp_max == 0) in xmlExpStringDeriveInt()
7157 if (exp->exp_max == 1) in xmlExpStringDeriveInt()
7159 if (exp->exp_max < 0) /* unbounded */ in xmlExpStringDeriveInt()
7162 max = exp->exp_max - 1; in xmlExpStringDeriveInt()
7401 (sub->exp_max == 1) && in xmlExpExpDeriveInt()
7461 if (sub->exp_max < 0) in xmlExpExpDeriveInt()
7464 max = sub->exp_max -1; in xmlExpExpDeriveInt()
[all …]
/external/webp/src/enc/
Dquant.c309 const double exp_max = 0.9; in QualityToJPEGCompression() local
310 const double slope = (exp_min - exp_max) / (amax - amin); in QualityToJPEGCompression()
314 : (alpha < amin) ? exp_max in QualityToJPEGCompression()
315 : exp_max + slope * (alpha - amin); in QualityToJPEGCompression()