File: s_isinf_nsl.c

package info (click to toggle)
glibc 2.19-11
  • links: PTS, VCS
  • area: main
  • in suites: jessie
  • size: 202,392 kB
  • ctags: 140,042
  • sloc: ansic: 969,214; asm: 241,208; sh: 10,046; makefile: 8,471; cpp: 3,595; perl: 2,077; pascal: 1,839; awk: 1,704; yacc: 317; sed: 73
file content (18 lines) | stat: -rw-r--r-- 314 bytes parent folder | download | duplicates (10)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
/*
 * Written by Ulrich Drepper <drepper@gmail.com>.
 */

/*
 * __isinf_nsl(x) returns != 0 if x is ±inf, else 0;
 */

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

int
__isinf_nsl (long double x)
{
	int32_t se,hx,lx;
	GET_LDOUBLE_WORDS(se,hx,lx,x);
	return !(((se & 0x7fff) ^ 0x7fff) | lx | (hx & 0x7fffffff));
}