Set default charset to UTF-8 for libc.pot.
[glibc.git] / math / s_csqrtl.c
blob64332f67b2a84d966e2056cd1383954056f11bdb
1 /* Complex square root of long double value.
2 Copyright (C) 1997-2012 Free Software Foundation, Inc.
3 This file is part of the GNU C Library.
4 Based on an algorithm by Stephen L. Moshier <moshier@world.std.com>.
5 Contributed by 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, see
19 <http://www.gnu.org/licenses/>. */
21 #include <complex.h>
22 #include <math.h>
23 #include <math_private.h>
24 #include <float.h>
26 __complex__ long double
27 __csqrtl (__complex__ long double x)
29 __complex__ long double res;
30 int rcls = fpclassify (__real__ x);
31 int icls = fpclassify (__imag__ x);
33 if (__builtin_expect (rcls <= FP_INFINITE || icls <= FP_INFINITE, 0))
35 if (icls == FP_INFINITE)
37 __real__ res = HUGE_VALL;
38 __imag__ res = __imag__ x;
40 else if (rcls == FP_INFINITE)
42 if (__real__ x < 0.0)
44 __real__ res = icls == FP_NAN ? __nanl ("") : 0;
45 __imag__ res = __copysignl (HUGE_VALL, __imag__ x);
47 else
49 __real__ res = __real__ x;
50 __imag__ res = (icls == FP_NAN
51 ? __nanl ("") : __copysignl (0.0, __imag__ x));
54 else
56 __real__ res = __nanl ("");
57 __imag__ res = __nanl ("");
60 else
62 if (__builtin_expect (icls == FP_ZERO, 0))
64 if (__real__ x < 0.0)
66 __real__ res = 0.0;
67 __imag__ res = __copysignl (__ieee754_sqrtl (-__real__ x),
68 __imag__ x);
70 else
72 __real__ res = fabsl (__ieee754_sqrtl (__real__ x));
73 __imag__ res = __copysignl (0.0, __imag__ x);
76 else if (__builtin_expect (rcls == FP_ZERO, 0))
78 long double r = __ieee754_sqrtl (0.5 * fabsl (__imag__ x));
80 __real__ res = r;
81 __imag__ res = __copysignl (r, __imag__ x);
83 else
85 long double d, r, s;
86 int scale = 0;
88 if (fabsl (__real__ x) > LDBL_MAX / 2.0L
89 || fabsl (__imag__ x) > LDBL_MAX / 2.0L)
91 scale = 1;
92 __real__ x = __scalbnl (__real__ x, -2 * scale);
93 __imag__ x = __scalbnl (__imag__ x, -2 * scale);
95 else if (fabsl (__real__ x) < LDBL_MIN
96 && fabsl (__imag__ x) < LDBL_MIN)
98 scale = -(LDBL_MANT_DIG / 2);
99 __real__ x = __scalbnl (__real__ x, -2 * scale);
100 __imag__ x = __scalbnl (__imag__ x, -2 * scale);
103 d = __ieee754_hypotl (__real__ x, __imag__ x);
104 /* Use the identity 2 Re res Im res = Im x
105 to avoid cancellation error in d +/- Re x. */
106 if (__real__ x > 0)
108 r = __ieee754_sqrtl (0.5L * d + 0.5L * __real__ x);
109 s = (0.5L * __imag__ x) / r;
111 else
113 s = __ieee754_sqrtl (0.5L * d - 0.5L * __real__ x);
114 r = fabsl ((0.5L * __imag__ x) / s);
117 if (scale)
119 r = __scalbnl (r, scale);
120 s = __scalbnl (s, scale);
123 __real__ res = r;
124 __imag__ res = __copysignl (s, __imag__ x);
128 return res;
130 weak_alias (__csqrtl, csqrtl)