#include <sys/cdefs.h>
#if defined(LIBM_SCCS) && !defined(lint)
__RCSID("$NetBSD: s_modf.c,v 1.15 2014/06/16 12:54:43 joerg Exp $");
#endif
#include "math.h"
#include "math_private.h"
static const double one = 1.0;
#ifndef __HAVE_LONG_DOUBLE
__strong_alias(_modfl, modf)
__weak_alias(modfl, modf)
#endif
double
modf(double x, double *iptr)
{
int32_t i0,i1,jj0;
u_int32_t i;
EXTRACT_WORDS(i0,i1,x);
jj0 = (((uint32_t)i0>>20)&0x7ff)-0x3ff;
if(jj0<20) {
if(jj0<0) {
INSERT_WORDS(*iptr,i0&0x80000000,0);
return x;
} else {
i = (0x000fffff)>>jj0;
if(((i0&i)|i1)==0) {
u_int32_t high;
*iptr = x;
GET_HIGH_WORD(high,x);
INSERT_WORDS(x,high&0x80000000,0);
return x;
} else {
INSERT_WORDS(*iptr,i0&(~i),0);
return x - *iptr;
}
}
} else if (jj0>51) {
u_int32_t high;
*iptr = x*one;
if (jj0 == 0x400)
return 0.0 / x;
GET_HIGH_WORD(high,x);
INSERT_WORDS(x,high&0x80000000,0);
return x;
} else {
i = ((u_int32_t)(0xffffffff))>>(jj0-20);
if((i1&i)==0) {
u_int32_t high;
*iptr = x;
GET_HIGH_WORD(high,x);
INSERT_WORDS(x,high&0x80000000,0);
return x;
} else {
INSERT_WORDS(*iptr,i0,i1&(~i));
return x - *iptr;
}
}
}