| /mirbsd/src/lib/libm/src/ |
| D | e_pow.c | 76 huge = 1.0e300, variable 189 if(ix<=0x3fefffff) return (hy<0)? huge*huge:tiny*tiny; in __ieee754_pow() 190 if(ix>=0x3ff00000) return (hy>0)? huge*huge:tiny*tiny; in __ieee754_pow() 193 if(ix<0x3fefffff) return (hy<0)? s*huge*huge:s*tiny*tiny; in __ieee754_pow() 194 if(ix>0x3ff00000) return (hy>0)? s*huge*huge:s*tiny*tiny; in __ieee754_pow() 263 return s*huge*huge; /* overflow */ in __ieee754_pow() 265 if(p_l+ovt>z-p_h) return s*huge*huge; /* overflow */ in __ieee754_pow()
|
| D | s_scalbnf.c | 28 huge = 1.0e+30, variable 46 if (k > 0xfe) return huge*copysignf(huge,x); /* overflow */ in scalbnf() 51 return huge*copysignf(huge,x); /*overflow*/ in scalbnf()
|
| D | s_scalbn.c | 33 huge = 1.0e+300, variable 51 if (k > 0x7fe) return huge*copysign(huge,x); /* overflow */ in scalbn() 56 return huge*copysign(huge,x); /*overflow*/ in scalbn()
|
| D | e_powf.c | 26 static const float huge = 1.0e+30, tiny = 1.0e-30; variable 132 if(ix<0x3f7ffff8) return (hy<0)? huge*huge:tiny*tiny; in __ieee754_powf() 133 if(ix>0x3f800007) return (hy>0)? huge*huge:tiny*tiny; in __ieee754_powf() 209 return s*huge*huge; /* overflow */ in __ieee754_powf() 211 if(p_l+ovt>z-p_h) return s*huge*huge; /* overflow */ in __ieee754_powf()
|
| D | s_trunc.c | 34 static const double huge = 1.0e300; variable 45 if(huge+x>0.0) {/* |x|<1, so return 0*sign(x) */ in trunc() 52 if(huge+x>0.0) { /* raise inexact flag */ in trunc() 62 if(huge+x>0.0) /* raise inexact flag */ in trunc()
|
| D | s_floor.c | 31 static const double huge = 1.0e300; variable 42 if(huge+x>0.0) {/* return 0*sign(x) if |x|<1 */ in floor() 50 if(huge+x>0.0) { /* raise inexact flag */ in floor() 61 if(huge+x>0.0) { /* raise inexact flag */ in floor()
|
| D | s_ceil.c | 31 static const double huge = 1.0e300; variable 42 if(huge+x>0.0) {/* return 0*sign(x) if |x|<1 */ in ceil() 49 if(huge+x>0.0) { /* raise inexact flag */ in ceil() 60 if(huge+x>0.0) { /* raise inexact flag */ in ceil()
|
| D | s_expm1.c | 118 huge = 1.0e+300, variable 154 if(x > o_threshold) return huge*huge; /* overflow */ in expm1() 179 t = huge+x; /* return x with inexact flags when x!=0 */ in expm1() 180 return x - (t-(huge+x)); in expm1()
|
| D | s_expm1f.c | 24 static const float huge = 1.0e+30, tiny = 1.0e-30; variable 59 if(x > o_threshold) return huge*huge; /* overflow */ in expm1f() 84 t = huge+x; /* return x with inexact flags when x!=0 */ in expm1f() 85 return x - (t-(huge+x)); in expm1f()
|
| D | e_expf.c | 24 static const float huge = 1.0e+30; variable 62 if(x > o_threshold) return huge*huge; /* overflow */ in __ieee754_expf() 79 if(huge+x>one) return one+x;/* trigger inexact */ in __ieee754_expf()
|
| D | e_exp.c | 87 huge = 1.0e+300, variable 125 if(x > o_threshold) return huge*huge; /* overflow */ in __ieee754_exp() 142 if(huge+x>one) return one+x;/* trigger inexact */ in __ieee754_exp()
|
| D | s_truncf.c | 34 static const float huge = 1.0e30F; variable 45 if(huge+x>0.0F) /* |x|<1, so return 0*sign(x) */ in truncf() 50 if(huge+x>0.0F) /* raise inexact flag */ in truncf()
|
| D | s_floorf.c | 34 static const float huge = 1.0e30; variable 45 if(huge+x>(float)0.0) {/* return 0*sign(x) if |x|<1 */ in floorf() 53 if(huge+x>(float)0.0) { /* raise inexact flag */ in floorf()
|
| D | s_ceilf.c | 25 static const float huge = 1.0e30; variable 37 if(huge+x>(float)0.0) {/* return 0*sign(x) if |x|<1 */ in ceilf() 44 if(huge+x>(float)0.0) { /* raise inexact flag */ in ceilf()
|
| D | e_coshf.c | 24 static const float huge = 1.0e30; variable 64 return huge*huge; in __ieee754_coshf()
|
| D | e_cosh.c | 42 static const double one = 1.0, half=0.5, huge = 1.0e300; variable 85 return huge*huge; in __ieee754_cosh()
|
| D | s_exp2f.c | 42 huge = 0x1p100f, variable 115 return (huge * huge); /* overflow */ in exp2f()
|
| D | s_exp2.c | 43 huge = 0x1p1000, variable 363 return (huge * huge); /* overflow */ in exp2()
|
| D | e_atanhf.c | 24 static const float one = 1.0, huge = 1e30; variable 39 if(ix<0x31800000&&(huge+x)>zero) return x; /* x<2**-28 */ in __ieee754_atanhf()
|
| D | e_atanh.c | 39 static const double one = 1.0, huge = 1e300; variable 55 if(ix<0x3e300000&&(huge+x)>zero) return x; /* x<2**-28 */ in __ieee754_atanh()
|
| D | s_asinhf.c | 27 huge= 1.0000000000e+30; variable 38 if(huge+x>one) return x; /* return x inexact except 0 */ in asinhf()
|
| D | s_asinh.c | 35 huge= 1.00000000000000000000e+300; variable 46 if(huge+x>one) return x; /* return x inexact except 0 */ in asinh()
|
| D | s_atanf.c | 54 huge = 1.0e30; variable 71 if(huge+x>one) return x; /* raise inexact */ in atanf()
|
| /mirbsd/src/gnu/usr.bin/perl/lib/Text/ |
| D | Wrap.pm | 7 @EXPORT_OK = qw($columns $break $huge); 11 use vars qw($VERSION $columns $debug $break $huge $unexpand $tabstop 19 $huge = 'wrap'; # alternatively: 'die' or 'overflow' 52 } elsif ($huge eq 'wrap' && $t =~ /\G([^\n]{$ll})/gc) { 57 } elsif ($huge eq 'overflow' && $t =~ /\G([^\n]*?)($break|\z)/xmgc) { 62 } elsif ($huge eq 'die') {
|
| /mirbsd/src/gnu/usr.bin/perl/ext/List/Util/t/ |
| D | first.t | 92 sub huge {$_>1E6} 93 my $refcnt = &Internals::SvREFCNT(\&huge); 94 $v = first \&huge, 1..6; 95 is(&Internals::SvREFCNT(\&huge), $refcnt, "Refcount unchanged");
|