Add the DragonFly cvs id and perform general cleanups on cvs/rcs/sccs ids. Most
[dragonfly.git] / lib / msun / src / s_ceilf.c
1 /* s_ceilf.c -- float version of s_ceil.c.
2  * Conversion to float by Ian Lance Taylor, Cygnus Support, ian@cygnus.com.
3  *
4  * $FreeBSD: src/lib/msun/src/s_ceilf.c,v 1.5 1999/08/28 00:06:45 peter Exp $
5  * $DragonFly: src/lib/msun/src/Attic/s_ceilf.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 huge = 1.0e30;
24 #else
25 static float huge = 1.0e30;
26 #endif
27
28 #ifdef __STDC__
29         float ceilf(float x)
30 #else
31         float ceilf(x)
32         float x;
33 #endif
34 {
35         int32_t i0,j0;
36         u_int32_t i;
37
38         GET_FLOAT_WORD(i0,x);
39         j0 = ((i0>>23)&0xff)-0x7f;
40         if(j0<23) {
41             if(j0<0) {  /* raise inexact if x != 0 */
42                 if(huge+x>(float)0.0) {/* return 0*sign(x) if |x|<1 */
43                     if(i0<0) {i0=0x80000000;}
44                     else if(i0!=0) { i0=0x3f800000;}
45                 }
46             } else {
47                 i = (0x007fffff)>>j0;
48                 if((i0&i)==0) return x; /* x is integral */
49                 if(huge+x>(float)0.0) { /* raise inexact flag */
50                     if(i0>0) i0 += (0x00800000)>>j0;
51                     i0 &= (~i);
52                 }
53             }
54         } else {
55             if(j0==0x80) return x+x;    /* inf or NaN */
56             else return x;              /* x is integral */
57         }
58         SET_FLOAT_WORD(x,i0);
59         return x;
60 }