/external/python/cpython2/Lib/test/ |
D | test_long_future.py | 55 huge = 1L << 40000 56 mhuge = -huge 57 self.assertEqual(huge / huge, 1.0) 59 self.assertEqual(huge / mhuge, -1.0) 60 self.assertEqual(mhuge / huge, -1.0) 61 self.assertEqual(1 / huge, 0.0) 62 self.assertEqual(1L / huge, 0.0) 65 self.assertEqual((666 * huge + (huge >> 1)) / huge, 666.5) 67 self.assertEqual((666 * huge + (huge >> 1)) / mhuge, -666.5) 68 self.assertEqual((666 * mhuge + (mhuge >> 1)) / huge, -666.5) [all …]
|
/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/python/cpython3/Lib/test/ |
D | test_long.py | 489 huge = 1 << 30000 490 mhuge = -huge 491 namespace = {'huge': huge, 'mhuge': mhuge, 'shuge': shuge, 'math': math} 742 huge = 1 << 40000 743 mhuge = -huge 744 self.assertEqual(huge / huge, 1.0) 746 self.assertEqual(huge / mhuge, -1.0) 747 self.assertEqual(mhuge / huge, -1.0) 748 self.assertEqual(1 / huge, 0.0) 749 self.assertEqual(1 / huge, 0.0) [all …]
|
/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 | 1050 huge = 1.000e+300, in asin() local 1080 if (huge + x > one) return x; /* return x with inexact if x!=0*/ in asin() 1126 huge = 1.00000000000000000000e+300; in asinh() local 1134 if (huge + x > one) return x; /* return x inexact except 0 */ in asinh() 1200 static const double one = 1.0, huge = 1.0e300; in atan() local 1219 if (huge + x > one) return x; /* raise inexact */ in atan() 1515 huge = 1.0e+300, in exp() local 1537 if (x > o_threshold) return huge * huge; /* overflow */ in exp() 1560 if (huge + x > one) return one + x; /* trigger inexact */ in exp() 1604 static const double one = 1.0, huge = 1e300; in atanh() local [all …]
|
/external/toolchain-utils/go/patch/ |
D | go6.patch | 16 - t.Skip("skipping huge allocation in short mode") 18 + t.Skip("skipping test due to huge memory requirement") 19 huge := make([]byte, tooBig) 20 huge[0] = 7 // Make sure it's not all zeros. 22 err := NewEncoder(buf).Encode(huge) 24 t.Fatalf("expected error for huge slice") 173 + t.Skip("skipping test due to huge memory requirement") 194 + t.Skip("skipping test due to huge memory requirement")
|
/external/clang/test/Misc/ |
D | backend-resource-limit-diagnostics.cl | 7 volatile local int huge[120000]; 8 huge[0] = 2;
|
/external/swiftshader/third_party/llvm-7.0/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/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/linux-kselftest/android/patches/ |
D | 0013-ANDROID-build-vm-tests.patch | 25 mnt=./huge 59 - printf "Not enough huge pages available (%d < %d)\n" \ 128 -# 256MB total huge pages == 128MB src and 128MB dst 195 +# printf "Not enough huge pages available (%d < %d)\n" \ 266 +## 256MB total huge pages == 128MB src and 128MB dst
|
/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_new/ |
D | ChangeLog | 20 - Implement transparent huge page support for internal metadata. (@interwq) 21 - Add opt.thp to allow enabling / disabling transparent huge pages for all 157 configured huge page size (--with-lg-hugepage). (@jasone) 246 interact better with huge pages (not yet explicitly supported). (@jasone) 247 - Fold large and huge size classes together; only small and large size classes 335 + stats.arenas.<i>.huge.{allocated,nmalloc,ndalloc,nrequests} 355 transparent huge page integration. (@jasone) 371 - Fix huge-aligned allocation. This regression was first released in 4.4.0. 373 - When transparent huge page integration is enabled, detect what state pages 375 arena chunks to non-huge during purging if that is not their initial state. [all …]
|
D | TUNING.md | 28 Allowing jemalloc to utilize transparent huge pages for its internal 31 activities. Metadata memory usage may increase due to the use of huge 118 case for performance purpose is to utilize huge pages -- for example, 120 uses explicit arenas with customized extent hooks to manage 1GB huge pages
|
/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 …]
|