blob: de45069fcd994828ef0718fefdf53b74f3a6e8ea (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
|
#include <math.h>
#include <stdint.h>
double modf(double x, double *iptr)
{
union {double x; uint64_t n;} u = {x};
uint64_t mask;
int e;
e = (int)(u.n>>52 & 0x7ff) - 0x3ff;
/* no fractional part */
if (e >= 52) {
*iptr = x;
if (e == 0x400 && u.n<<12 != 0) /* nan */
return x;
u.n &= (uint64_t)1<<63;
return u.x;
}
/* no integral part*/
if (e < 0) {
u.n &= (uint64_t)1<<63;
*iptr = u.x;
return x;
}
mask = (uint64_t)-1>>12 >> e;
if ((u.n & mask) == 0) {
*iptr = x;
u.n &= (uint64_t)1<<63;
return u.x;
}
u.n &= ~mask;
*iptr = u.x;
return x - *iptr;
}
|