Searched refs:huge (Results 1 - 25 of 41) sorted by relevance

12

/external/fdlibm/
H A Ds_ceil.c26 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 */
H A Ds_floor.c26 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 */
H A Ds_scalbn.c30 huge = 1.0e+300, variable
53 if (k > 0x7fe) return huge*ieee_copysign(huge,x); /* overflow */
58 return huge*ieee_copysign(huge,x); /*overflow*/
H A De_atanh.c36 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 */
H A De_cosh.c28 * 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;
H A Ds_asinh.c34 huge= 1.00000000000000000000e+300; variable
49 if(huge+x>one) return x; /* return x inexact except 0 */
H A De_exp.c85 huge = 1.0e+300, variable
123 if(x > o_threshold) return huge*huge; /* overflow */
140 if(huge+x>one) return one+x;/* trigger inexact */
H A De_pow.c75 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
[all...]
H A Ds_expm1.c116 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));
H A Ds_atan.c83 huge = 1.0e300; variable
105 if(huge+x>one) return x; /* raise inexact */
H A De_asin.c53 huge = 1.000e+300, variable
87 if(huge+x>one) return x;/* return x with inexact if x!=0*/
H A De_j0.c72 huge = 1e300, variable
124 if(huge+x>one) { /* raise inexact if x != 0 */
H A De_j1.c72 huge = 1e300, variable
126 if(huge+x>one) return 0.5*x;/* inexact if x!=0 necessary */
/external/compiler-rt/test/tsan/
H A Dmutexset7.cc5 __thread int huge[1024*1024]; variable
/external/e2fsprogs/misc/
H A Dmke2fs-hurd.conf27 huge = {
/external/v8/test/mjsunit/compiler/
H A Dalloc-object-huge.js32 // 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/libgdx/extensions/gdx-bullet/jni/swig/
H A DTODO.txt27 wrappers are currently huge because they include everything.
/external/crcalc/tests/src/com/hp/creals/
H A DCRTest.java110 CR huge = CR.valueOf(million.multiply(million).multiply(thousand));
131 check_eq(tan.execute(atan.execute(huge)), huge,
/external/jemalloc/src/
H A Dstats.c45 void *cbopaque, unsigned i, bool bins, bool large, bool huge);
214 "huge: size ind allocated nmalloc ndalloc"
257 unsigned i, bool bins, bool large, bool huge)
331 CTL_M2_GET("stats.arenas.0.huge.allocated", i, &huge_allocated, size_t);
332 CTL_M2_GET("stats.arenas.0.huge.nmalloc", i, &huge_nmalloc, uint64_t);
333 CTL_M2_GET("stats.arenas.0.huge.ndalloc", i, &huge_ndalloc, uint64_t);
334 CTL_M2_GET("stats.arenas.0.huge.nrequests", i, &huge_nrequests,
337 "huge: %12zu %12"FMTu64" %12"FMTu64
364 if (huge)
380 bool huge local
256 stats_arena_print(void (*write_cb)(void *, const char *), void *cbopaque, unsigned i, bool bins, bool large, bool huge) argument
[all...]
/external/jemalloc/test/unit/
H A Dstats.c52 assert_d_eq(mallctl("stats.arenas.0.huge.allocated", &allocated, &sz,
55 assert_d_eq(mallctl("stats.arenas.0.huge.nmalloc", &nmalloc, &sz, NULL,
57 assert_d_eq(mallctl("stats.arenas.0.huge.ndalloc", &ndalloc, &sz, NULL,
59 assert_d_eq(mallctl("stats.arenas.0.huge.nrequests", &nrequests, &sz,
78 void *little, *large, *huge; local
93 huge = mallocx(chunksize, 0);
94 assert_ptr_not_null(huge, "Unexpected mallocx() failure");
98 dallocx(huge, 0);
254 assert_d_eq(mallctl("stats.arenas.0.huge.allocated", &allocated, &sz,
257 assert_d_eq(mallctl("stats.arenas.0.huge
[all...]
/external/dbus/test/name-test/
H A Dtmp-session-like-system.conf73 having the bus enforce a limit is nicer than a huge memory leak. But the
/external/skia/samplecode/
H A DSampleFuzz.cpp48 static float huge() { function
82 case 5: v = huge(); break;
/external/v8/src/base/
H A Dieee754.cc402 * skip the part of the product that are known to be a huge integer (
942 static const double one = 1.0, huge = 1.0e300; local
961 if (huge + x > one) return x; /* raise inexact */
1257 huge = 1.0e+300, local
1279 if (x > o_threshold) return huge * huge; /* overflow */
1302 if (huge + x > one) return one + x; /* trigger inexact */
1346 static const double one = 1.0, huge = 1e300; local
1357 if (ix < 0x3e300000 && (huge + x) > zero) return x; /* x<2**-28 */
2011 static volatile double huge local
[all...]
/external/opencv3/3rdparty/libpng/
H A Dpngmem.c191 png_byte huge * hptr;
266 hptr = (png_byte huge *)table;
269 hptr = (png_byte huge *)((long)(hptr) & 0xfffffff0L);
/external/curl/src/
H A Dmkhelp.pl153 /* This mumbo-jumbo is the huge help text compressed with gzip.

Completed in 1432 milliseconds

12