HomeSort by: relevance | last modified time | path
    Searched refs:huge (Results 1 - 25 of 82) sorted by relevancy

1 2 3 4

  /src/lib/libm/src/
s_ceilf.c 24 static const float huge = 1.0e30; variable
36 if(huge+x>(float)0.0) {/* return 0*sign(x) if |x|<1 */
43 if(huge+x>(float)0.0) { /* raise inexact flag */
s_floorf.c 33 static const float huge = 1.0e30; variable
44 if(huge+x>(float)0.0) {/* return 0*sign(x) if |x|<1 */
52 if(huge+x>(float)0.0) { /* raise inexact flag */
s_truncf.c 33 static const float huge = 1.0e30F; variable
44 if(huge+x>0.0F) /* |x|<1, so return 0*sign(x) */
49 if(huge+x>0.0F) /* raise inexact flag */
s_trunc.c 38 static const double huge = 1.0e300; variable
49 if(huge+x>0.0) {/* |x|<1, so return 0*sign(x) */
56 if(huge+x>0.0) { /* raise inexact flag */
66 if(huge+x>0.0) /* raise inexact flag */
s_scalbn.c 50 huge = 1.0e+300, variable
76 if (k > 0x7fe) return huge*copysign(huge,x); /* overflow */
81 return huge*copysign(huge,x); /*overflow*/
s_scalbnf.c 35 huge = 1.0e+30, variable
61 if (k > 0xfe) return huge*copysignf(huge,x); /* overflow */
66 return huge*copysignf(huge,x); /*overflow*/
e_coshf.c 24 static const float huge = 1.0e30; variable
64 return huge*huge;
s_ceil.c 30 static const double huge = 1.0e300; variable
46 if(huge+x>0.0) {/* return 0*sign(x) if |x|<1 */
53 if(huge+x>0.0) { /* raise inexact flag */
64 if(huge+x>0.0) { /* raise inexact flag */
s_floor.c 35 static const double huge = 1.0e300; variable
46 if(huge+x>0.0) {/* return 0*sign(x) if |x|<1 */
54 if(huge+x>0.0) { /* raise inexact flag */
65 if(huge+x>0.0) { /* raise inexact flag */
s_truncl.c 47 static const long double huge = 1.0e300; variable
58 if (huge + x > 0.0)
64 if (huge + x > 0.0) { /* raise inexact flag */
73 if (huge + x > 0.0) /* raise inexact flag */
e_atanh.c 39 static const double one = 1.0, huge = 1e300; variable
55 if(ix<0x3e300000&&(huge+x)>zero) return x; /* x<2**-28 */
e_atanhf.c 24 static const float one = 1.0, huge = 1e30; variable
39 if(ix<0x31800000&&(huge+x)>zero) return x; /* x<2**-28 */
s_asinh.c 35 huge= 1.00000000000000000000e+300; variable
46 if(huge+x>one) return x; /* return x inexact except 0 */
s_asinhf.c 27 huge= 1.0000000000e+30; variable
38 if(huge+x>one) return x; /* return x inexact except 0 */
e_expf.c 24 static const float huge = 1.0e+30; variable
62 if(x > o_threshold) return huge*huge; /* overflow */
79 if(huge+x>one) return one+x;/* trigger inexact */
s_ceill.c 61 static const long double huge = 1.0e300; variable
71 if (huge + x > 0.0)
87 if (huge + x > 0.0) { /* raise inexact flag */
106 if (huge + x > 0.0) /* raise inexact flag */
s_floorl.c 61 static const long double huge = 1.0e300; variable
71 if (huge + x > 0.0)
87 if (huge + x > 0.0) { /* raise inexact flag */
106 if (huge + x > 0.0) /* raise inexact flag */
e_cosh.c 32 * ln2ovft < x : cosh(x) := huge*huge (overflow)
42 static const double one = 1.0, half=0.5, huge = 1.0e300; variable
85 return huge*huge;
  /src/lib/libm/noieee_src/
n_pow.c 186 double huge = _HUGE, tiny = _TINY; local
192 return (huge*huge);
202 return (huge*huge);
210 return (huge*huge);
  /src/lib/libc/compat/gen/
compat_ldexp_ieee754.c 45 static volatile const double tiny = DBL_MIN, huge = DBL_MAX; variable
60 return (val < 0 ? -huge*huge : huge*huge);
  /src/external/bsd/jemalloc/dist/test/unit/
huge.c 20 expect_ptr_not_null(ptr, "Fail to allocate huge size");
38 /* Then huge allocation should use the huge arena. */
40 expect_ptr_not_null(ptr, "Fail to allocate huge size");
55 void *huge = mallocx(HUGE_SZ, MALLOCX_ARENA(arena1)); local
56 expect_ptr_not_null(huge, "Fail to allocate huge size");
57 expect_d_eq(mallctl("arenas.lookup", &arena2, &sz, &huge,
58 sizeof(huge)), 0, "Unexpected mallctl() failure");
60 dallocx(huge, MALLOCX_ARENA(arena1))
    [all...]
  /src/external/gpl3/gcc.old/dist/libquadmath/math/
atanhq.c 37 static const __float128 one = 1, huge = 1e4900Q; variable
59 if(ix<0x3fc60000 && (huge+x)>zero) /* x < 2^-57 */
coshq.c 47 * ln2ovft < x : coshl(x) := huge*huge (overflow)
56 static const __float128 one = 1.0, half = 0.5, huge = 1.0e4900Q, variable
107 return huge * huge;
scalblnq.c 33 huge = 1.0E+4900Q, variable
50 return huge*copysignq(huge,x); /* overflow */
scalbnq.c 33 huge = 1.0E+4900Q, variable
50 return huge*copysignq(huge,x); /* overflow */

Completed in 41 milliseconds

1 2 3 4