HomeSort by: relevance | last modified time | path
    Searched refs:max_exp (Results 1 - 18 of 18) sorted by relevancy

  /src/external/gpl3/gcc.old/dist/libphobos/libdruntime/core/stdc/
float_.d 74 enum FLT_MAX_EXP = float.max_exp;
76 enum DBL_MAX_EXP = double.max_exp;
78 enum LDBL_MAX_EXP = real.max_exp;
  /src/external/gpl3/gcc.old/dist/gcc/d/dmd/
target.h 180 int64_t max_exp; member in struct:Target::FPTypeProperties
target.d 136 long max_exp; /// maximum int value such that 2$(SUPERSCRIPT `max_exp-1`) is representable
typesem.d 2658 else if (ident == Id.max_exp)
2664 case Tfloat32: return intValue(target.FloatProperties.max_exp);
2667 case Tfloat64: return intValue(target.DoubleProperties.max_exp);
2670 case Tfloat80: return intValue(target.RealProperties.max_exp);
  /src/external/gpl3/gcc.old/dist/gcc/
tree-call-cdce.cc 550 int bit_sz, max_exp;
565 max_exp = 128;
567 max_exp = 64;
571 max_exp = 32;
587 max_exp, true, true);
547 int bit_sz, max_exp; local
toplev.cc 2100 int max_exp = 1; local
2112 if (fmt->emax > max_exp)
2113 max_exp = fmt->emax;
2121 || mpfr_set_emax (2 * (max_exp + 1)))
builtins.cc 8813 tree orig_arg, max_exp, min_exp;
8839 max_exp = build_real (type, rmax);
8842 max_exp = build_call_expr (isle_fn, 2, arg, max_exp);
8880 max_exp, min_exp);
8810 tree orig_arg, max_exp, min_exp; local
  /src/external/gpl3/gcc/dist/gcc/
tree-call-cdce.cc 570 int bit_sz, max_exp;
585 max_exp = 128;
587 max_exp = 64;
591 max_exp = 32;
607 max_exp, true, true);
567 int bit_sz, max_exp; local
toplev.cc 2110 int max_exp = 1; local
2122 if (fmt->emax > max_exp)
2123 max_exp = fmt->emax;
2131 || mpfr_set_emax (2 * (max_exp + 1)))
builtins.cc 9627 tree orig_arg, max_exp, min_exp;
9653 max_exp = build_real (type, rmax);
9656 max_exp = build_call_expr (isle_fn, 2, arg, max_exp);
9694 max_exp, min_exp);
9624 tree orig_arg, max_exp, min_exp; local
  /src/external/gpl3/gcc.old/dist/gcc/d/
d-target.cc 108 f.max_exp = fmt->emax;
  /src/external/gpl3/gcc.old/dist/libphobos/src/std/
numeric.d 60 * If set, select an exponent bias such that max_exp = 1.
431 /// maximum int value such that 2<sup>max_exp-1</sup> is representable
432 enum max_exp = exponent_max - bias - ((flags & (Flags.infinity | Flags.nan)) != 0) + 1;
685 assert(cf.max_exp == 2);
713 static assert(myFloat.max_exp == float.max_exp);
725 static assert(myDouble.max_exp == double.max_exp);
751 // testing .max_exp
754 static assert(CustomFloat!(1, 6).max_exp == 2^^5)
    [all...]
bigint.d 931 // `2^^(T.max_exp)` when cast to float/double.
979 if (exponent >= T.max_exp)
989 if (exponent >= T.max_exp)
typecons.d 7925 static TD max_exp() {return TD(T.max_exp);}
  /src/external/gpl3/gcc.old/dist/libphobos/src/std/math/
traits.d 795 2.0L, 8.0L, pow(2.0L, X.max_exp - 1), bigP2])
827 2.0L, 8.0L, pow(2.0L, X.max_exp - 1), bigP2])
operations.d 1796 enum log2_max_exp = cast(int) log2(T.max_exp);
1804 if (ret.exponent != 0 && ret.exponent != 2 * T.max_exp - 1)
1809 ret.exponent -= T.max_exp - 1;
exponential.d 1979 enum T OF = T.max_exp;
2048 enum T OF = T.max_exp;
3432 enum initialExponent = real.min_exp + 2, resultExponent = real.max_exp - 2;
  /src/external/gpl3/gcc.old/dist/libphobos/src/std/format/internal/
floats.d 53 if (exp == T.max_exp)
612 char[T.mant_dig + T.max_exp] dec_buf;
1528 char[T.max_exp + T.mant_dig + 1] dec_buf;

Completed in 89 milliseconds