12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758 |
- #include "cdefs-compat.h"
- #include <openlibm_math.h>
- #include "math_private.h"
- static const float one = 1.0;
- OLM_DLLEXPORT float
- modff(float x, float *iptr)
- {
- int32_t i0,j0;
- u_int32_t i;
- GET_FLOAT_WORD(i0,x);
- j0 = ((i0>>23)&0xff)-0x7f;
- if(j0<23) {
- if(j0<0) {
- SET_FLOAT_WORD(*iptr,i0&0x80000000);
- return x;
- } else {
- i = (0x007fffff)>>j0;
- if((i0&i)==0) {
- u_int32_t ix;
- *iptr = x;
- GET_FLOAT_WORD(ix,x);
- SET_FLOAT_WORD(x,ix&0x80000000);
- return x;
- } else {
- SET_FLOAT_WORD(*iptr,i0&(~i));
- return x - *iptr;
- }
- }
- } else {
- u_int32_t ix;
- *iptr = x*one;
- if (x != x)
- return x;
- GET_FLOAT_WORD(ix,x);
- SET_FLOAT_WORD(x,ix&0x80000000);
- return x;
- }
- }
|