Add the DragonFly cvs id and perform general cleanups on cvs/rcs/sccs ids. Most
[dragonfly.git] / lib / msun / src / s_frexpf.c
1 /* s_frexpf.c -- float version of s_frexp.c.
2  * Conversion to float by Ian Lance Taylor, Cygnus Support, ian@cygnus.com.
3  *
4  * $FreeBSD: src/lib/msun/src/s_frexpf.c,v 1.6 1999/08/28 00:06:49 peter Exp $
5  * $DragonFly: src/lib/msun/src/Attic/s_frexpf.c,v 1.2 2003/06/17 04:26:53 dillon Exp $
6  */
7
8 /*
9  * ====================================================
10  * Copyright (C) 1993 by Sun Microsystems, Inc. All rights reserved.
11  *
12  * Developed at SunPro, a Sun Microsystems, Inc. business.
13  * Permission to use, copy, modify, and distribute this
14  * software is freely granted, provided that this notice
15  * is preserved.
16  * ====================================================
17  */
18
19 #include "math.h"
20 #include "math_private.h"
21
22 #ifdef __STDC__
23 static const float
24 #else
25 static float
26 #endif
27 two25 =  3.3554432000e+07; /* 0x4c000000 */
28
29 #ifdef __STDC__
30         float frexpf(float x, int *eptr)
31 #else
32         float frexpf(x, eptr)
33         float x; int *eptr;
34 #endif
35 {
36         int32_t hx,ix;
37         GET_FLOAT_WORD(hx,x);
38         ix = 0x7fffffff&hx;
39         *eptr = 0;
40         if(ix>=0x7f800000||(ix==0)) return x;   /* 0,inf,nan */
41         if (ix<0x00800000) {            /* subnormal */
42             x *= two25;
43             GET_FLOAT_WORD(hx,x);
44             ix = hx&0x7fffffff;
45             *eptr = -25;
46         }
47         *eptr += (ix>>23)-126;
48         hx = (hx&0x807fffff)|0x3f000000;
49         *(int*)&x = hx;
50         return x;
51 }