10 * See the License for the specific language governing permissions
11 * and limitations under the License.
12 *
13 * When distributing Covered Code, include this CDDL HEADER in each
14 * file and include the License file at usr/src/OPENSOLARIS.LICENSE.
15 * If applicable, add the following below this CDDL HEADER, with the
16 * fields enclosed by brackets "[]" replaced with your own identifying
17 * information: Portions Copyright [yyyy] [name of copyright owner]
18 *
19 * CDDL HEADER END
20 */
21
22 /*
23 * Copyright 2011 Nexenta Systems, Inc. All rights reserved.
24 */
25 /*
26 * Copyright 2006 Sun Microsystems, Inc. All rights reserved.
27 * Use is subject to license terms.
28 */
29
30 #pragma weak csqrtl = __csqrtl
31
32 #include "libm.h" /* fabsl/isinfl/sqrtl */
33 #include "complex_wrapper.h"
34 #include "longdouble.h"
35
36 /* INDENT OFF */
37 static const long double
38 twom9001 = 2.6854002716003034957421765100615693043656e-2710L,
39 twom4500 = 2.3174987687592429423263242862381544149252e-1355L,
40 two8999 = 9.3095991180122343502582347372163290310934e+2708L,
41 two4500 = 4.3149968987270974283777803545571722250806e+1354L,
42 zero = 0.0L,
43 half = 0.5L,
44 two = 2.0L;
45 /* INDENT ON */
46
47 ldcomplex
48 csqrtl(ldcomplex z) {
49 ldcomplex ans;
50 long double x, y, t, ax, ay;
|
10 * See the License for the specific language governing permissions
11 * and limitations under the License.
12 *
13 * When distributing Covered Code, include this CDDL HEADER in each
14 * file and include the License file at usr/src/OPENSOLARIS.LICENSE.
15 * If applicable, add the following below this CDDL HEADER, with the
16 * fields enclosed by brackets "[]" replaced with your own identifying
17 * information: Portions Copyright [yyyy] [name of copyright owner]
18 *
19 * CDDL HEADER END
20 */
21
22 /*
23 * Copyright 2011 Nexenta Systems, Inc. All rights reserved.
24 */
25 /*
26 * Copyright 2006 Sun Microsystems, Inc. All rights reserved.
27 * Use is subject to license terms.
28 */
29
30 #pragma weak __csqrtl = csqrtl
31
32 #include "libm.h" /* fabsl/isinfl/sqrtl */
33 #include "complex_wrapper.h"
34 #include "longdouble.h"
35
36 /* INDENT OFF */
37 static const long double
38 twom9001 = 2.6854002716003034957421765100615693043656e-2710L,
39 twom4500 = 2.3174987687592429423263242862381544149252e-1355L,
40 two8999 = 9.3095991180122343502582347372163290310934e+2708L,
41 two4500 = 4.3149968987270974283777803545571722250806e+1354L,
42 zero = 0.0L,
43 half = 0.5L,
44 two = 2.0L;
45 /* INDENT ON */
46
47 ldcomplex
48 csqrtl(ldcomplex z) {
49 ldcomplex ans;
50 long double x, y, t, ax, ay;
|