/bionic/libm/src/ |
s_atan.c | 70 huge = 1.0e300; variable 90 if(huge+x>one) return x; /* raise inexact */
|
s_atanf.c | 53 huge = 1.0e30; variable 70 if(huge+x>one) return x; /* raise inexact */
|
s_scalbn.c | 33 huge = 1.0e+300, variable 51 if (k > 0x7fe) return huge*copysign(huge,x); /* overflow */ 56 return huge*copysign(huge,x); /*overflow*/
|
s_exp2f.c | 37 huge = 0x1p100f, variable 109 return (huge * huge); /* overflow */
|
e_asin.c | 54 huge = 1.000e+300, variable 86 if(huge+x>one) return x;/* return x with inexact if x!=0*/
|
e_asinf.c | 25 huge = 1.000e+30, variable 55 if(huge+x>one) return x;/* return x with inexact if x!=0*/
|
e_exp.c | 86 huge = 1.0e+300, variable 122 if(x > o_threshold) return huge*huge; /* overflow */ 139 if(huge+x>one) return one+x;/* trigger inexact */
|
e_expf.c | 26 huge = 1.0e+30, variable 58 if(x > o_threshold) return huge*huge; /* overflow */ 75 if(huge+x>one) return one+x;/* trigger inexact */
|
s_exp2.c | 37 huge = 0x1p1000, variable 356 return (huge * huge); /* overflow */
|
s_expm1.c | 117 huge = 1.0e+300, variable 142 /* filter out huge and non-finite argument */ 152 if(x > o_threshold) return huge*huge; /* overflow */ 177 t = huge+x; /* return x with inexact flags when x!=0 */ 178 return x - (t-(huge+x));
|
s_expm1f.c | 25 huge = 1.0e+30, variable 50 /* filter out huge and non-finite argument */ 57 if(x > o_threshold) return huge*huge; /* overflow */ 82 t = huge+x; /* return x with inexact flags when x!=0 */ 83 return x - (t-(huge+x));
|
e_j0.c | 69 huge = 1e300, variable 117 if(huge+x>one) { /* raise inexact if x != 0 */
|
e_j0f.c | 27 huge = 1e30, variable 75 if(huge+x>one) { /* raise inexact if x != 0 */
|
e_j1.c | 69 huge = 1e300, variable 119 if(huge+x>one) return 0.5*x;/* inexact if x!=0 necessary */
|
e_j1f.c | 27 huge = 1e30, variable 77 if(huge+x>one) return (float)0.5*x;/* inexact if x!=0 necessary */
|
e_pow.c | 72 huge = 1.0e300, variable 186 /* |y| is huge */ 189 if(ix<=0x3fefffff) return (hy<0)? huge*huge:tiny*tiny; 190 if(ix>=0x3ff00000) return (hy>0)? huge*huge:tiny*tiny; 193 if(ix<0x3fefffff) return (hy<0)? s*huge*huge:s*tiny*tiny; 194 if(ix>0x3ff00000) return (hy>0)? s*huge*huge:s*tiny*tiny [all...] |
e_powf.c | 31 huge = 1.0e30, variable 131 /* |y| is huge */ 134 if(ix<0x3f7ffff8) return (hy<0)? sn*huge*huge:sn*tiny*tiny; 135 if(ix>0x3f800007) return (hy>0)? sn*huge*huge:sn*tiny*tiny; 208 return sn*huge*huge; /* overflow */ 210 if(p_l+ovt>z-p_h) return sn*huge*huge; /* overflow * [all...] |
/external/fdlibm/ |
s_atan.c | 83 huge = 1.0e300; variable 105 if(huge+x>one) return x; /* raise inexact */
|
e_asin.c | 53 huge = 1.000e+300, variable 87 if(huge+x>one) return x;/* return x with inexact if x!=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 */
|
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));
|
e_j0.c | 72 huge = 1e300, variable 124 if(huge+x>one) { /* raise inexact if x != 0 */
|
/bionic/libc/bionic/ |
ldexp.c | 83 huge = 1.0e+300, variable 111 if (k > 0x7fe) return huge*_copysign(huge,x); /* overflow */ 116 return huge*_copysign(huge,x); /*overflow*/
|
/external/qemu/distrib/sdl-1.2.12/src/video/ |
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/skia/samplecode/ |
SampleFuzz.cpp | 41 static float huge() { function 62 case 5: v = huge(); break;
|