| /src/external/gpl3/gcc.old/dist/libphobos/src/std/math/ |
| constants.d | 23 enum real E = 0x1.5bf0a8b1457695355fb8ac404e7a8p+1L; /** e = 2.718281... */ 24 enum real LOG2T = 0x1.a934f0979a3715fc9257edfe9b5fbp+1L; /** $(SUB log, 2)10 = 3.321928... */ 25 enum real LOG2E = 0x1.71547652b82fe1777d0ffda0d23a8p+0L; /** $(SUB log, 2)e = 1.442695... */ 26 enum real LOG2 = 0x1.34413509f79fef311f12b35816f92p-2L; /** $(SUB log, 10)2 = 0.301029... */ 27 enum real LOG10E = 0x1.bcb7b1526e50e32a6ab7555f5a67cp-2L; /** $(SUB log, 10)e = 0.434294... */ 28 enum real LN2 = 0x1.62e42fefa39ef35793c7673007e5fp-1L; /** ln 2 = 0.693147... */ 29 enum real LN10 = 0x1.26bb1bbb5551582dd4adac5705a61p+1L; /** ln 10 = 2.302585... */ 30 enum real PI = 0x1.921fb54442d18469898cc51701b84p+1L; /** π = 3.141592... */ 31 enum real PI_2 = PI/2; /** $(PI) / 2 = 1.570796... */ 32 enum real PI_4 = PI/4; /** $(PI) / 4 = 0.785398... * [all...] |
| remainder.d | 41 real fmod(real x, real y) @trusted nothrow @nogc 73 real modf(real x, ref real i) @trusted nothrow @nogc 92 real frac; 93 real intpart; 120 real remainder(real x, real y) @trusted nothrow @nog [all...] |
| operations.d | 35 * of payload for a float; 51 bits for a double; 62 bits for an 80-bit real; 45 real NaN(ulong payload) @trusted pure nothrow @nogc 49 alias F = floatTraits!(real); 53 // real80 (in x86 real format, the implied bit is actually 54 // not implied but a real bit which is stored in the real) 94 real x; 103 real x = real.nan; 105 // Extended real bit [all...] |
| traits.d | 92 assert( isNaN(real.nan)); 93 assert( isNaN(-real.nan)); 95 assert(!isNaN(cast(real)-53.6)); 102 static foreach (T; AliasSeq!(float, double, real)) 169 assert(isFinite(real.max)); 170 assert(isFinite(real.min_normal)); 171 assert(!isFinite(real.nan)); 172 assert(!isFinite(real.infinity)); 182 static assert(isFinite(real.max)); 183 static assert(isFinite(real.min_normal)) [all...] |
| rounding.d | 37 static assert(real.mant_dig == 64); 45 real ceil(real x) @trusted pure nothrow @nogc 54 fld real ptr [RCX] ; 95 real y = floorImpl(x); 115 assert(ceil(real.infinity) == real.infinity); 116 assert(isNaN(ceil(real.nan))); 117 assert(isNaN(ceil(real.init))); 188 real floor(real x) @trusted pure nothrow @nog [all...] |
| trigonometry.d | 51 static assert(real.mant_dig == 64); 67 real cos(real x) @safe pure nothrow @nogc { return core.math.cos(x); } 87 real function(real) pcos = &cos; 101 real r = cos(-2.0L); 125 real sin(real x) @safe pure nothrow @nogc { return core.math.sin(x); } 141 real x = 30.0; 149 real function(real) psin = &sin [all...] |
| exponential.d | 51 static assert(real.mant_dig == 64); 69 real p = 1.0, v = void; 114 assert(pow(real.nan, 2) is real.nan); 115 assert(pow(real.infinity, 2) == real.infinity); 124 immutable real x = 46; 149 assert(feqrel(pow(x, neg3), 1 / (x * x * x)) >= real.mant_dig - 1); 165 static if (real.mant_dig >= 64) 196 static if (real.mant_dig == 64) // x8 [all...] |
| /src/external/gpl3/gcc.old/dist/libphobos/src/std/ |
| mathspecial.d | 72 * to real and complex numbers. 88 real gamma(real x) 107 real logGamma(real x) 120 real sgnGamma(real x) 126 if (x < -1/real.epsilon) 129 return real.nan; 134 return x == 0 ? copysign(1, x) : real.nan [all...] |
| /src/external/gpl3/gcc.old/dist/libphobos/libdruntime/core/stdc/ |
| float_.d | 30 enum DECIMAL_DIG = real.dig; 36 enum LDBL_DIG = real.dig; 43 enum LDBL_MANT_DIG = real.mant_dig; 50 enum LDBL_MIN = real.min_normal; 57 enum LDBL_MAX = real.max; 64 enum LDBL_EPSILON = real.epsilon; 71 enum LDBL_MIN_EXP = real.min_exp; 78 enum LDBL_MAX_EXP = real.max_exp; 85 enum LDBL_MIN_10_EXP = real.min_10_exp; 92 enum LDBL_MAX_10_EXP = real.max_10_exp [all...] |
| math.d | 58 enum double HUGE_VALL = real.infinity; 226 //int fpclassify(real-floating x); 229 pure int fpclassify(real x); 231 //int isfinite(real-floating x); 234 pure int isfinite(real x); 236 //int isinf(real-floating x); 239 pure int isinf(real x); 241 //int isnan(real-floating x); 244 pure int isnan(real x); 246 //int isnormal(real-floating x) [all...] |
| config.d | 80 alias c_long_double = real; 110 alias c_complex_real = ddoc_complex!real; 190 alias c_long_double = real; 192 alias c_long_double = real; // 64-bit real for MSVC targets 196 alias c_long_double = real; 198 alias c_long_double = real; 216 alias real c_long_double; 221 alias real c_long_double; 223 alias real c_long_double [all...] |
| /src/external/lgpl3/mpc/dist/src/ |
| mul_fr.c | 27 mpfr_t real; local 31 mpfr_init2 (real, MPC_PREC_RE (a)); 33 real [0] = mpc_realref (a) [0]; 35 inex_re = mpfr_mul (real, mpc_realref(b), c, MPC_RND_RE(rnd)); 37 mpfr_set (mpc_realref (a), real, MPFR_RNDN); /* exact */ local 40 mpfr_clear (real);
|
| div_fr.c | 27 mpfr_t real; local 30 mpfr_init2 (real, MPC_PREC_RE (a)); 32 inex_re = mpfr_div (real, mpc_realref(b), c, MPC_RND_RE(rnd)); 34 mpfr_set (mpc_realref (a), real, MPFR_RNDN); local 36 mpfr_clear (real);
|
| /src/external/gpl3/gcc.old/dist/libphobos/libdruntime/core/ |
| math.d | 40 extern (C) real rndtonl(real x); 57 real cos(real x); /* intrinsic */ /// ditto 74 real sin(real x); /* intrinsic */ /// ditto 85 long rndtol(real x); /* intrinsic */ /// ditto 100 real sqrt(real x); /* intrinsic */ /// ditto 109 real ldexp(real n, int exp); /* intrinsic */ /// ditt [all...] |
| /src/external/gpl3/gcc.old/dist/libphobos/src/std/internal/math/ |
| errorfunction.d | 35 immutable real EXP_2 = 0.135335283236612691893999494972484403L; /* exp(-2) */ 36 enum real SQRT2PI = 2.50662827463100050241576528481104525L; // sqrt(2pi) 39 enum real MAXLOG = 0x1.62e42fefa39ef358p+13L; // log(real.max) 40 enum real MINLOG = -0x1.6436716d5406e6d8p+13L; // log(real.min*real.epsilon) = log(smallest denormal) 54 immutable real[10] P = [ -0x1.30dfa809b3cc6676p-17L, 0x1.38637cd0913c0288p+18L, 60 immutable real[11] Q = [ 0x1.14d8e2a72dec49f4p+19L, 0x1.0c880ff467626e1p+23L, 68 enum isIEEEQuadruple = floatTraits!real.realFormat == RealFormat.ieeeQuadruple [all...] |
| gammafunction.d | 33 enum real SQRT2PI = 2.50662827463100050242E0L; // sqrt(2pi) 34 immutable real EULERGAMMA = 0.57721_56649_01532_86060_65120_90082_40243_10421_59335_93992L; /** Euler-Mascheroni constant 0.57721566.. */ 38 immutable real[8] GammaNumeratorCoeffs = [ 1.0L, 44 immutable real[9] GammaDenominatorCoeffs = [ 1.0L, 50 immutable real[9] GammaSmallCoeffs = [ 1.0L, 56 immutable real[9] GammaSmallNegCoeffs = [ -1.0L, 62 immutable real[7] logGammaStirlingCoeffs = [ 68 immutable real[7] logGammaNumerator = [ 74 immutable real[8] logGammaDenominator = [ 88 real gammaStirling(real x [all...] |
| /src/usr.bin/make/unit-tests/ |
| deptgt-main.exp | 1 This target real-main is the one that is made.
|
| varmod-path.exp | 2 varmod-path.subdir/varmod-path.real
|
| /src/external/apache2/llvm/dist/clang/lib/Headers/openmp_wrappers/ |
| complex_cmath.h | 35 return hypot(__c.real(), __c.imag()); 41 return atan2(__c.imag(), __c.real()); 59 if (std::isinf(__c.real())) 60 return abs(__c.real()); 63 return __c.real() * __c.real() + __c.imag() * __c.imag(); 69 return std::complex<_Tp>(__c.real(), -__c.imag()); 76 if (std::isinf(__c.real()) || std::isinf(__c.imag())) 124 if (std::isinf(__x.real())) { 125 if (__x.real() > _Tp(0) [all...] |
| /src/sys/arch/powerpc/powerpc/ |
| ofwmagic.S | 56 # real mode (-1) or virtual mode (0) 59 # real-base 61 # real-size
|
| /src/external/ibm-public/postfix/dist/src/util/ |
| split_qnameval.c | 111 const char *expect, const char *real) 113 if ((expect == 0 && real == 0) 114 || (expect != 0 && real != 0 && strcmp(expect, real) == 0)) { 117 msg_warn("test %d: %s mis-match: expect='%s', real='%s'", 119 real ? real : "(null)");
|
| /src/sys/external/bsd/compiler_rt/dist/lib/interception/ |
| interception_linux.cc | 28 uptr real, uptr wrapper) { 39 // want the address of the real definition, though, so look it up using 43 return real == wrapper;
|
| /src/external/gpl3/gdb/dist/gdb/testsuite/gdb.fortran/ |
| ptr-indentation.exp | 30 set real [fortran_real4] 39 " PTR TO -> \\( $real :: ptr \\)" \
|
| /src/external/gpl3/gdb.old/dist/gdb/testsuite/gdb.fortran/ |
| ptr-indentation.exp | 30 set real [fortran_real4] 39 " PTR TO -> \\( $real :: ptr \\)" \
|
| types.exp | 62 # this used to guess whether to look for "real*4" or 63 # "real*8" based on a target config variable, but noone 66 gdb_test "pt .44" "type = real\\*\[0-9\]+" 67 gdb_test "pt 44.0" "type = real\\*\[0-9\]+" 68 gdb_test "pt 10D20" "type = real\\*\[0-9\]+" 69 gdb_test "pt 10d20" "type = real\\*\[0-9\]+" 70 gdb_test "pt 10E20" "type = real\\*\[0-9\]+" 71 gdb_test "pt 10e20" "type = real\\*\[0-9\]+" 78 gdb_test "ptype real" "type = real\\*4 [all...] |