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

/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/
H A Ddecimal.py369 necessary, so that its exponent is not less than Etiny. This may result
370 in 0 with the sign of the intermediate result and an exponent of Etiny.
1317 return _dec_from_triple(sign, '0', context.Etiny())
1652 # if self is zero then exponent should be between Etiny and
1653 # Emax if _clamp==0, and between Etiny and Etop if _clamp==1.
1654 Etiny = context.Etiny()
1658 new_exp = min(max(self._exp, Etiny), exp_max)
1666 # equal to max(self.adjusted()-context.prec+1, Etiny)
1675 self_is_subnormal = exp_min < Etiny
3867 def Etiny(self): member in class:Context
[all...]
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Python/
H A Ddtoa.c255 #define Etiny (-1074) /* smallest denormal is 2**Etiny */ macro
1062 that either 2**(P-1) <= b < 2**P and e >= Etiny, or b < 2**P
1063 and e == Etiny. This applies equally to an input of 0.0: in that
1064 case the return values are b = 0 and e = Etiny.
1085 *e = Etiny - 1 + (int)((word0(d) & Exp_mask) >> Exp_shift);
1086 if (*e < Etiny)
1087 *e = Etiny;
1094 if (*e < Etiny) {
1095 scale = Etiny
[all...]
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Python/
H A Ddtoa.c238 #define Etiny (-1074) /* smallest denormal is 2**Etiny */ macro
1045 that either 2**(P-1) <= b < 2**P and e >= Etiny, or b < 2**P
1046 and e == Etiny. This applies equally to an input of 0.0: in that
1047 case the return values are b = 0 and e = Etiny.
1068 *e = Etiny - 1 + (int)((word0(d) & Exp_mask) >> Exp_shift);
1069 if (*e < Etiny)
1070 *e = Etiny;
1077 if (*e < Etiny) {
1078 scale = Etiny
[all...]

Completed in 133 milliseconds