blob: 4e5fa18bcbbd47d3405a474b6dc95a466e9b5062 (
plain)
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
|
#include "libm.h" // for FORCE_EVAL
#include <math.h> // for trunc
#include <stdint.h> // for uint64_t
double trunc(double x)
{
union {
double f;
uint64_t i;
} u = { x };
int e = (int)(u.i >> 52 & 0x7ff) - 0x3ff + 12;
uint64_t m;
if (e >= 52 + 12)
return x;
if (e < 12)
e = 1;
m = -1ULL >> e;
if ((u.i & m) == 0)
return x;
FORCE_EVAL(x + 0x1p120f);
u.i &= ~m;
return u.f;
}
|