2.9
[glibc/nacl-glibc.git] / sysdeps / ieee754 / ldbl-96 / s_cbrtl.c
blob0f8227a04b4a057e0f7fc40dd3a56c01f44c570d
1 /* Compute cubic root of double value.
2 Copyright (C) 1997 Free Software Foundation, Inc.
3 This file is part of the GNU C Library.
4 Contributed by Dirk Alboth <dirka@uni-paderborn.de> and
5 Ulrich Drepper <drepper@cygnus.com>, 1997.
7 The GNU C Library is free software; you can redistribute it and/or
8 modify it under the terms of the GNU Lesser General Public
9 License as published by the Free Software Foundation; either
10 version 2.1 of the License, or (at your option) any later version.
12 The GNU C Library is distributed in the hope that it will be useful,
13 but WITHOUT ANY WARRANTY; without even the implied warranty of
14 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
15 Lesser General Public License for more details.
17 You should have received a copy of the GNU Lesser General Public
18 License along with the GNU C Library; if not, write to the Free
19 Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA
20 02111-1307 USA. */
22 #include "math.h"
23 #include "math_private.h"
26 #define CBRT2 1.2599210498948731648 /* 2^(1/3) */
27 #define SQR_CBRT2 1.5874010519681994748 /* 2^(2/3) */
29 /* We don't use long double values here since U need not be computed
30 with full precision. */
31 static const double factor[5] =
33 1.0 / SQR_CBRT2,
34 1.0 / CBRT2,
35 1.0,
36 CBRT2,
37 SQR_CBRT2
40 static const long double third = 0.3333333333333333333333333L;
42 long double
43 __cbrtl (long double x)
45 long double xm, u;
46 int xe;
48 /* Reduce X. XM now is an range 1.0 to 0.5. */
49 xm = __frexpl (fabs (x), &xe);
51 /* If X is not finite or is null return it (with raising exceptions
52 if necessary.
53 Note: *Our* version of `frexp' sets XE to zero if the argument is
54 Inf or NaN. This is not portable but faster. */
55 if (xe == 0 && fpclassify (x) <= FP_ZERO)
56 return x + x;
58 u = (((-1.34661104733595206551E-1 * xm
59 + 5.46646013663955245034E-1) * xm
60 - 9.54382247715094465250E-1) * xm
61 + 1.13999833547172932737E0) * xm
62 + 4.02389795645447521269E-1;
64 u *= factor[2 + xe % 3];
65 u = __ldexpl (x > 0.0 ? u : -u, xe / 3);
67 u -= (u - (x / (u * u))) * third;
68 u -= (u - (x / (u * u))) * third;
69 return u;
71 weak_alias (__cbrtl, cbrtl)