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

1 23 4

  /bionic/libm/upstream-freebsd/lib/msun/src/
e_asin.c 54 huge = 1.000e+300, variable
86 if(huge+x>one) return x;/* return x with inexact if x!=0*/
s_ccosh.c 45 static const double huge = 0x1p1023; variable
80 h = huge * x;
s_ccoshf.c 39 static const float huge = 0x1p127; variable
73 h = huge * x;
s_csinh.c 45 static const double huge = 0x1p1023; variable
80 h = huge * x;
s_csinhf.c 39 static const float huge = 0x1p127; variable
73 h = huge * x;
e_j0.c 68 huge = 1e300, variable
116 if(huge+x>one) { /* raise inexact if x != 0 */
e_j0f.c 25 huge = 1e30, variable
73 if(huge+x>one) { /* raise inexact if x != 0 */
e_j1.c 68 huge = 1e300, variable
118 if(huge+x>one) return 0.5*x;/* inexact if x!=0 necessary */
e_j1f.c 25 huge = 1e30, variable
75 if(huge+x>one) return (float)0.5*x;/* inexact if x!=0 necessary */
s_exp2.c 47 huge = 0x1p1000, variable
360 return (huge * huge); /* overflow */
  /external/fdlibm/
e_asin.c 53 huge = 1.000e+300, variable
87 if(huge+x>one) return x;/* return x with inexact if x!=0*/
e_j0.c 72 huge = 1e300, variable
124 if(huge+x>one) { /* raise inexact if x != 0 */
e_j1.c 72 huge = 1e300, variable
126 if(huge+x>one) return 0.5*x;/* inexact if x!=0 necessary */
  /external/chromium_org/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
  /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
  /external/chromium_org/v8/test/webkit/
dfg-int-overflow-large-constants-in-a-line.js 25 "Tests that our optimization to elide overflow checks understands that if we keep adding huge numbers, we could end up creating a number that is not precisely representable using doubles."
  /external/chromium_org/third_party/libpng/
pngmem.c 179 png_byte huge * hptr;
239 hptr = (png_byte huge *)table;
242 hptr = (png_byte huge *)((long)(hptr) & 0xfffffff0L);
  /external/libpng/
pngmem.c 179 png_byte huge * hptr;
239 hptr = (png_byte huge *)table;
242 hptr = (png_byte huge *)((long)(hptr) & 0xfffffff0L);
  /external/qemu/distrib/libpng-1.2.19/
pngmem.c 166 png_byte huge * hptr;
226 hptr = (png_byte huge *)table;
229 hptr = (png_byte huge *)((long)(hptr) & 0xfffffff0L);
  /dalvik/tests/003-omnibus-opcodes/src/
IntMath.java 424 static void checkConsts(byte small, short medium, int large, long huge) {
432 assert(huge == 0x9922334455667788L); // const-wide
  /external/chromium_org/v8/test/mjsunit/regress/
regress-regexp-construct-result.js 28 // Create a huge regexp with many alternative capture groups, most of
  /art/test/003-omnibus-opcodes/src/
IntMath.java 545 static void checkConsts(byte small, short medium, int large, long huge) {
553 Main.assertTrue(huge == 0x9922334455667788L); // const-wide
  /external/ganymed-ssh2/src/main/java/ch/ethz/ssh2/channel/
ChannelManager.java 1116 final long huge = 0xFFFFffffL; /* 2^32 - 1 */ local
1118 c.remoteWindow += (windowChange & huge); /* avoid sign extension */
1122 if ((c.remoteWindow > huge))
1123 c.remoteWindow = huge;
    [all...]
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/test/
test_long.py 749 huge = 1L << 30000
750 mhuge = -huge
751 namespace = {'huge': huge, 'mhuge': mhuge, 'shuge': shuge, 'math': math}
752 for test in ["float(huge)", "float(mhuge)",
753 "complex(huge)", "complex(mhuge)",
754 "complex(huge, 1)", "complex(mhuge, 1)",
755 "complex(1, huge)", "complex(1, mhuge)",
756 "1. + huge", "huge + 1.", "1. + mhuge", "mhuge + 1."
    [all...]
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/test/
test_long.py 749 huge = 1L << 30000
750 mhuge = -huge
751 namespace = {'huge': huge, 'mhuge': mhuge, 'shuge': shuge, 'math': math}
752 for test in ["float(huge)", "float(mhuge)",
753 "complex(huge)", "complex(mhuge)",
754 "complex(huge, 1)", "complex(mhuge, 1)",
755 "complex(1, huge)", "complex(1, mhuge)",
756 "1. + huge", "huge + 1.", "1. + mhuge", "mhuge + 1."
    [all...]

Completed in 224 milliseconds

1 23 4