genericopenlibs/openenvcore/libm/src/s_floor.c
changeset 0 e4d67989cc36
equal deleted inserted replaced
-1:000000000000 0:e4d67989cc36
       
     1 /*--------------------------------------------------------------------
       
     2  *© Portions copyright (c) 2006 Nokia Corporation.  All rights reserved.
       
     3  *--------------------------------------------------------------------
       
     4 */
       
     5 /* @(#)s_floor.c 5.1 93/09/24 */
       
     6 /*
       
     7  * ====================================================
       
     8  * Copyright (C) 1993 by Sun Microsystems, Inc. All rights reserved.
       
     9  *
       
    10  * Developed at SunPro, a Sun Microsystems, Inc. business.
       
    11  * Permission to use, copy, modify, and distribute this
       
    12  * software is freely granted, provided that this notice
       
    13  * is preserved.
       
    14  * ====================================================
       
    15  */
       
    16 #ifndef __SYMBIAN32__
       
    17 #ifndef lint
       
    18 static char rcsid[] = "$FreeBSD: src/lib/msun/src/s_floor.c,v 1.9 2003/07/23 04:53:46 peter Exp $";
       
    19 #endif
       
    20 #endif //__SYMBIAN32__
       
    21 
       
    22 /*
       
    23  * floor(x)
       
    24  * Return x rounded toward -inf to integral value
       
    25  * Method:
       
    26  *	Bit twiddling.
       
    27  * Exception:
       
    28  *	Inexact flag raised if x not equal to floor(x).
       
    29  */
       
    30 
       
    31 #include <math.h>
       
    32 #include "math_private.h"
       
    33 
       
    34 static const double huge = 1.0e300;
       
    35 
       
    36 EXPORT_C double floor(double x)
       
    37 {
       
    38 	int32_t i0,i1,j0;
       
    39 	u_int32_t i,j;
       
    40 	EXTRACT_WORDS(i0,i1,x);
       
    41 	j0 = ((i0>>20)&0x7ff)-0x3ff;
       
    42 	if(j0<20) {
       
    43 	    if(j0<0) { 	/* raise inexact if x != 0 */
       
    44 		if(huge+x>0.0) {/* return 0*sign(x) if |x|<1 */
       
    45 		    if(i0>=0) {i0=i1=0;}
       
    46 		    else if(((i0&0x7fffffff)|i1)!=0)
       
    47 			{ i0=0xbff00000;i1=0;}
       
    48 		}
       
    49 	    } else {
       
    50 		i = (0x000fffff)>>j0;
       
    51 		if(((i0&i)|i1)==0) return x; /* x is integral */
       
    52 		if(huge+x>0.0) {	/* raise inexact flag */
       
    53 		    if(i0<0) i0 += (0x00100000)>>j0;
       
    54 		    i0 &= (~i); i1=0;
       
    55 		}
       
    56 	    }
       
    57 	} else if (j0>51) {
       
    58 	    if(j0==0x400) return x+x;	/* inf or NaN */
       
    59 	    else return x;		/* x is integral */
       
    60 	} else {
       
    61 	    i = ((u_int32_t)(0xffffffff))>>(j0-20);
       
    62 	    if((i1&i)==0) return x;	/* x is integral */
       
    63 	    if(huge+x>0.0) { 		/* raise inexact flag */
       
    64 		if(i0<0) {
       
    65 		    if(j0==20) i0+=1;
       
    66 		    else {
       
    67 			j = i1+(1<<(52-j0));
       
    68 			if(j<i1) i0 +=1 ; 	/* got a carry */
       
    69 			i1=j;
       
    70 		    }
       
    71 		}
       
    72 		i1 &= (~i);
       
    73 	    }
       
    74 	}
       
    75 	INSERT_WORDS(x,i0,i1);
       
    76 	return x;
       
    77 }