Update contrib.
2 * © Portions copyright (c) 2006-2007 Nokia Corporation. All rights reserved.
5 * Silicon Graphics Computer Systems, Inc.
10 * This material is provided "as is", with absolutely no warranty expressed
11 * or implied. Any use is at your own risk.
13 * Permission to use or copy this software for any purpose is hereby granted
14 * without fee, provided the above notices are retained on all copies.
15 * Permission to modify the code and to distribute modified code is granted,
16 * provided the above notices are retained, and a notice that the code was
17 * modified is included with the above copyright notice.
20 # include "stlport_prefix.h"
21 // Complex division and square roots.
23 #include "complex_impl.h"
25 #undef _STLP_TEMPLATE_NULL
26 #define _STLP_TEMPLATE_NULL
33 float abs_l(const complex<float>& __z)
35 return _STLP_HYPOTF(__z._M_re, __z._M_im);
38 double _STLP_CALL abs_l(const complex<double>& __z)
40 return _STLP_HYPOT(__z._M_re, __z._M_im);
43 #ifndef _STLP_NO_LONG_DOUBLE
44 long double _STLP_CALL abs_l(const complex<long double>& __z)
46 return _STLP_HYPOTL(__z._M_re, __z._M_im);
51 _STLP_EXP_DECLSPEC float _STLP_CALL abs(const complex<float>& __z)
53 return _STLP_HYPOTF(__z._M_re, __z._M_im);
56 _STLP_EXP_DECLSPEC double _STLP_CALL abs(const complex<double>& __z)
58 return _STLP_HYPOT(__z._M_re, __z._M_im);
61 #ifndef _STLP_NO_LONG_DOUBLE
63 _STLP_EXP_DECLSPEC long double _STLP_CALL abs(const complex<long double>& __z)
65 return _STLP_HYPOTL(__z._M_re, __z._M_im);
73 float _STLP_CALL arg_l(const complex<float>& __z)
75 return _STLP_ATAN2F(__z._M_im, __z._M_re);
79 double _STLP_CALL arg_l(const complex<double>& __z)
81 return _STLP_ATAN2(__z._M_im, __z._M_re);
84 #ifndef _STLP_NO_LONG_DOUBLE
85 long double _STLP_CALL arg_l(const complex<long double>& __z)
87 return _STLP_ATAN2L(__z._M_im, __z._M_re);
93 _STLP_EXP_DECLSPEC float _STLP_CALL arg(const complex<float>& __z)
95 return _STLP_ATAN2F(__z._M_im, __z._M_re);
99 _STLP_EXP_DECLSPEC double _STLP_CALL arg(const complex<double>& __z)
101 return _STLP_ATAN2(__z._M_im, __z._M_re);
104 #ifndef _STLP_NO_LONG_DOUBLE
106 _STLP_EXP_DECLSPEC long double _STLP_CALL arg(const complex<long double>& __z)
108 return _STLP_ATAN2L(__z._M_im, __z._M_re);
113 // Construct a complex number from polar representation
115 complex<float> _STLP_CALL polar_l(const float& __rho, const float& __phi)
117 return complex<float>(__rho * _STLP_COSF(__phi), __rho * _STLP_SINF(__phi));
120 complex<double> _STLP_CALL polar_l(const double& __rho, const double& __phi)
122 return complex<double>(__rho * _STLP_COS(__phi), __rho * _STLP_SIN(__phi));
125 #ifndef _STLP_NO_LONG_DOUBLE
126 complex<long double> _STLP_CALL polar_l(const long double& __rho, const long double& __phi)
128 return complex<long double>(__rho * _STLP_COSL(__phi), __rho * _STLP_SINL(__phi));
134 _STLP_EXP_DECLSPEC complex<float> _STLP_CALL polar(const float& __rho, const float& __phi)
136 return complex<float>(__rho * _STLP_COSF(__phi), __rho * _STLP_SINF(__phi));
139 _STLP_EXP_DECLSPEC complex<double> _STLP_CALL polar(const double& __rho, const double& __phi)
141 return complex<double>(__rho * _STLP_COS(__phi), __rho * _STLP_SIN(__phi));
144 #ifndef _STLP_NO_LONG_DOUBLE
146 _STLP_EXP_DECLSPEC complex<long double> _STLP_CALL polar(const long double& __rho, const long double& __phi)
148 return complex<long double>(__rho * _STLP_COSL(__phi), __rho * _STLP_SINL(__phi));
155 void _STLP_EXP_DECLSPEC
156 complex<float>::_div(const float& __z1_r, const float& __z1_i,
157 const float& __z2_r, const float& __z2_i,
158 float& __res_r, float& __res_i) {
159 float __ar = __z2_r >= 0 ? __z2_r : -__z2_r;
160 float __ai = __z2_i >= 0 ? __z2_i : -__z2_i;
163 float __ratio = __z2_r / __z2_i;
164 float __denom = __z2_i * (1 + __ratio * __ratio);
165 __res_r = (__z1_r * __ratio + __z1_i) / __denom;
166 __res_i = (__z1_i * __ratio - __z1_r) / __denom;
169 float __ratio = __z2_i / __z2_r;
170 float __denom = __z2_r * (1 + __ratio * __ratio);
171 __res_r = (__z1_r + __z1_i * __ratio) / __denom;
172 __res_i = (__z1_i - __z1_r * __ratio) / __denom;
176 void _STLP_EXP_DECLSPEC
177 complex<float>::_div(const float& __z1_r,
178 const float& __z2_r, const float& __z2_i,
179 float& __res_r, float& __res_i) {
180 float __ar = __z2_r >= 0 ? __z2_r : -__z2_r;
181 float __ai = __z2_i >= 0 ? __z2_i : -__z2_i;
184 float __ratio = __z2_r / __z2_i;
185 float __denom = __z2_i * (1 + __ratio * __ratio);
186 __res_r = (__z1_r * __ratio) / __denom;
187 __res_i = - __z1_r / __denom;
190 float __ratio = __z2_i / __z2_r;
191 float __denom = __z2_r * (1 + __ratio * __ratio);
192 __res_r = __z1_r / __denom;
193 __res_i = - (__z1_r * __ratio) / __denom;
198 void _STLP_EXP_DECLSPEC
199 complex<double>::_div(const double& __z1_r, const double& __z1_i,
200 const double& __z2_r, const double& __z2_i,
201 double& __res_r, double& __res_i) {
202 double __ar = __z2_r >= 0 ? __z2_r : -__z2_r;
203 double __ai = __z2_i >= 0 ? __z2_i : -__z2_i;
206 double __ratio = __z2_r / __z2_i;
207 double __denom = __z2_i * (1 + __ratio * __ratio);
208 __res_r = (__z1_r * __ratio + __z1_i) / __denom;
209 __res_i = (__z1_i * __ratio - __z1_r) / __denom;
212 double __ratio = __z2_i / __z2_r;
213 double __denom = __z2_r * (1 + __ratio * __ratio);
214 __res_r = (__z1_r + __z1_i * __ratio) / __denom;
215 __res_i = (__z1_i - __z1_r * __ratio) / __denom;
219 void _STLP_EXP_DECLSPEC
220 complex<double>::_div(const double& __z1_r,
221 const double& __z2_r, const double& __z2_i,
222 double& __res_r, double& __res_i) {
223 double __ar = __z2_r >= 0 ? __z2_r : -__z2_r;
224 double __ai = __z2_i >= 0 ? __z2_i : -__z2_i;
227 double __ratio = __z2_r / __z2_i;
228 double __denom = __z2_i * (1 + __ratio * __ratio);
229 __res_r = (__z1_r * __ratio) / __denom;
230 __res_i = - __z1_r / __denom;
233 double __ratio = __z2_i / __z2_r;
234 double __denom = __z2_r * (1 + __ratio * __ratio);
235 __res_r = __z1_r / __denom;
236 __res_i = - (__z1_r * __ratio) / __denom;
240 #ifndef _STLP_NO_LONG_DOUBLE
242 complex<long double>::_div(const long double& __z1_r, const long double& __z1_i,
243 const long double& __z2_r, const long double& __z2_i,
244 long double& __res_r, long double& __res_i) {
245 long double __ar = __z2_r >= 0 ? __z2_r : -__z2_r;
246 long double __ai = __z2_i >= 0 ? __z2_i : -__z2_i;
249 long double __ratio = __z2_r / __z2_i;
250 long double __denom = __z2_i * (1 + __ratio * __ratio);
251 __res_r = (__z1_r * __ratio + __z1_i) / __denom;
252 __res_i = (__z1_i * __ratio - __z1_r) / __denom;
255 long double __ratio = __z2_i / __z2_r;
256 long double __denom = __z2_r * (1 + __ratio * __ratio);
257 __res_r = (__z1_r + __z1_i * __ratio) / __denom;
258 __res_i = (__z1_i - __z1_r * __ratio) / __denom;
264 complex<long double>::_div(const long double& __z1_r,
265 const long double& __z2_r, const long double& __z2_i,
266 long double& __res_r, long double& __res_i) {
267 long double __ar = __z2_r >= 0 ? __z2_r : -__z2_r;
268 long double __ai = __z2_i >= 0 ? __z2_i : -__z2_i;
271 long double __ratio = __z2_r / __z2_i;
272 long double __denom = __z2_i * (1 + __ratio * __ratio);
273 __res_r = (__z1_r * __ratio) / __denom;
274 __res_i = - __z1_r / __denom;
277 long double __ratio = __z2_i / __z2_r;
278 long double __denom = __z2_r * (1 + __ratio * __ratio);
279 __res_r = __z1_r / __denom;
280 __res_i = - (__z1_r * __ratio) / __denom;
285 //----------------------------------------------------------------------
289 _STLP_EXP_DECLSPEC complex<float> _STLP_CALL
290 sqrt(const complex<float>& z) {
293 float mag = _STLP_HYPOTF(re, im);
294 complex<float> result;
297 result._M_re = result._M_im = 0.f;
298 } else if (re > 0.f) {
299 result._M_re = _STLP_SQRTF(0.5f * (mag + re));
300 result._M_im = im/result._M_re/2.f;
302 result._M_im = _STLP_SQRTF(0.5f * (mag - re));
304 result._M_im = - result._M_im;
305 result._M_re = im/result._M_im/2.f;
311 _STLP_EXP_DECLSPEC complex<double> _STLP_CALL
312 sqrt(const complex<double>& z) {
315 double mag = _STLP_HYPOT(re, im);
316 complex<double> result;
319 result._M_re = result._M_im = 0.;
320 } else if (re > 0.) {
321 result._M_re = _STLP_SQRT(0.5 * (mag + re));
322 result._M_im = im/result._M_re/2;
324 result._M_im = _STLP_SQRT(0.5 * (mag - re));
326 result._M_im = - result._M_im;
327 result._M_re = im/result._M_im/2;
332 #ifndef _STLP_NO_LONG_DOUBLE
333 _STLP_EXP_DECLSPEC complex<long double> _STLP_CALL
334 sqrt(const complex<long double>& z) {
335 long double re = z._M_re;
336 long double im = z._M_im;
337 long double mag = _STLP_HYPOTL(re, im);
338 complex<long double> result;
341 result._M_re = result._M_im = 0.L;
342 } else if (re > 0.L) {
343 result._M_re = _STLP_SQRTL(0.5L * (mag + re));
344 result._M_im = (im/result._M_re) * .5L;
346 result._M_im = _STLP_SQRTL(0.5L * (mag - re));
348 result._M_im = - result._M_im;
349 result._M_re = (im/result._M_im) * .5L;
357 _STLP_EXP_DECLSPEC _Tp _STLP_CALL abs_tp(const complex<_Tp>& val)
363 _STLP_EXP_DECLSPEC _Tp _STLP_CALL arg_tp(const complex<_Tp>& val)
369 _STLP_EXP_DECLSPEC complex<_Tp> _STLP_CALL polar_tp(const _Tp& __rho, const _Tp& __phi)
371 return polar_l(__rho, __phi);
375 void dummy_instantiate_func()
377 const complex<float> val;
381 polar_tp(fval, fval);
382 const complex<double> dval;
388 #ifndef _STLP_NO_LONG_DOUBLE
389 const complex<long double> lval;
400 //_STLP_EXP_DECLSPEC float _STLP_CALL abs_tp(const complex<float>& val);
405 #undef _STLP_TEMPLATE_NULL