HomeSort by relevance Sort by last modified time
    Searched refs:huge (Results 26 - 50 of 130) sorted by null

12 3 4 5 6

  /bionic/libm/upstream-freebsd/lib/msun/src/
e_atanhf.c 22 static const float one = 1.0, huge = 1e30; variable
37 if(ix<0x31800000&&(huge+x)>zero) return x; /* x<2**-28 */
e_atanhl.c 51 static const double one = 1.0, huge = 1e300; variable
65 if (ix < BIAS + EXP_TINY && (huge + x) > zero)
s_asinh.c 35 huge= 1.00000000000000000000e+300; variable
46 if(huge+x>one) return x; /* return x inexact except 0 */
s_asinhf.c 25 huge= 1.0000000000e+30; variable
36 if(huge+x>one) return x; /* return x inexact except 0 */
s_tanh.c 46 static const double one = 1.0, two = 2.0, huge = 1.0e300; variable
66 if(huge+x>one) return x; /* tanh(tiny) = tiny with inexact */
s_tanhf.c 23 static const float one=1.0, two=2.0, huge = 1.0e30; variable
43 if(huge+x>one) return x; /* tanh(tiny) = tiny with inexact */
e_exp.c 101 huge = 1.0e+300, variable
124 if(x > o_threshold) return huge*huge; /* overflow */
141 if(huge+x>one) return one+x;/* trigger inexact */
e_expf.c 42 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_expm1f.c 39 static volatile float huge = 1.0e+30; variable
52 /* filter out huge and non-finite argument */
59 if(x > o_threshold) return huge*huge; /* overflow */
84 t = huge+x; /* return x with inexact flags when x!=0 */
85 return x - (t-(huge+x));
e_pow.c 71 huge = 1.0e300, variable
188 /* |y| is huge */
191 if(ix<=0x3fefffff) return (hy<0)? huge*huge:tiny*tiny;
192 if(ix>=0x3ff00000) return (hy>0)? huge*huge:tiny*tiny;
195 if(ix<0x3fefffff) return (hy<0)? s*huge*huge:s*tiny*tiny;
196 if(ix>0x3ff00000) return (hy>0)? s*huge*huge:s*tiny*tiny
    [all...]
s_exp2f.c 46 huge = 0x1p100f, variable
113 return (huge * huge); /* overflow */
s_ceill.c 52 static const long double huge = 1.0e300; variable
62 if (huge + x > 0.0)
78 if (huge + x > 0.0) { /* raise inexact flag */
97 if (huge + x > 0.0) /* raise inexact flag */
s_floorl.c 52 static const long double huge = 1.0e300; variable
62 if (huge + x > 0.0)
78 if (huge + x > 0.0) { /* raise inexact flag */
97 if (huge + x > 0.0) /* raise inexact flag */
e_asinf.c 24 huge = 1.000e+30, variable
48 if(huge+x>one) return x;/* return x with inexact if x!=0*/
s_asinhl.c 55 huge= 1.00000000000000000000e+300; variable
79 if (huge + x > one) RETURNI(x); /* return x inexact except 0 */
s_atanf.c 46 huge = 1.0e30; variable
63 if(huge+x>one) return x; /* raise inexact */
s_expm1.c 130 static volatile double huge = 1.0e+300; variable
143 /* filter out huge and non-finite argument */
153 if(x > o_threshold) return huge*huge; /* overflow */
178 t = huge+x; /* return x with inexact flags when x!=0 */
179 return x - (t-(huge+x));
  /external/fdlibm/
s_asinh.c 34 huge= 1.00000000000000000000e+300; variable
49 if(huge+x>one) return x; /* return x inexact except 0 */
e_exp.c 85 huge = 1.0e+300, variable
123 if(x > o_threshold) return huge*huge; /* overflow */
140 if(huge+x>one) return one+x;/* trigger inexact */
e_pow.c 75 huge = 1.0e300, variable
190 /* |y| is huge */
193 if(ix<=0x3fefffff) return (hy<0)? huge*huge:tiny*tiny;
194 if(ix>=0x3ff00000) return (hy>0)? huge*huge:tiny*tiny;
197 if(ix<0x3fefffff) return (hy<0)? s*huge*huge:s*tiny*tiny;
198 if(ix>0x3ff00000) return (hy>0)? s*huge*huge:s*tiny*tiny
    [all...]
  /device/google/contexthub/firmware/external/freebsd/lib/msun/src/
e_expf.c 42 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_atanf.c 46 huge = 1.0e30; variable
63 if(huge+x>one) return x; /* raise inexact */
  /bionic/libc/upstream-freebsd/lib/libc/gen/
ldexp.c 84 huge = 1.0e+300, variable
112 if (k > 0x7fe) return huge*_copysign(huge,x); /* overflow */
117 return huge*_copysign(huge,x); /*overflow*/
  /external/compiler-rt/test/tsan/
mutexset7.cc 5 __thread int huge[1024*1024]; variable
  /external/e2fsprogs/misc/
mke2fs-hurd.conf 27 huge = {

Completed in 288 milliseconds

12 3 4 5 6