| /freebsd/lib/msun/src/ |
| H A D | e_pow.c | 71 huge = 1.0e300, variable 188 /* |y| is huge */ in pow() 191 if(ix<=0x3fefffff) return (hy<0)? huge*huge:tiny*tiny; in pow() 192 if(ix>=0x3ff00000) return (hy>0)? huge*huge:tiny*tiny; in pow() 195 if(ix<0x3fefffff) return (hy<0)? s*huge*huge:s*tiny*tiny; in pow() 196 if(ix>0x3ff00000) return (hy>0)? s*huge*huge in pow() [all...] |
| H A D | e_cosh.c | 27 * ln2ovft < x : cosh(x) := huge*huge (overflow) 39 static const double one = 1.0, half=0.5, huge = 1.0e300; variable 76 return huge*huge; in cosh()
|
| H A D | e_powf.c | 30 huge = 1.0e30, variable 133 /* |y| is huge */ in powf() 136 if(ix<0x3f7ffff6) return (hy<0)? sn*huge*huge:sn*tiny*tiny; in powf() 137 if(ix>0x3f800007) return (hy>0)? sn*huge*huge:sn*tiny*tiny; in powf() 210 return sn*huge*huge; /* overflow */ in powf() 212 if(p_l+ovt>z-p_h) return sn*huge*huge; /* overflo in powf() [all...] |
| H A D | s_expm1f.c | 36 static volatile float huge = 1.0e+30; variable 49 /* filter out huge and non-finite argument */ in expm1f() 56 if(x > o_threshold) return huge*huge; /* overflow */ in expm1f() 81 t = huge+x; /* return x with inexact flags when x!=0 */ in expm1f() 82 return x - (t-(huge+x)); in expm1f()
|
| H A D | s_trunc.c | 26 static const double huge = 1.0e300; variable 37 if(huge+x>0.0) {/* |x|<1, so return 0*sign(x) */ in trunc() 44 if(huge+x>0.0) { /* raise inexact flag */ in trunc() 54 if(huge+x>0.0) /* raise inexact flag */ in trunc()
|
| H A D | s_truncl.c | 33 static const long double huge = 1.0e300; variable 44 if (huge + x > 0.0) in truncl() 50 if (huge + x > 0.0) { /* raise inexact flag */ in truncl() 59 if (huge + x > 0.0) /* raise inexact flag */ in truncl()
|
| H A D | s_floor.c | 26 static const double huge = 1.0e300; variable 37 if(huge+x>0.0) {/* return 0*sign(x) if |x|<1 */ in floor() 45 if(huge+x>0.0) { /* raise inexact flag */ in floor() 56 if(huge+x>0.0) { /* raise inexact flag */ in floor()
|
| H A D | s_ceil.c | 26 static const double huge = 1.0e300; variable 37 if(huge+x>0.0) {/* return 0*sign(x) if |x|<1 */ in ceil() 44 if(huge+x>0.0) { /* raise inexact flag */ in ceil() 55 if(huge+x>0.0) { /* raise inexact flag */ in ceil()
|
| H A D | s_ceill.c | 47 static const long double huge = 1.0e300; variable 57 if (huge + x > 0.0) in ceill() 73 if (huge + x > 0.0) { /* raise inexact flag */ in ceill() 92 if (huge + x > 0.0) /* raise inexact flag */ in ceill()
|
| H A D | s_floorl.c | 47 static const long double huge = 1.0e300; variable 57 if (huge + x > 0.0) in floorl() 73 if (huge + x > 0.0) { /* raise inexact flag */ in floorl() 92 if (huge + x > 0.0) /* raise inexact flag */ in floorl()
|
| H A D | s_truncf.c | 24 static const float huge = 1.0e30F; variable 35 if(huge+x>0.0F) /* |x|<1, so return 0*sign(x) */ in truncf() 40 if(huge+x>0.0F) /* raise inexact flag */ in truncf()
|
| H A D | s_ceilf.c | 19 static const float huge = 1.0e30; variable 31 if(huge+x>(float)0.0) {/* return 0*sign(x) if |x|<1 */ in ceilf() 38 if(huge+x>(float)0.0) { /* raise inexact flag */ in ceilf()
|
| H A D | e_expf.c | 39 huge = 1.0e+30, variable 59 if(x > o_threshold) return huge*huge; /* overflow */ in expf() 76 if(huge+x>one) return one+x;/* trigger inexact */ in expf()
|
| H A D | s_floorf.c | 28 static const float huge = 1.0e30; variable 39 if(huge+x>(float)0.0) {/* return 0*sign(x) if |x|<1 */ in floorf() 47 if(huge+x>(float)0.0) { /* raise inexact flag */ in floorf()
|
| H A D | e_coshf.c | 19 static const float one = 1.0, half=0.5, huge = 1.0e30; variable 55 return huge*huge; in coshf()
|
| H A D | s_expm1.c | 126 static volatile double huge = 1.0e+300; variable 139 /* filter out huge and non-finite argument */ in expm1() 149 if(x > o_threshold) return huge*huge; /* overflow */ in expm1() 174 t = huge+x; /* return x with inexact flags when x!=0 */ in expm1() 175 return x - (t-(huge+x)); in expm1()
|
| H A D | e_exp.c | 97 huge = 1.0e+300, variable 120 if(x > o_threshold) return huge*huge; /* overflow */ in exp() 137 if(huge+x>one) return one+x;/* trigger inexact */ in exp()
|
| /freebsd/contrib/lyaml/lib/lyaml/ |
| H A D | implicit.lua | 217 ['.inf'] = math.huge, ['.Inf'] = math.huge, ['.INF'] = math.huge, 218 ['+.inf'] = math.huge, ['+.Inf'] = math.huge, ['+.INF'] = math.huge, 219 ['-.inf'] = -math.huge, ['-.Inf'] = -math.huge, ['-.INF'] = -math.huge,
|
| /freebsd/lib/msun/ld128/ |
| H A D | e_powl.c | 88 huge = 1.0e3000L, variable 262 /* |y| is huge. in powl() 271 return (hy < 0) ? huge * huge : tiny * tiny; in powl() 273 return (hy > 0) ? huge * huge : tiny * tiny; in powl() 277 return (hy < 0) ? huge * huge : tiny * tiny; in powl() 279 return (hy > 0) ? huge * huge : tiny * tiny; in powl() 383 return s * huge * huge; /* overflow */ in powl() 387 return s * huge * huge; /* overflow */ in powl()
|
| /freebsd/contrib/jemalloc/ |
| H A D | ChangeLog | 221 - Detect whether explicit extent zero out is necessary with huge pages or 256 - Implement transparent huge page support for internal metadata. (@interwq) 257 - Add opt.thp to allow enabling / disabling transparent huge pages for all 393 configured huge page size (--with-lg-hugepage). (@jasone) 482 interact better with huge pages (not yet explicitly supported). (@jasone) 483 - Fold large and huge size classes together; only small and large size classes 571 + stats.arenas.<i>.huge.{allocated,nmalloc,ndalloc,nrequests} 591 transparent huge page integration. (@jasone) 607 - Fix huge-aligned allocation. This regression was first released in 4.4.0. 609 - When transparent huge pag [all...] |
| H A 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
|
| /freebsd/contrib/jemalloc/include/jemalloc/internal/ |
| H A D | pages.h | 20 /* Huge page size. LG_HUGEPAGE is determined by the configure script. */ 37 /* Return the huge page base address for the huge page containing address a. */
|
| H A D | jemalloc_internal_defs.h.in | 198 * One huge page is 2^LG_HUGEPAGE bytes. Note that this is defined even if the 199 * system does not explicitly support huge pages; system calls that require 200 * explicit huge page support are separately configured. 280 * Defined if transparent huge pages are supported via the MADV_[NO]HUGEPAGE 319 * Defined if transparent huge pages (THPs) are supported via the
|
| /freebsd/lib/libc/stdlib/malloc/jemalloc/include/jemalloc/internal/ |
| H A D | jemalloc_internal_defs.h | 199 * One huge page is 2^LG_HUGEPAGE bytes. Note that this is defined even if the 200 * system does not explicitly support huge pages; system calls that require 201 * explicit huge page support are separately configured. 281 * Defined if transparent huge pages are supported via the MADV_[NO]HUGEPAGE 320 * Defined if transparent huge pages (THPs) are supported via the
|
| /freebsd/lib/msun/ld80/ |
| H A D | s_expl.c | 54 huge = 0x1p10000L, variable 88 RETURNF(huge * huge); in expl() 177 RETURNF(huge * huge); in expm1l()
|