#include <float.h>
#include "math.h"
#include "math_private.h"
static const float
one = 1.0,
tiny = 1.0e-30,
o_threshold = 8.8721679688e+01,
ln2_hi = 6.9313812256e-01,
ln2_lo = 9.0580006145e-06,
invln2 = 1.4426950216e+00,
Q1 = -3.3333212137e-2,
Q2 = 1.5807170421e-3;
static volatile float huge = 1.0e+30;
float
expm1f(float x)
{
float y,hi,lo,c,t,e,hxs,hfx,r1,twopk;
int32_t k,xsb;
u_int32_t hx;
GET_FLOAT_WORD(hx,x);
xsb = hx&0x80000000;
hx &= 0x7fffffff;
if(hx >= 0x4195b844) {
if(hx >= 0x42b17218) {
if(hx>0x7f800000)
return x+x;
if(hx==0x7f800000)
return (xsb==0)? x:-1.0;
if(x > o_threshold) return huge*huge;
}
if(xsb!=0) {
if(x+tiny<(float)0.0)
return tiny-one;
}
}
if(hx > 0x3eb17218) {
if(hx < 0x3F851592) {
if(xsb==0)
{hi = x - ln2_hi; lo = ln2_lo; k = 1;}
else
{hi = x + ln2_hi; lo = -ln2_lo; k = -1;}
} else {
k = invln2*x+((xsb==0)?(float)0.5:(float)-0.5);
t = k;
hi = x - t*ln2_hi;
lo = t*ln2_lo;
}
STRICT_ASSIGN(float, x, hi - lo);
c = (hi-x)-lo;
}
else if(hx < 0x33000000) {
t = huge+x;
return x - (t-(huge+x));
}
else k = 0;
hfx = (float)0.5*x;
hxs = x*hfx;
r1 = one+hxs*(Q1+hxs*Q2);
t = (float)3.0-r1*hfx;
e = hxs*((r1-t)/((float)6.0 - x*t));
if(k==0) return x - (x*e-hxs);
else {
SET_FLOAT_WORD(twopk,((u_int32_t)(0x7f+k))<<23);
e = (x*(e-c)-c);
e -= hxs;
if(k== -1) return (float)0.5*(x-e)-(float)0.5;
if(k==1) {
if(x < (float)-0.25) return -(float)2.0*(e-(x+(float)0.5));
else return one+(float)2.0*(x-e);
}
if (k <= -2 || k>56) {
y = one-(e-x);
if (k == 128) y = y*2.0F*0x1p127F;
else y = y*twopk;
return y-one;
}
t = one;
if(k<23) {
SET_FLOAT_WORD(t,0x3f800000 - (0x1000000>>k));
y = t-(e-x);
y = y*twopk;
} else {
SET_FLOAT_WORD(t,((0x7f-k)<<23));
y = x-(e+t);
y += one;
y = y*twopk;
}
}
return y;
}