summaryrefslogtreecommitdiff
path: root/src/math/modff.c
blob: 84d0b82a56250bc36e9ee7083f9f179e3e5ad90a (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>

float modff(float x, float *iptr)
{
	union {float x; uint32_t n;} u = {x};
	uint32_t mask;
	int e;

	e = (int)(u.n>>23 & 0xff) - 0x7f;

	/* no fractional part */
	if (e >= 23) {
		*iptr = x;
		if (e == 0x80 && u.n<<9 != 0) { /* nan */
			return x;
		}
		u.n &= 0x80000000;
		return u.x;
	}
	/* no integral part */
	if (e < 0) {
		u.n &= 0x80000000;
		*iptr = u.x;
		return x;
	}

	mask = 0x007fffff>>e;
	if ((u.n & mask) == 0) {
		*iptr = x;
		u.n &= 0x80000000;
		return u.x;
	}
	u.n &= ~mask;
	*iptr = u.x;
	return x - *iptr;
}