mirror of
https://github.com/neovim/neovim.git
synced 2025-09-28 22:18:33 +00:00

* refactor: format all C files under nvim * refactor: disable formatting for Vim-owned files: * src/nvim/indent_c.c * src/nvim/regexp.c * src/nvim/regexp_nfa.c * src/nvim/testdir/samples/memfile_test.c
40 lines
741 B
C
40 lines
741 B
C
// This is an open source non-commercial project. Dear PVS-Studio, please check
|
|
// it. PVS-Studio Static Code Analyzer for C, C++ and C#: http://www.viva64.com
|
|
|
|
#include <math.h>
|
|
#include <stdint.h>
|
|
#include <string.h>
|
|
|
|
#include "nvim/math.h"
|
|
|
|
#ifdef INCLUDE_GENERATED_DECLARATIONS
|
|
# include "math.c.generated.h"
|
|
#endif
|
|
|
|
int xfpclassify(double d)
|
|
{
|
|
uint64_t m;
|
|
int e;
|
|
|
|
memcpy(&m, &d, sizeof(m));
|
|
e = 0x7ff & (m >> 52);
|
|
m = 0xfffffffffffffULL & m;
|
|
|
|
switch (e) {
|
|
default:
|
|
return FP_NORMAL;
|
|
case 0x000:
|
|
return m ? FP_SUBNORMAL : FP_ZERO;
|
|
case 0x7ff:
|
|
return m ? FP_NAN : FP_INFINITE;
|
|
}
|
|
}
|
|
int xisinf(double d)
|
|
{
|
|
return FP_INFINITE == xfpclassify(d);
|
|
}
|
|
int xisnan(double d)
|
|
{
|
|
return FP_NAN == xfpclassify(d);
|
|
}
|