Home
last modified time | relevance | path

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

12345678

/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_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 */
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 */
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/mksh/
DMakefrag.inc11 CC= /huge-ssd/aosp-arm64/prebuilts/gcc/linux-x86/aarch64/aarch64-linux-android-4.9/bin/*-gcc
13huge-ssd/aosp-arm64/bionic/libc/arch-arm64/include -isystem /huge-ssd/aosp-arm64/bionic/libc/inclu…
14 …-z,now -Wl,--warn-shared-textrel -Wl,--fatal-warnings -Wl,--no-undefined /huge-ssd/aosp-arm64/out/…
15huge-ssd/aosp-arm64/out/target/product/flounder/obj/lib -Wl,-rpath-link=/huge-ssd/aosp-arm64/out/t…
/external/v8/test/mjsunit/compiler/
Dalloc-object-huge.js37 return new huge();
47 var o = new huge();
52 function huge() { function
/external/curl/tests/data/
Dtest5537 huge request header
35 HTTP post with huge request headers and post data from callback
/external/jemalloc/src/
Dstats.c45 void *cbopaque, unsigned i, bool bins, bool large, bool huge);
257 unsigned i, bool bins, bool large, bool huge) in stats_arena_print() argument
364 if (huge) in stats_arena_print()
380 bool huge = true; in stats_print() local
424 huge = false; in stats_print()
638 narenas, bins, large, huge); in stats_print()
665 huge); in stats_print()
/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/test/unit/
Dstats.c78 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/markdown/tests/misc/
Dadjacent-headers.txt1 # this is a huge header #
/external/jemalloc/
DChangeLog53 - Attempt mmap-based in-place huge reallocation. This can dramatically speed
54 up incremental huge reallocation. (@jasone)
99 - Fix xallocx(..., MALLOCX_ZERO) to zero trailing bytes of huge allocations
144 - Fix chunk purge hook calls for in-place huge shrinking reallocation to
209 - Refactor huge allocation to be managed by arenas, so that arenas now
213 + The "stats.arenas.<i>.huge.allocated", "stats.arenas.<i>.huge.nmalloc",
214 "stats.arenas.<i>.huge.ndalloc", and "stats.arenas.<i>.huge.nrequests"
215 mallctls provide high level per arena huge allocation statistics.
258 reduces the cost of repeated huge allocation/deallocation, because it
273 - Implement in-place huge allocation growing and shrinking.
[all …]
/external/autotest/client/tests/libhugetlbfs/
Dcontrol9 Tests basic huge pages functionality when using libhugetlbfs. For more info
/external/e2fsprogs/misc/
Dmke2fs-hurd.conf27 huge = {
Dmke2fs.conf.in36 huge = {
/external/compiler-rt/test/tsan/
Dmutexset7.cc5 __thread int huge[1024*1024]; variable
/external/bzip2/
DREADME.COMPILATION.PROBLEMS23 but many newer ones can. Large files are pretty huge -- most files
51 You can use the spewG.c program to generate huge files to test bzip2's
/external/llvm/test/MC/ELF/
Dbss-large.ll4 ; Check if a huge object can be put into bss section

12345678