Lines Matching +full:0 +full:x40800000

26 erx = 8.42697144e-01,			/* 0x3f57bb00 */
28 * In the domain [0, 2**-14], only the first term in the power series
32 efx = 1.28379166e-01, /* 0x3e0375d4 */
33 efx8= 1.02703333e+00, /* 0x3f8375d4 */
35 * Domain [0, 0.84375], range ~[-5.4419e-10, 5.5179e-10]:
38 pp0 = 1.28379166e-01, /* 0x3e0375d4 */
39 pp1 = -3.36030394e-01, /* 0xbeac0c2d */
40 pp2 = -1.86261395e-03, /* 0xbaf422f4 */
41 qq1 = 3.12324315e-01, /* 0x3e9fe8f9 */
42 qq2 = 2.16070414e-02, /* 0x3cb10140 */
43 qq3 = -1.98859372e-03, /* 0xbb025311 */
48 pa0 = 3.65041046e-06, /* 0x3674f993 */
49 pa1 = 4.15109307e-01, /* 0x3ed48935 */
50 pa2 = -2.09395722e-01, /* 0xbe566bd5 */
51 pa3 = 8.67677554e-02, /* 0x3db1b34b */
52 qa1 = 4.95560974e-01, /* 0x3efdba2b */
53 qa2 = 3.71248513e-01, /* 0x3ebe1449 */
54 qa3 = 3.92478965e-02, /* 0x3d20c267 */
59 ra0 = -9.88156721e-03, /* 0xbc21e64c */
60 ra1 = -5.43658376e-01, /* 0xbf0b2d32 */
61 ra2 = -1.66828310e+00, /* 0xbfd58a4d */
62 ra3 = -6.91554189e-01, /* 0xbf3109b2 */
63 sa1 = 4.48581553e+00, /* 0x408f8bcd */
64 sa2 = 4.10799170e+00, /* 0x408374ab */
65 sa3 = 5.53855181e-01, /* 0x3f0dc974 */
70 rb0 = -9.86496918e-03, /* 0xbc21a0ae */
71 rb1 = -5.48049808e-01, /* 0xbf0c4cfe */
72 rb2 = -1.84115684e+00, /* 0xbfebab07 */
73 sb1 = 4.87132740e+00, /* 0x409be1ea */
74 sb2 = 3.04982710e+00, /* 0x4043305e */
75 sb3 = -7.61900663e-01; /* 0xbf430bec */
83 ix = hx&0x7fffffff; in erff()
84 if(ix>=0x7f800000) { /* erff(nan)=nan */ in erff()
89 if(ix < 0x3f580000) { /* |x|<0.84375 */ in erff()
90 if(ix < 0x38800000) { /* |x|<2**-14 */ in erff()
91 if (ix < 0x04000000) /* |x|<0x1p-119 */ in erff()
101 if(ix < 0x3fa00000) { /* 0.84375 <= |x| < 1.25 */ in erff()
105 if(hx>=0) return erx + P/Q; else return -erx - P/Q; in erff()
107 if (ix >= 0x40800000) { /* inf>|x|>=4 */ in erff()
108 if(hx>=0) return one-tiny; else return tiny-one; in erff()
112 if(ix< 0x4036db8c) { /* |x| < 2.85715 ~ 1/0.35 */ in erff()
119 SET_FLOAT_WORD(z,hx&0xffffe000); in erff()
121 if(hx>=0) return one-r/x; else return r/x-one; in erff()
130 ix = hx&0x7fffffff; in erfcf()
131 if(ix>=0x7f800000) { /* erfcf(nan)=nan */ in erfcf()
132 /* erfcf(+-inf)=0,2 */ in erfcf()
136 if(ix < 0x3f580000) { /* |x|<0.84375 */ in erfcf()
137 if(ix < 0x33800000) /* |x|<2**-24 */ in erfcf()
143 if(hx < 0x3e800000) { /* x<1/4 */ in erfcf()
151 if(ix < 0x3fa00000) { /* 0.84375 <= |x| < 1.25 */ in erfcf()
155 if(hx>=0) { in erfcf()
161 if (ix < 0x41300000) { /* |x|<11 */ in erfcf()
164 if(ix< 0x4036db8c) { /* |x| < 2.85715 ~ 1/.35 */ in erfcf()
168 if(hx<0&&ix>=0x40a00000) return two-tiny;/* x < -5 */ in erfcf()
172 SET_FLOAT_WORD(z,hx&0xffffe000); in erfcf()
174 if(hx>0) return r/x; else return two-r/x; in erfcf()
176 if(hx>0) return tiny*tiny; else return two-tiny; in erfcf()