Home
last modified time | relevance | path

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

/external/libxml2/
Dxmlregexp.c6460 #define exp_max field.count.f_max macro
6721 if ((insert->exp_min == min) && (insert->exp_max == max) && in xmlExpHashGetEntry()
6747 entry->exp_max = max; in xmlExpHashGetEntry()
7152 if (exp->exp_max == 0) in xmlExpStringDeriveInt()
7163 if (exp->exp_max == 1) in xmlExpStringDeriveInt()
7165 if (exp->exp_max < 0) /* unbounded */ in xmlExpStringDeriveInt()
7168 max = exp->exp_max - 1; in xmlExpStringDeriveInt()
7407 (sub->exp_max == 1) && in xmlExpExpDeriveInt()
7467 if (sub->exp_max < 0) in xmlExpExpDeriveInt()
7470 max = sub->exp_max -1; in xmlExpExpDeriveInt()
[all …]
/external/webp/src/enc/
Dquant_enc.c345 const double exp_max = 0.9; in QualityToJPEGCompression() local
346 const double slope = (exp_min - exp_max) / (amax - amin); in QualityToJPEGCompression()
350 : (alpha < amin) ? exp_max in QualityToJPEGCompression()
351 : exp_max + slope * (alpha - amin); in QualityToJPEGCompression()