3eedb0839713144cf1fbb2f2e05cd7ba6f04aebc
[musl] / src / math / truncl.c
1 #include "libm.h"
2
3 #if LDBL_MANT_DIG == 53 && LDBL_MAX_EXP == 1024
4 long double truncl(long double x)
5 {
6         return trunc(x);
7 }
8 #elif (LDBL_MANT_DIG == 64 || LDBL_MANT_DIG == 113) && LDBL_MAX_EXP == 16384
9 #if LDBL_MANT_DIG == 64
10 #define TOINT 0x1p63
11 #elif LDBL_MANT_DIG == 113
12 #define TOINT 0x1p112
13 #endif
14 long double truncl(long double x)
15 {
16         union ldshape u = {x};
17         int e = u.i.se & 0x7fff;
18         int s = u.i.se >> 15;
19         long double y;
20
21         if (e >= 0x3fff+LDBL_MANT_DIG-1)
22                 return x;
23         if (e <= 0x3fff-1) {
24                 FORCE_EVAL(x + 0x1p120f);
25                 return x*0;
26         }
27         /* y = int(|x|) - |x|, where int(|x|) is an integer neighbor of |x| */
28         if (s)
29                 x = -x;
30         y = x + TOINT - TOINT - x;
31         if (y > 0)
32                 y -= 1;
33         x += y;
34         return s ? -x : x;
35 }
36 #endif