/external/v8/test/mjsunit/compiler/ |
H A D | 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/compiler-rt/test/tsan/ |
H A D | mutexset7.cc | 5 __thread int huge[1024*1024]; variable
|
/external/fdlibm/ |
H A D | 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 */
|
H A D | 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;
|
H A D | s_asinh.c | 34 huge= 1.00000000000000000000e+300; variable 49 if(huge+x>one) return x; /* return x inexact except 0 */
|
H A D | 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 */
|
H A D | 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 */
|
H A D | 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*/
|
H A D | s_atan.c | 83 huge = 1.0e300; variable 105 if(huge+x>one) return x; /* raise inexact */
|
H A D | e_asin.c | 53 huge = 1.000e+300, variable 87 if(huge+x>one) return x;/* return x with inexact if x!=0*/
|
H A D | 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 */
|
H A D | 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));
|
H A D | e_j0.c | 72 huge = 1e300, variable 124 if(huge+x>one) { /* raise inexact if x != 0 */
|
H A D | e_j1.c | 72 huge = 1e300, variable 126 if(huge+x>one) return 0.5*x;/* inexact if x!=0 necessary */
|
H A D | e_pow.c | 75 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...] |
/external/jemalloc/test/unit/ |
H A D | stats.c | 52 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/skia/samplecode/ |
H A D | SampleFuzz.cpp | 48 static float huge() { function 82 case 5: v = huge(); break;
|
H A D | SampleFilterFuzz.cpp | 74 static float huge() { function 100 case 5: v = huge(); break;
|
/external/jemalloc/src/ |
H A D | stats.c | 45 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/include/jemalloc/internal/ |
H A D | arena.h | 348 /* Number of pages in active runs and huge regions. */ 437 /* Extant huge allocations. */ 438 ql_head(extent_node_t) huge; member in struct:arena_s 439 /* Synchronizes all huge allocation/update/deallocation. */ 503 extern unsigned nhclasses; /* Number of huge size classes. */
|
/external/v8/src/base/ |
H A D | ieee754.cc | 402 * 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/v8/test/cctest/ |
H A D | test-api.cc | 2677 void* huge = reinterpret_cast<void*>(~static_cast<uintptr_t>(1)); local 2678 CheckAlignedPointerInInternalField(obj, huge); 2682 CHECK_EQ(huge, Object::GetAlignedPointerFromInternalField(persistent, 0)); 2713 void* huge = reinterpret_cast<void*>(~static_cast<uintptr_t>(1)); local 2714 CheckAlignedPointerInEmbedderData(&env, 3, huge);
|