File: s_isinf_nsl.c

package info (click to toggle)
glibc 2.19-16
  • links: PTS, VCS
  • area: main
  • in suites: jessie-kfreebsd
  • size: 203,652 kB
  • sloc: ansic: 969,800; asm: 241,205; sh: 10,063; makefile: 8,471; cpp: 3,595; perl: 2,077; pascal: 1,839; awk: 1,704; yacc: 317; sed: 73
file content (23 lines) | stat: -rw-r--r-- 425 bytes parent folder | download | duplicates (10)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
/*
 * __isinf_nsl(x) returns != 0 if x is ±inf, else 0;
 * no branching!
 * slightly dodgy in relying on signed shift right copying sign bit
 */

#include <math.h>
#include <math_private.h>

int
__isinf_nsl (long double x)
{
  double xhi;
  int64_t hx, mask;

  xhi = ldbl_high (x);
  EXTRACT_WORDS64 (hx, xhi);

  mask = (hx & 0x7fffffffffffffffLL) ^ 0x7ff0000000000000LL;
  mask |= -mask;
  mask >>= 63;
  return ~mask;
}