File: fpclassify.c

package info (click to toggle)
check 0.15.2-3
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 4,404 kB
  • sloc: ansic: 11,759; sh: 5,258; makefile: 334
file content (63 lines) | stat: -rw-r--r-- 1,709 bytes parent folder | download | duplicates (2)
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
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
/* Copyright (C) 2017, bel2125
 *
 * This library is free software; you can redistribute it and/or
 * modify it under the terms of the GNU Lesser General Public
 * License as published by the Free Software Foundation; either
 * version 2.1 of the License, or (at your option) any later version.
 *
 * This library is distributed in the hope that it will be useful,
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
 * Lesser General Public License for more details.
 *
 * You should have received a copy of the GNU Lesser General Public
 * License along with this library; if not, write to the
 * Free Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston,
 * MA 02110-1301, USA.
 */
/* Note: Within "check", this file uses the LGPL license.
 * If you need only this file, you may find a MIT licensed version in
 * the "floatmagic" repository of the initial author.
 */

#include "libcompat.h"

double DOUBLE_ZERO = 0.0;

#if defined(NEED_fpclassify)

#if defined(HAVE_STDINT_H)
#include <stdint.h>
typedef uint64_t bitfield64;
#elif defined(_MSC_VER)
typedef unsigned __int64 bitfield64;
#else
typedef unsigned long long bitfield64;
#endif

static bitfield64 ms = 0x8000000000000000;
static bitfield64 me = 0x7FF0000000000000;
static bitfield64 mf = 0x000FFFFFFFFFFFFF;

int fpclassify(double d) 
{
  bitfield64 *p = (bitfield64 *)&d;
  if ((*p & me) != me) {
    /* finite */
    if (*p & mf) {
      /* finite and not null */
      if (*p & me) {
        return FP_NORMAL;
      }
      return FP_SUBNORMAL;
    }	
    return FP_ZERO;
  }
  if (*p & mf) {
    return FP_NAN;
  }
  return FP_INFINITE;
}

#endif