mirror of
https://github.com/reactos/reactos.git
synced 2025-07-02 06:01:21 +00:00
46 lines
1.1 KiB
C
46 lines
1.1 KiB
C
/*
|
|
* PROJECT: ReactOS CRT
|
|
* LICENSE: MIT (https://spdx.org/licenses/MIT)
|
|
* PURPOSE: Implementation of _fdclass.
|
|
* COPYRIGHT: Copyright 2025 Timo Kreuzer <timo.kreuzer@reactos.org>
|
|
*/
|
|
|
|
#include <math.h>
|
|
#include <stdint.h>
|
|
|
|
#if defined(_MSC_VER) && (_MSC_VER >= 1922)
|
|
_Check_return_ short __cdecl _fdclass(_In_ float _X);
|
|
#pragma function(_fdclass)
|
|
#endif
|
|
|
|
//
|
|
// Returns the floating-point classification of _X.
|
|
//
|
|
// FP_NAN - A quiet, signaling, or indeterminate NaN
|
|
// FP_INFINITE - A positive or negative infinity
|
|
// FP_NORMAL - A positive or negative normalized non-zero value
|
|
// FP_SUBNORMAL - A positive or negative subnormal (denormalized) value
|
|
// FP_ZERO - A positive or negative zero value
|
|
//
|
|
_Check_return_
|
|
short
|
|
__cdecl
|
|
_fdclass(_In_ float _X)
|
|
{
|
|
union { float f; uint32_t ui32; } u = { _X };
|
|
uint32_t e = u.ui32 & 0x7F800000u;
|
|
uint32_t m = u.ui32 & 0x007FFFFFu;
|
|
|
|
if (e == 0x7F800000u)
|
|
{
|
|
return m ? FP_NAN : FP_INFINITE;
|
|
}
|
|
else if (e == 0)
|
|
{
|
|
return m ? FP_SUBNORMAL : FP_ZERO;
|
|
}
|
|
else
|
|
{
|
|
return FP_NORMAL;
|
|
}
|
|
}
|