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

12 3 4

  /bionic/libm/upstream-freebsd/lib/msun/src/
s_tanhf.c 22 static const float one=1.0, two=2.0, tiny = 1.0e-30, huge = 1.0e30; variable
41 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_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));
e_powf.c 30 huge = 1.0e30, variable
133 /* |y| is huge */
136 if(ix<0x3f7ffff8) return (hy<0)? sn*huge*huge:sn*tiny*tiny;
137 if(ix>0x3f800007) return (hy>0)? sn*huge*huge:sn*tiny*tiny;
210 return sn*huge*huge; /* overflow */
212 if(p_l+ovt>z-p_h) return sn*huge*huge; /* overflow *
    [all...]
e_asinl.c 31 huge = 1.000e+300; variable
49 if(huge+x>one) return x;/* return x with inexact if x!=0*/
s_atan.c 71 huge = 1.0e300; variable
91 if(huge+x>one) return x; /* raise inexact */
s_atanl.c 30 huge = 1.0e300; variable
56 if(huge+x>one) return x; /* raise inexact */
  /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...]
s_expm1.c 116 huge = 1.0e+300, variable
145 /* 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));
s_atan.c 83 huge = 1.0e300; variable
105 if(huge+x>one) return x; /* raise inexact */
  /external/chromium_org/chrome/browser/resources/options/
font_settings.css 43 .font-settings-huge {
47 html[dir=rtl] .font-settings-huge {
  /external/qemu/distrib/sdl-1.2.15/src/video/
e_pow.h 180 /* |y| is huge */
183 if(ix<=0x3fefffff) return (hy<0)? huge*huge:tiny*tiny;
184 if(ix>=0x3ff00000) return (hy>0)? huge*huge:tiny*tiny;
187 if(ix<0x3fefffff) return (hy<0)? huge*huge:tiny*tiny;
188 if(ix>0x3ff00000) return (hy>0)? huge*huge:tiny*tiny;
261 return s*huge*huge; /* overflow *
    [all...]
e_sqrt.h 74 * huge + tiny is equal to huge, and whether huge - tiny is
75 * equal to huge for some floating point number "huge" and "tiny".
123 if (k > 0x7fe) return huge*SDL_NAME(copysign)(huge,x); /* overflow */
128 return huge*SDL_NAME(copysign)(huge,x); /*overflow*/
math_private.h 23 #define huge really_big /* huge is a reserved keyword in VC++ 6.0 */ macro
170 huge = 1.0e+300, variable
  /external/compiler-rt/lib/tsan/lit_tests/
mutexset7.cc 7 __thread int huge[1024*1024]; variable

Completed in 513 milliseconds

12 3 4