jdk/src/share/native/java/lang/fdlibm/src/s_asinh.c
changeset 10204 bbd2c5e0ce05
parent 10203 cca843a7d258
parent 10174 e63dffa79ddb
child 10205 de9223c94f9c
equal deleted inserted replaced
10203:cca843a7d258 10204:bbd2c5e0ce05
     1 
       
     2 /*
       
     3  * Copyright (c) 1998, 2001, Oracle and/or its affiliates. All rights reserved.
       
     4  * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
       
     5  *
       
     6  * This code is free software; you can redistribute it and/or modify it
       
     7  * under the terms of the GNU General Public License version 2 only, as
       
     8  * published by the Free Software Foundation.  Oracle designates this
       
     9  * particular file as subject to the "Classpath" exception as provided
       
    10  * by Oracle in the LICENSE file that accompanied this code.
       
    11  *
       
    12  * This code is distributed in the hope that it will be useful, but WITHOUT
       
    13  * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
       
    14  * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
       
    15  * version 2 for more details (a copy is included in the LICENSE file that
       
    16  * accompanied this code).
       
    17  *
       
    18  * You should have received a copy of the GNU General Public License version
       
    19  * 2 along with this work; if not, write to the Free Software Foundation,
       
    20  * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
       
    21  *
       
    22  * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
       
    23  * or visit www.oracle.com if you need additional information or have any
       
    24  * questions.
       
    25  */
       
    26 
       
    27 /* asinh(x)
       
    28  * Method :
       
    29  *      Based on
       
    30  *              asinh(x) = sign(x) * log [ |x| + sqrt(x*x+1) ]
       
    31  *      we have
       
    32  *      asinh(x) := x  if  1+x*x=1,
       
    33  *               := sign(x)*(log(x)+ln2)) for large |x|, else
       
    34  *               := sign(x)*log(2|x|+1/(|x|+sqrt(x*x+1))) if|x|>2, else
       
    35  *               := sign(x)*log1p(|x| + x^2/(1 + sqrt(1+x^2)))
       
    36  */
       
    37 
       
    38 #include "fdlibm.h"
       
    39 
       
    40 #ifdef __STDC__
       
    41 static const double
       
    42 #else
       
    43 static double
       
    44 #endif
       
    45 one =  1.00000000000000000000e+00, /* 0x3FF00000, 0x00000000 */
       
    46 ln2 =  6.93147180559945286227e-01, /* 0x3FE62E42, 0xFEFA39EF */
       
    47 huge=  1.00000000000000000000e+300;
       
    48 
       
    49 #ifdef __STDC__
       
    50         double asinh(double x)
       
    51 #else
       
    52         double asinh(x)
       
    53         double x;
       
    54 #endif
       
    55 {
       
    56         double t,w;
       
    57         int hx,ix;
       
    58         hx = __HI(x);
       
    59         ix = hx&0x7fffffff;
       
    60         if(ix>=0x7ff00000) return x+x;  /* x is inf or NaN */
       
    61         if(ix< 0x3e300000) {    /* |x|<2**-28 */
       
    62             if(huge+x>one) return x;    /* return x inexact except 0 */
       
    63         }
       
    64         if(ix>0x41b00000) {     /* |x| > 2**28 */
       
    65             w = __ieee754_log(fabs(x))+ln2;
       
    66         } else if (ix>0x40000000) {     /* 2**28 > |x| > 2.0 */
       
    67             t = fabs(x);
       
    68             w = __ieee754_log(2.0*t+one/(sqrt(x*x+one)+t));
       
    69         } else {                /* 2.0 > |x| > 2**-28 */
       
    70             t = x*x;
       
    71             w =log1p(fabs(x)+t/(one+sqrt(one+t)));
       
    72         }
       
    73         if(hx>0) return w; else return -w;
       
    74 }