Searched refs:huge (Results 1 - 25 of 71) sorted by relevance

123

/openbsd-current/lib/libm/src/
H A Ds_scalbnf.c22 huge = 1.0e+30, variable
40 if (k > 0xfe) return huge*copysignf(huge,x); /* overflow */
45 return huge*copysignf(huge,x); /*overflow*/
H A Ds_ceilf.c19 static const float huge = 1.0e30; variable
31 if(huge+x>(float)0.0) {/* return 0*sign(x) if |x|<1 */
38 if(huge+x>(float)0.0) { /* raise inexact flag */
H A Ds_floorf.c28 static const float huge = 1.0e30; variable
39 if(huge+x>(float)0.0) {/* return 0*sign(x) if |x|<1 */
47 if(huge+x>(float)0.0) { /* raise inexact flag */
H A Ds_truncf.c25 static const float huge = 1.0e30F; variable
36 if(huge+x>0.0F) /* |x|<1, so return 0*sign(x) */
41 if(huge+x>0.0F) /* raise inexact flag */
H A Ds_trunc.c27 static const double huge = 1.0e300; variable
38 if(huge+x>0.0) {/* |x|<1, so return 0*sign(x) */
45 if(huge+x>0.0) { /* raise inexact flag */
55 if(huge+x>0.0) /* raise inexact flag */
H A Ds_scalbnl.c37 huge = 0x1p16000L, variable
65 if (k >= 0x7fff) return huge*copysignl(huge,x); /* overflow */
70 return huge*copysign(huge,x); /*overflow*/
H A De_coshf.c19 static const volatile float huge = 1.0e30; variable
59 return huge*huge;
H A De_atanhf.c19 static const float one = 1.0, huge = 1e30; variable
33 if(ix<0x31800000&&(huge+x)>zero) return x; /* x<2**-28 */
H A Ds_ceil.c27 static const double huge = 1.0e300; variable
38 if(huge+x>0.0) {/* return 0*sign(x) if |x|<1 */
45 if(huge+x>0.0) { /* raise inexact flag */
56 if(huge+x>0.0) { /* raise inexact flag */
H A Ds_floor.c27 static const double huge = 1.0e300; variable
38 if(huge+x>0.0) {/* return 0*sign(x) if |x|<1 */
46 if(huge+x>0.0) { /* raise inexact flag */
57 if(huge+x>0.0) { /* raise inexact flag */
H A De_atanh.c36 static const double one = 1.0, huge = 1e300; variable
51 if(ix<0x3e300000&&(huge+x)>zero) return x; /* x<2**-28 */
H A Ds_asinh.c32 huge= 1.00000000000000000000e+300; variable
43 if(huge+x>one) return x; /* return x inexact except 0 */
/openbsd-current/lib/libm/src/ld128/
H A Ds_truncl.c38 static const long double huge = 1.0e300; variable
52 if (huge + x > 0.0)
58 if (huge + x > 0.0) { /* raise inexact flag */
67 if (huge + x > 0.0) /* raise inexact flag */
H A Ds_ceill.c26 static const long double huge = 1.0e4930L; variable
37 if(huge+x>0.0) {/* return 0*sign(x) if |x|<1 */
44 if(huge+x>0.0) { /* raise inexact flag */
55 if(huge+x>0.0) { /* raise inexact flag */
H A Ds_floorl.c26 static const long double huge = 1.0e4930L; variable
37 if(huge+x>0.0) {
46 if(huge+x>0.0) { /* raise inexact flag */
57 if(huge+x>0.0) { /* raise inexact flag */
H A De_atanhl.c35 static const long double one = 1.0L, huge = 1e4900L; variable
57 if(ix<0x3fc60000 && (huge+x)>zero) return x; /* x < 2^-57 */
H A Ds_asinhl.c31 huge = 1.0e+4900L; variable
47 if (huge + x > one)
/openbsd-current/lib/libm/src/ld80/
H A Ds_truncl.c38 static const long double huge = 1.0e300; variable
52 if (huge + x > 0.0)
58 if (huge + x > 0.0) { /* raise inexact flag */
67 if (huge + x > 0.0) /* raise inexact flag */
H A Ds_ceill.c26 static const long double huge = 1.0e4930L; variable
38 if(huge+x>0.0) {/* return 0*sign(x) if |x|<1 */
45 if(huge+x>0.0) { /* raise inexact flag */
64 if(huge+x>0.0) { /* raise inexact flag */
H A Ds_floorl.c26 static const long double huge = 1.0e4930L; variable
38 if(huge+x>0.0) {
47 if(huge+x>0.0) { /* raise inexact flag */
66 if(huge+x>0.0) { /* raise inexact flag */
H A De_atanhl.c35 static const long double one = 1.0, huge = 1e4900L; variable
52 if(ix<0x3fe3&&(huge+x)>zero) return x; /* x<2**-28 */
H A Ds_asinhl.c31 huge= 1.000000000000000000e+4900L; variable
42 if(huge+x>one) return x; /* return x inexact except 0 */
/openbsd-current/gnu/usr.bin/perl/dist/Storable/t/
H A Dhuge.t22 my $huge = int(2 ** 31);
44 ['huge string',
45 sub { my $s = 'x' x $huge; \$s }],
47 ['array with huge element',
48 sub { my $s = 'x' x $huge; [$s] }],
50 ['hash with huge value',
51 sub { my $s = 'x' x $huge; +{ foo => $s } }],
53 # There's no huge key, limited to I32.
57 # An array with a huge number of elements requires several gigabytes of
63 [ 'huge arra
[all...]
/openbsd-current/gnu/usr.bin/perl/dist/Data-Dumper/t/
H A Dhuge.t29 cmp_ok($len, '>', 2**32, 'correct output for huge all-quotable value');
/openbsd-current/regress/lib/libc/ieeefp/except/
H A Dexcept.c18 volatile const double huge = DBL_MAX; variable
81 x = huge * huge;
88 x = huge * huge;

Completed in 209 milliseconds

123