/picolibc-3.5.0-3.4.0/newlib/libm/ld/ld128/ |
D | s_truncl.c | 29 static const long double huge = 1.0e300L; variable 43 if (huge + x > 0.0L) in truncl() 49 if (huge + x > 0.0L) { /* raise inexact flag */ in truncl() 58 if (huge + x > 0.0L) /* raise inexact flag */ in truncl()
|
D | s_floorl.c | 24 static const long double huge = 1.0e4930L; variable 35 if(huge+x>0.0L) { in floorl() 44 if(huge+x>0.0L) { /* raise inexact flag */ in floorl() 55 if(huge+x>0.0L) { /* raise inexact flag */ in floorl()
|
D | s_ceill.c | 24 static const long double huge = 1.0e4930L; variable 35 if(huge+x>0.0L) {/* return 0*sign(x) if |x|<1 */ in ceill() 42 if(huge+x>0.0L) { /* raise inexact flag */ in ceill() 53 if(huge+x>0.0L) { /* raise inexact flag */ in ceill()
|
D | e_atanhl.c | 33 static const long double one = 1.0L, huge = 1e4900L; variable 55 if(ix<0x3fc60000 && (huge+x)>zero) return x; /* x < 2^-57 */ in atanhl()
|
D | s_asinhl.c | 29 huge = 1.0e+4900L; variable 45 if (huge + x > one) in asinhl()
|
/picolibc-3.5.0-3.4.0/newlib/libm/ld/ld80/ |
D | s_truncl.c | 32 static const long double huge = 1.0e300L; variable 46 if (huge + x > 0.0L) in truncl() 52 if (huge + x > 0.0L) { /* raise inexact flag */ in truncl() 61 if (huge + x > 0.0L) /* raise inexact flag */ in truncl()
|
D | s_floorl.c | 24 static const long double huge = 1.0e4930L; variable 36 if(huge+x>0.0L) { in floorl() 45 if(huge+x>0.0L) { /* raise inexact flag */ in floorl() 64 if(huge+x>0.0L) { /* raise inexact flag */ in floorl()
|
D | s_ceill.c | 24 static const long double huge = 1.0e4930L; variable 36 if(huge+x>0.0L) {/* return 0*sign(x) if |x|<1 */ in ceill() 43 if(huge+x>0.0L) { /* raise inexact flag */ in ceill() 62 if(huge+x>0.0L) { /* raise inexact flag */ in ceill()
|
D | e_atanhl.c | 33 static const long double one = 1.0l, huge = 1e4900L; variable 50 if(ix<0x3fe3&&(huge+x)>zero) return x; /* x<2**-28 */ in atanhl()
|
D | s_asinhl.c | 29 huge= 1.000000000000000000e+4900L; variable 40 if(huge+x>one) return x; /* return x inexact except 0 */ in asinhl()
|
/picolibc-3.5.0-3.4.0/newlib/libm/math/ |
D | sf_atanh.c | 19 static const float one = 1.0, huge = 1e30; variable 34 if (ix < 0x31800000 && (huge + x) > zero) in atanhf()
|
D | sf_asinh.c | 20 huge = 1.0000000000e+30; variable 32 if (huge + x > one) in asinhf()
|
D | s_atanh.c | 37 static const __float64 one = _F_64(1.0), huge = _F_64(1e300); variable 53 if (ix < 0x3e300000 && (huge + x) > zero) in atanh64()
|
D | s_asinh.c | 66 huge = _F_64(1.00000000000000000000e+300); variable 78 if (huge + x > one) in asinh64()
|
D | sf_atan.c | 47 static const float one = 1.0, huge = 1.0e30; variable 67 if (huge + x > one) in atanf()
|
D | sf_exp.c | 27 huge = 1.0e+30, variable 75 if (huge + x > one) in expf()
|
D | s_atan.c | 100 static const __float64 one = _F_64(1.0), huge = _F_64(1.0e300); variable 122 if (huge + x > one) in atan64()
|
D | sf_asin.c | 19 huge = 1.000e+30, pio2_hi = 1.57079637050628662109375f, variable 48 if (huge + x > one) in asinf()
|
D | s_exp.c | 86 huge = _F_64(1.0e+300), variable 142 if (huge + x > one) in exp64()
|
/picolibc-3.5.0-3.4.0/test/ |
D | fenv.c | 67 volatile test_t huge = huge_val; variable 196 TEST_CASE(huge * huge, FE_OVERFLOW); in main() 197 TEST_CASE(test_pow(two, huge), FE_OVERFLOW); in main() 201 TEST_CASE(test_pow(two, -huge), FE_UNDERFLOW); in main()
|
/picolibc-3.5.0-3.4.0/newlib/libm/common/ |
D | sf_expm1.c | 25 huge = 1.0e+30, variable 79 t = huge+x; /* return x with inexact flags when x!=0 */ in expm1f() 80 return x - (t-(huge+x)); in expm1f()
|
D | s_expm1.c | 151 huge = _F_64(1.0e+300), variable 211 t = huge+x; /* return x with inexact flags when x!=0 */ in _NAME_64() 212 return x - (t-(huge+x)); in _NAME_64()
|
/picolibc-3.5.0-3.4.0/newlib/libm/ld/common/ |
D | s_atanl.c | 25 huge = 1.0e300l; variable 51 if(huge+x>one) return x; /* raise inexact */ in atanl()
|
D | e_asinl.c | 27 huge = 1.000e+300L; variable 45 if(huge+x>one) return x;/* return x with inexact if x!=0*/ in asinl()
|
/picolibc-3.5.0-3.4.0/newlib/libm/machine/spu/headers/ |
D | atanhf4.h | 90 vec_float4 huge = spu_splats(HUGE_VALF); in _atanhf4() local 132 result = spu_sel(result, huge, spu_cmpeq(xabs, onef)); in _atanhf4()
|