Home
last modified time | relevance | path

Searched refs:huge (Results 1 – 25 of 325) sorted by relevance

12345678910>>...13

/external/python/cpython2/Lib/test/
Dtest_long_future.py55 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/
De_pow.c75 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 */
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*/
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 */
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 */
De_cosh.c38 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;
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 */
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 */
Ds_expm1.c116 huge = 1.0e+300, variable
153 if(x > o_threshold) return huge*huge; /* overflow */
Ds_asinh.c34 huge= 1.00000000000000000000e+300; variable
49 if(huge+x>one) return x; /* return x inexact except 0 */
Ds_atan.c83 huge = 1.0e300; variable
105 if(huge+x>one) return x; /* raise inexact */
De_asin.c53 huge = 1.000e+300, variable
87 if(huge+x>one) return x;/* return x with inexact if x!=0*/
/external/python/cpython3/Lib/test/
Dtest_long.py489 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/
Dstats.c39 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/
Dieee754.cc1050 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/
Dgo6.patch16 - 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/
Dbackend-resource-limit-diagnostics.cl7 volatile local int huge[120000];
8 huge[0] = 2;
/external/swiftshader/third_party/llvm-7.0/llvm/test/CodeGen/AMDGPU/
Dover-max-lds-size.ll7 @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/
Dover-max-lds-size.ll7 @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/
Dtest5537 huge request header
35 HTTP post with huge request headers and post data from callback
/external/linux-kselftest/android/patches/
D0013-ANDROID-build-vm-tests.patch25 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/
DCRTest.java110 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/
DChangeLog20 - 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 …]
DTUNING.md28 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/
DChangeLog22 - 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 …]

12345678910>>...13