| /* @(#)s_ilogb.c 1.3 95/01/18 */ |
| * ==================================================== |
| * Copyright (C) 1993 by Sun Microsystems, Inc. All rights reserved. |
| * Developed at SunSoft, a Sun Microsystems, Inc. business. |
| * Permission to use, copy, modify, and distribute this |
| * software is freely granted, provided that this notice |
| * ==================================================== |
| * return the binary exponent of non-zero x |
| * ieee_ilogb(0) = 0x80000001 |
| * ieee_ilogb(inf/NaN) = 0x7fffffff (no signal is raised) |
| hx = (__HI(x))&0x7fffffff; /* high word of x */ |
| return 0x80000001; /* ieee_ilogb(0) = 0x80000001 */ |
| for (ix = -1043; lx>0; lx<<=1) ix -=1; |
| for (ix = -1022,hx<<=11; hx>0; hx<<=1) ix -=1; |
| else if (hx<0x7ff00000) return (hx>>20)-1023; |