/external/fdlibm/ |
D | e_pow.c | 75 huge = 1.0e300, variable 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:s*tiny*tiny; 268 return s*huge*huge; /* overflow */ 270 if(p_l+ovt>z-p_h) return s*huge*huge; /* overflow */
|
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*/
|
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 */
|
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 */
|
D | e_cosh.c | 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;
|
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 */
|
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 */
|
D | s_expm1.c | 116 huge = 1.0e+300, variable 153 if(x > o_threshold) return huge*huge; /* overflow */
|
D | s_asinh.c | 34 huge= 1.00000000000000000000e+300; variable 49 if(huge+x>one) return x; /* return x inexact except 0 */
|
D | s_atan.c | 83 huge = 1.0e300; variable 105 if(huge+x>one) return x; /* raise inexact */
|
D | e_asin.c | 53 huge = 1.000e+300, variable 87 if(huge+x>one) return x;/* return x with inexact if x!=0*/
|
/external/toolchain-utils/go/patch/ |
D | go7.patch | 11 - t.Skip("skipping huge allocation in short mode") 13 + t.Skip("skipping test due to huge memory requirement") 14 huge := make([]byte, tooBig) 15 huge[0] = 7 // Make sure it's not all zeros. 107 + t.Skip("skipping test due to huge memory requirement") 118 + t.Skip("skipping test due to huge memory requirement")
|
/external/jemalloc/src/ |
D | stats.c | 39 bool json, bool large, bool huge, unsigned i) in stats_arena_bins_print() argument 177 "\t\t\t\t]%s\n", (large || huge) ? "," : ""); in stats_arena_bins_print() 188 bool json, bool huge, unsigned i) in stats_arena_lruns_print() argument 241 "\t\t\t\t]%s\n", huge ? "," : ""); in stats_arena_lruns_print() 318 bool json, unsigned i, bool bins, bool large, bool huge) in stats_arena_print() argument 547 stats_arena_bins_print(write_cb, cbopaque, json, large, huge, in stats_arena_print() 551 stats_arena_lruns_print(write_cb, cbopaque, json, huge, i); in stats_arena_print() 552 if (huge) in stats_arena_print() 947 bool json, bool merged, bool unmerged, bool bins, bool large, bool huge) in stats_print_helper() argument 1023 narenas, bins, large, huge); in stats_print_helper() [all …]
|
/external/v8/src/base/ |
D | ieee754.cc | 1049 huge = 1.000e+300, in asin() local 1079 if (huge + x > one) return x; /* return x with inexact if x!=0*/ in asin() 1125 huge = 1.00000000000000000000e+300; in asinh() local 1133 if (huge + x > one) return x; /* return x inexact except 0 */ in asinh() 1199 static const double one = 1.0, huge = 1.0e300; in atan() local 1218 if (huge + x > one) return x; /* raise inexact */ in atan() 1514 huge = 1.0e+300, in exp() local 1536 if (x > o_threshold) return huge * huge; /* overflow */ in exp() 1559 if (huge + x > one) return one + x; /* trigger inexact */ in exp() 1603 static const double one = 1.0, huge = 1e300; in atanh() local [all …]
|
/external/clang/test/Misc/ |
D | backend-resource-limit-diagnostics.cl | 7 volatile local int huge[120000]; 8 huge[0] = 2;
|
/external/llvm/test/CodeGen/AMDGPU/ |
D | over-max-lds-size.ll | 7 @huge = internal unnamed_addr addrspace(3) global [100000 x i32] undef, align 4 11 %v0 = getelementptr inbounds [100000 x i32], [100000 x i32] addrspace(3)* @huge, i32 0, i32 0
|
/external/curl/tests/data/ |
D | test553 | 7 huge request header 35 HTTP post with huge request headers and post data from callback
|
/external/crcalc/tests/src/com/hp/creals/ |
D | CRTest.java | 110 CR huge = CR.valueOf(million.multiply(million).multiply(thousand)); in testCR() local 131 check_eq(tan.execute(atan.execute(huge)), huge, in testCR() local
|
/external/jemalloc/test/unit/ |
D | stats.c | 78 void *little, *large, *huge; in TEST_BEGIN() local 93 huge = mallocx(chunksize, 0); in TEST_BEGIN() 94 assert_ptr_not_null(huge, "Unexpected mallocx() failure"); in TEST_BEGIN() 98 dallocx(huge, 0); in TEST_BEGIN()
|
/external/jemalloc/ |
D | ChangeLog | 22 - Mark partially purged arena chunks as non-huge-page. This improves 23 interaction with Linux's transparent huge page functionality. (@jasone) 95 - Fix opt_zero-triggered in-place huge reallocation zeroing. (@jasone) 188 - Attempt mmap-based in-place huge reallocation. This can dramatically speed 189 up incremental huge reallocation. (@jasone) 234 - Fix xallocx(..., MALLOCX_ZERO) to zero trailing bytes of huge allocations 279 - Fix chunk purge hook calls for in-place huge shrinking reallocation to 344 - Refactor huge allocation to be managed by arenas, so that arenas now 348 + The "stats.arenas.<i>.huge.allocated", "stats.arenas.<i>.huge.nmalloc", 349 "stats.arenas.<i>.huge.ndalloc", and "stats.arenas.<i>.huge.nrequests" [all …]
|
/external/e2fsprogs/tests/m_hugefile/ |
D | name | 1 create a hugefile fs with a single huge file
|
/external/markdown/tests/misc/ |
D | adjacent-headers.txt | 1 # this is a huge header #
|
/external/libmojo/mojo/public/interfaces/bindings/tests/data/validation/ |
D | conformance_msghdr_num_bytes_huge.data | 1 [u4]0xFFFFFFFF // num_bytes: Test whether a huge value will cause overflow.
|
D | conformance_mthd0_struct_num_bytes_huge.data | 9 [u4]0xFFFFFFFF // num_bytes: Test whether a huge value will cause overflow.
|
/external/autotest/client/tests/libhugetlbfs/ |
D | control | 9 Tests basic huge pages functionality when using libhugetlbfs. For more info
|