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

/external/libxml2/
H A Dxmlregexp.c6459 #define exp_min field.count.f_min macro
6721 if ((insert->exp_min == min) && (insert->exp_max == max) &&
6746 entry->exp_min = min;
7169 if (exp->exp_min > 0)
7170 min = exp->exp_min - 1;
7471 if (sub->exp_min > 0)
7472 min = sub->exp_min -1;
7536 if (exp->exp_min <= sub->exp_min * mult)
7539 min = exp->exp_min
[all...]
/external/python/cpython2/Lib/
H A Ddecimal.py1669 # exp_min is the smallest allowable exponent of the result,
1671 exp_min = len(self._int) + self._exp - context.prec
1672 if exp_min > Etop:
1673 # overflow: exp_min > Etop iff self.adjusted() > Emax
1679 self_is_subnormal = exp_min < Etiny
1681 exp_min = Etiny
1684 if self._exp < exp_min:
1685 digits = len(self._int) + self._exp - exp_min
1687 self = _dec_from_triple(self._sign, '1', exp_min-1)
1696 exp_min
[all...]
/external/webp/src/enc/
H A Dquant_enc.c344 const double exp_min = 0.4; local
346 const double slope = (exp_min - exp_max) / (amax - amin);
347 // Linearly interpolate 'expn' from exp_min to exp_max
349 const double expn = (alpha > amax) ? exp_min

Completed in 155 milliseconds