~ubuntu-branches/debian/wheezy/couchdb/wheezy

« back to all changes in this revision

Viewing changes to src/js/fdlibm/s_rint.c

  • Committer: Bazaar Package Importer
  • Author(s): Noah Slater
  • Date: 2008-02-06 17:03:38 UTC
  • Revision ID: james.westby@ubuntu.com-20080206170338-y411anylx3oplqid
Tags: upstream-0.7.3~svn684
ImportĀ upstreamĀ versionĀ 0.7.3~svn684

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/* -*- Mode: C; tab-width: 8; indent-tabs-mode: nil; c-basic-offset: 4 -*-
 
2
 *
 
3
 * ***** BEGIN LICENSE BLOCK *****
 
4
 * Version: MPL 1.1/GPL 2.0/LGPL 2.1
 
5
 *
 
6
 * The contents of this file are subject to the Mozilla Public License Version
 
7
 * 1.1 (the "License"); you may not use this file except in compliance with
 
8
 * the License. You may obtain a copy of the License at
 
9
 * http://www.mozilla.org/MPL/
 
10
 *
 
11
 * Software distributed under the License is distributed on an "AS IS" basis,
 
12
 * WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License
 
13
 * for the specific language governing rights and limitations under the
 
14
 * License.
 
15
 *
 
16
 * The Original Code is Mozilla Communicator client code, released
 
17
 * March 31, 1998.
 
18
 *
 
19
 * The Initial Developer of the Original Code is
 
20
 * Sun Microsystems, Inc.
 
21
 * Portions created by the Initial Developer are Copyright (C) 1998
 
22
 * the Initial Developer. All Rights Reserved.
 
23
 *
 
24
 * Contributor(s):
 
25
 *
 
26
 * Alternatively, the contents of this file may be used under the terms of
 
27
 * either of the GNU General Public License Version 2 or later (the "GPL"),
 
28
 * or the GNU Lesser General Public License Version 2.1 or later (the "LGPL"),
 
29
 * in which case the provisions of the GPL or the LGPL are applicable instead
 
30
 * of those above. If you wish to allow use of your version of this file only
 
31
 * under the terms of either the GPL or the LGPL, and not to allow others to
 
32
 * use your version of this file under the terms of the MPL, indicate your
 
33
 * decision by deleting the provisions above and replace them with the notice
 
34
 * and other provisions required by the GPL or the LGPL. If you do not delete
 
35
 * the provisions above, a recipient may use your version of this file under
 
36
 * the terms of any one of the MPL, the GPL or the LGPL.
 
37
 *
 
38
 * ***** END LICENSE BLOCK ***** */
 
39
 
 
40
/* @(#)s_rint.c 1.3 95/01/18 */
 
41
/*
 
42
 * ====================================================
 
43
 * Copyright (C) 1993 by Sun Microsystems, Inc. All rights reserved.
 
44
 *
 
45
 * Developed at SunSoft, a Sun Microsystems, Inc. business.
 
46
 * Permission to use, copy, modify, and distribute this
 
47
 * software is freely granted, provided that this notice 
 
48
 * is preserved.
 
49
 * ====================================================
 
50
 */
 
51
 
 
52
/*
 
53
 * rint(x)
 
54
 * Return x rounded to integral value according to the prevailing
 
55
 * rounding mode.
 
56
 * Method:
 
57
 *      Using floating addition.
 
58
 * Exception:
 
59
 *      Inexact flag raised if x not equal to rint(x).
 
60
 */
 
61
 
 
62
#include "fdlibm.h"
 
63
 
 
64
#ifdef __STDC__
 
65
static const double
 
66
#else
 
67
static double 
 
68
#endif
 
69
TWO52[2]={
 
70
  4.50359962737049600000e+15, /* 0x43300000, 0x00000000 */
 
71
 -4.50359962737049600000e+15, /* 0xC3300000, 0x00000000 */
 
72
};
 
73
 
 
74
#ifdef __STDC__
 
75
        double fd_rint(double x)
 
76
#else
 
77
        double fd_rint(x)
 
78
        double x;
 
79
#endif
 
80
{
 
81
        int i0,j0,sx;
 
82
        unsigned i,i1;
 
83
        double w,t;
 
84
        fd_twoints u;
 
85
 
 
86
        u.d = x;
 
87
        i0 =  __HI(u);
 
88
        sx = (i0>>31)&1;
 
89
        i1 =  __LO(u);
 
90
        j0 = ((i0>>20)&0x7ff)-0x3ff;
 
91
        if(j0<20) {
 
92
            if(j0<0) {  
 
93
                if(((i0&0x7fffffff)|i1)==0) return x;
 
94
                i1 |= (i0&0x0fffff);
 
95
                i0 &= 0xfffe0000;
 
96
                i0 |= ((i1|-(int)i1)>>12)&0x80000;
 
97
                u.d = x;
 
98
                __HI(u)=i0;
 
99
                x = u.d;
 
100
                w = TWO52[sx]+x;
 
101
                t =  w-TWO52[sx];
 
102
                u.d = t;
 
103
                i0 = __HI(u);
 
104
                __HI(u) = (i0&0x7fffffff)|(sx<<31);
 
105
                t = u.d;
 
106
                return t;
 
107
            } else {
 
108
                i = (0x000fffff)>>j0;
 
109
                if(((i0&i)|i1)==0) return x; /* x is integral */
 
110
                i>>=1;
 
111
                if(((i0&i)|i1)!=0) {
 
112
                    if(j0==19) i1 = 0x40000000; else
 
113
                    i0 = (i0&(~i))|((0x20000)>>j0);
 
114
                }
 
115
            }
 
116
        } else if (j0>51) {
 
117
            if(j0==0x400) return x+x;   /* inf or NaN */
 
118
            else return x;              /* x is integral */
 
119
        } else {
 
120
            i = ((unsigned)(0xffffffff))>>(j0-20);
 
121
            if((i1&i)==0) return x;     /* x is integral */
 
122
            i>>=1;
 
123
            if((i1&i)!=0) i1 = (i1&(~i))|((0x40000000)>>(j0-20));
 
124
        }
 
125
        u.d = x;
 
126
        __HI(u) = i0;
 
127
        __LO(u) = i1;
 
128
        x = u.d;
 
129
        w = TWO52[sx]+x;
 
130
        return w-TWO52[sx];
 
131
}