aboutsummaryrefslogtreecommitdiff
path: root/primedev/core/math/bits.cpp
blob: c879a45c0e4fe257d0993019975195160ae60dc2 (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
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
//=============================================================================//
//
// Purpose: look for NANs, infinities, and underflows.
//
//=============================================================================//

#include "bits.h"

//-----------------------------------------------------------------------------
// This follows the ANSI/IEEE 754-1985 standard
//-----------------------------------------------------------------------------
unsigned long& FloatBits(float& f)
{
	return *reinterpret_cast<unsigned long*>(&f);
}

unsigned long const& FloatBits(float const& f)
{
	return *reinterpret_cast<unsigned long const*>(&f);
}

float BitsToFloat(unsigned long i)
{
	return *reinterpret_cast<float*>(&i);
}

bool IsFinite(float f)
{
	return ((FloatBits(f) & 0x7F800000) != 0x7F800000);
}

unsigned long FloatAbsBits(float f)
{
	return FloatBits(f) & 0x7FFFFFFF;
}

float FloatMakePositive(float f)
{
	return fabsf(f);
}

float FloatNegate(float f)
{
	return -f; // BitsToFloat( FloatBits(f) ^ 0x80000000 );
}