HomeSort by relevance Sort by last modified time
    Searched defs:Etiny (Results 1 - 11 of 11) sorted by null

  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Python/
dtoa.c 255 #define Etiny (-1074) /* smallest denormal is 2**Etiny */
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 - *e;
    [all...]
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/
decimal.py 369 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.
    [all...]
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Python/
dtoa.c 238 #define Etiny (-1074) /* smallest denormal is 2**Etiny */
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 - *e;
    [all...]
  /external/python/cpython2/Lib/
decimal.py 368 necessary, so that its exponent is not less than Etiny. This may result
369 in 0 with the sign of the intermediate result and an exponent of Etiny.
    [all...]
  /external/python/cpython2/Python/
dtoa.c 255 #define Etiny (-1074) /* smallest denormal is 2**Etiny */
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 - *e
    [all...]
  /external/python/cpython3/Lib/
_pydecimal.py 396 necessary, so that its exponent is not less than Etiny. This may result
397 in 0 with the sign of the intermediate result and an exponent of Etiny.
    [all...]
  /external/python/cpython3/Python/
dtoa.c 246 #define Etiny (-1074) /* smallest denormal is 2**Etiny */
988 that either 2**(P-1) <= b < 2**P and e >= Etiny, or b < 2**P
989 and e == Etiny. This applies equally to an input of 0.0: in that
990 case the return values are b = 0 and e = Etiny.
1011 *e = Etiny - 1 + (int)((word0(d) & Exp_mask) >> Exp_shift);
1012 if (*e < Etiny)
1013 *e = Etiny;
1020 if (*e < Etiny) {
1021 scale = Etiny - *e
    [all...]
  /prebuilts/gdb/darwin-x86/lib/python2.7/
decimal.py 369 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.
    [all...]
  /prebuilts/gdb/linux-x86/lib/python2.7/
decimal.py 369 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.
    [all...]
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/
decimal.py 369 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.
    [all...]
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/
decimal.py 369 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.
    [all...]

Completed in 868 milliseconds