HomeSort by relevance Sort by last modified time
    Searched defs:huge (Results 1 - 25 of 78) sorted by null

1 2 3 4

  /external/v8/test/mjsunit/compiler/
alloc-object-huge.js 32 // Test that huge constructors (more than 256 this assignments) are
35 // Test huge constructor when being inlined into hydrogen.
37 return new huge();
46 // Test huge constructor with specialized constructor stub.
47 var o = new huge();
51 // The huge constructor, nothing interesting beyond this point.
52 function huge() { class
  /toolchain/binutils/binutils-2.25/ld/testsuite/ld-powerpc/
relbrlt.s 9 bl huge
32 .section .text.huge,"ax"
33 huge: label
  /bionic/libm/upstream-freebsd/lib/msun/src/
s_ceilf.c 22 static const float huge = 1.0e30; variable
34 if(huge+x>(float)0.0) {/* return 0*sign(x) if |x|<1 */
41 if(huge+x>(float)0.0) { /* raise inexact flag */
s_floorf.c 31 static const float huge = 1.0e30; variable
42 if(huge+x>(float)0.0) {/* return 0*sign(x) if |x|<1 */
50 if(huge+x>(float)0.0) { /* raise inexact flag */
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 */
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_cosh.c 31 * ln2ovft < x : cosh(x) := huge*huge (overflow)
43 static const double one = 1.0, half=0.5, huge = 1.0e300; variable
80 return huge*huge;
e_coshf.c 22 static const float one = 1.0, half=0.5, huge = 1.0e30; variable
58 return huge*huge;
s_ceil.c 30 static const double huge = 1.0e300; variable
41 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_floor.c 30 static const double huge = 1.0e300; variable
41 if(huge+x>0.0) {/* return 0*sign(x) if |x|<1 */
49 if(huge+x>0.0) { /* raise inexact flag */
60 if(huge+x>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 30 static const double huge = 1.0e300; variable
41 if(huge+x>0.0) {/* |x|<1, so return 0*sign(x) */
48 if(huge+x>0.0) { /* raise inexact flag */
58 if(huge+x>0.0) /* raise inexact flag */
s_truncl.c 38 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 41 static const double one = 1.0, huge = 1e300; variable
56 if(ix<0x3e300000&&(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_ccoshf.c 39 static const float huge = 0x1p127; variable
73 h = huge * x;
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_csinhf.c 39 static const float huge = 0x1p127; variable
73 h = huge * x;
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 */
  /device/google/contexthub/lib/libm/
sf_floor.c 28 static const float huge = 1.0e30; variable
30 static float huge = 1.0e30; variable
47 if(huge+x>(float)0.0) {/* return 0*sign(x) if |x|<1 */
55 if(huge+x>(float)0.0) { /* raise inexact flag */
  /external/compiler-rt/test/tsan/
mutexset7.cc 5 __thread int huge[1024*1024]; variable
  /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 */

Completed in 274 milliseconds

1 2 3 4