nscd: Use time_t for return type of addgetnetgrentX
[glibc.git] / sysdeps / ieee754 / ldbl-128 / e_ilogbl.c
blob1d81a26fb81e9e107dcc1bf9982e859edc6d2dd5
1 /* s_ilogbl.c -- long double version of s_ilogb.c.
2 */
4 /*
5 * ====================================================
6 * Copyright (C) 1993 by Sun Microsystems, Inc. All rights reserved.
8 * Developed at SunPro, a Sun Microsystems, Inc. business.
9 * Permission to use, copy, modify, and distribute this
10 * software is freely granted, provided that this notice
11 * is preserved.
12 * ====================================================
15 #if defined(LIBM_SCCS) && !defined(lint)
16 static char rcsid[] = "$NetBSD: $";
17 #endif
19 /* ilogbl(long double x)
20 * return the binary exponent of non-zero x
21 * ilogbl(0) = FP_ILOGB0
22 * ilogbl(NaN) = FP_ILOGBNAN (no signal is raised)
23 * ilogbl(+-Inf) = INT_MAX (no signal is raised)
26 #include <limits.h>
27 #include <math.h>
28 #include <math_private.h>
30 int __ieee754_ilogbl (_Float128 x)
32 int64_t hx,lx;
33 int ix;
35 GET_LDOUBLE_WORDS64(hx,lx,x);
36 hx &= 0x7fffffffffffffffLL;
37 if(hx <= 0x0001000000000000LL) {
38 if((hx|lx)==0)
39 return FP_ILOGB0; /* ilogbl(0) = FP_ILOGB0 */
40 else /* subnormal x */
41 if(hx==0) {
42 for (ix = -16431; lx>0; lx<<=1) ix -=1;
43 } else {
44 for (ix = -16382, hx<<=15; hx>0; hx<<=1) ix -=1;
46 return ix;
48 else if (hx<0x7fff000000000000LL) return (hx>>48)-0x3fff;
49 else if (FP_ILOGBNAN != INT_MAX) {
50 /* ISO C99 requires ilogbl(+-Inf) == INT_MAX. */
51 if (((hx^0x7fff000000000000LL)|lx) == 0)
52 return INT_MAX;
54 return FP_ILOGBNAN;