/external/v8/test/mjsunit/compiler/ |
alloc-object-huge.js | 30 // Test that huge constructors (more than 256 this assignments) are 33 // Test huge constructor when being inlined into hydrogen. 35 return new huge(); 44 // Test huge constructor with specialized constructor stub. 45 var o = new huge(); 49 // The huge constructor, nothing interesting beyond this point. 50 function huge() { class
|
/bionic/libm/src/ |
s_truncf.c | 28 static const float huge = 1.0e30F; variable 39 if(huge+x>0.0F) /* |x|<1, so return 0*sign(x) */ 44 if(huge+x>0.0F) /* raise inexact flag */
|
s_ceilf.c | 23 static const float huge = 1.0e30; variable 35 if(huge+x>(float)0.0) {/* return 0*sign(x) if |x|<1 */ 42 if(huge+x>(float)0.0) { /* raise inexact flag */
|
s_floorf.c | 32 static const float huge = 1.0e30; variable 43 if(huge+x>(float)0.0) {/* return 0*sign(x) if |x|<1 */ 51 if(huge+x>(float)0.0) { /* raise inexact flag */
|
s_scalbnl.c | 41 huge = 0x1p16000L, variable 59 if (k >= 0x7fff) return huge*copysignl(huge,x); /* overflow */ 64 return huge*copysign(huge,x); /*overflow*/
|
s_trunc.c | 28 static const double huge = 1.0e300; variable 39 if(huge+x>0.0) {/* |x|<1, so return 0*sign(x) */ 46 if(huge+x>0.0) { /* raise inexact flag */ 56 if(huge+x>0.0) /* raise inexact flag */
|
s_truncl.c | 39 static const long double huge = 1.0e300; variable 49 if (huge + x > 0.0) 55 if (huge + x > 0.0) { /* raise inexact flag */ 64 if (huge + x > 0.0) /* raise inexact flag */
|
e_atanh.c | 40 static const double one = 1.0, huge = 1e300; variable 55 if(ix<0x3e300000&&(huge+x)>zero) return x; /* x<2**-28 */
|
e_atanhf.c | 23 static const float one = 1.0, huge = 1e30; variable 38 if(ix<0x31800000&&(huge+x)>zero) return x; /* x<2**-28 */
|
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;
|
e_coshf.c | 23 static const float one = 1.0, half=0.5, huge = 1.0e30; variable 62 return huge*huge;
|
s_asinh.c | 34 huge= 1.00000000000000000000e+300; variable 45 if(huge+x>one) return x; /* return x inexact except 0 */
|
s_asinhf.c | 26 huge= 1.0000000000e+30; variable 37 if(huge+x>one) return x; /* return x inexact except 0 */
|
s_ceil.c | 29 static const double huge = 1.0e300; variable 40 if(huge+x>0.0) {/* return 0*sign(x) if |x|<1 */ 47 if(huge+x>0.0) { /* raise inexact flag */ 58 if(huge+x>0.0) { /* raise inexact flag */
|
s_ceill.c | 53 static const long double huge = 1.0e300; variable 63 if (huge + x > 0.0) 79 if (huge + x > 0.0) { /* raise inexact flag */ 98 if (huge + x > 0.0) /* raise inexact flag */
|
s_floor.c | 29 static const double huge = 1.0e300; variable 40 if(huge+x>0.0) {/* return 0*sign(x) if |x|<1 */ 48 if(huge+x>0.0) { /* raise inexact flag */ 59 if(huge+x>0.0) { /* raise inexact flag */
|
s_floorl.c | 53 static const long double huge = 1.0e300; variable 63 if (huge + x > 0.0) 79 if (huge + x > 0.0) { /* raise inexact flag */ 98 if (huge + x > 0.0) /* raise inexact flag */
|
s_scalbnf.c | 28 huge = 1.0e+30, variable 46 if (k > 0xfe) return huge*copysignf(huge,x); /* overflow */ 51 return huge*copysignf(huge,x); /*overflow*/
|
s_tanhf.c | 23 static const float one=1.0, two=2.0, tiny = 1.0e-30, huge = 1.0e30; variable 42 if(huge+x>one) return x; /* tanh(tiny) = tiny with inexact */
|
/external/fdlibm/ |
s_ceil.c | 26 static const double huge = 1.0e300; variable 28 static double huge = 1.0e300; variable 45 if(huge+x>0.0) {/* return 0*sign(x) if |x|<1 */ 52 if(huge+x>0.0) { /* raise inexact flag */ 63 if(huge+x>0.0) { /* raise inexact flag */
|
s_floor.c | 26 static const double huge = 1.0e300; variable 28 static double huge = 1.0e300; variable 45 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 */
|
e_atanh.c | 36 static const double one = 1.0, huge = 1e300; variable 38 static double one = 1.0, huge = 1e300; variable 60 if(ix<0x3e300000&&(huge+x)>zero) return x; /* x<2**-28 */
|
e_cosh.c | 28 * ln2ovft < x : ieee_cosh(x) := huge*huge (overflow) 38 static const double one = 1.0, half=0.5, huge = 1.0e300; variable 40 static double one = 1.0, half=0.5, huge = 1.0e300; variable 88 return huge*huge;
|
s_asinh.c | 34 huge= 1.00000000000000000000e+300; variable 49 if(huge+x>one) return x; /* return x inexact except 0 */
|
s_scalbn.c | 30 huge = 1.0e+300, variable 53 if (k > 0x7fe) return huge*ieee_copysign(huge,x); /* overflow */ 58 return huge*ieee_copysign(huge,x); /*overflow*/
|