2001-06-13 15:16:30 +00:00
|
|
|
/*-
|
2017-11-25 17:09:43 +00:00
|
|
|
* SPDX-License-Identifier: BSD-2-Clause-FreeBSD
|
|
|
|
*
|
2011-10-17 05:41:03 +00:00
|
|
|
* Copyright (c) 2001-2011 The FreeBSD Project.
|
2001-06-13 15:16:30 +00:00
|
|
|
* All rights reserved.
|
|
|
|
*
|
|
|
|
* Redistribution and use in source and binary forms, with or without
|
|
|
|
* modification, are permitted provided that the following conditions
|
|
|
|
* are met:
|
|
|
|
* 1. Redistributions of source code must retain the above copyright
|
|
|
|
* notice, this list of conditions and the following disclaimer.
|
|
|
|
* 2. Redistributions in binary form must reproduce the above copyright
|
|
|
|
* notice, this list of conditions and the following disclaimer in the
|
|
|
|
* documentation and/or other materials provided with the distribution.
|
|
|
|
*
|
|
|
|
* THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND
|
|
|
|
* ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
|
|
|
|
* IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
|
|
|
|
* ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE
|
|
|
|
* FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
|
|
|
|
* DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
|
|
|
|
* OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
|
|
|
|
* HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
|
|
|
|
* LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
|
|
|
|
* OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
|
|
|
|
* SUCH DAMAGE.
|
|
|
|
*
|
|
|
|
* $FreeBSD$
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef _COMPLEX_H
|
2004-08-14 17:55:15 +00:00
|
|
|
#define _COMPLEX_H
|
2001-06-13 15:16:30 +00:00
|
|
|
|
2012-01-05 12:05:48 +00:00
|
|
|
#include <sys/cdefs.h>
|
|
|
|
|
2001-06-13 15:16:30 +00:00
|
|
|
#ifdef __GNUC__
|
2004-08-14 18:03:21 +00:00
|
|
|
#if __STDC_VERSION__ < 199901
|
2004-08-14 17:55:15 +00:00
|
|
|
#define _Complex __complex__
|
2004-08-14 18:03:21 +00:00
|
|
|
#endif
|
2012-01-05 12:05:48 +00:00
|
|
|
#define _Complex_I ((float _Complex)1.0i)
|
2012-01-17 20:22:10 +00:00
|
|
|
#endif
|
|
|
|
|
|
|
|
#ifdef __generic
|
2012-01-05 12:05:48 +00:00
|
|
|
_Static_assert(__generic(_Complex_I, float _Complex, 1, 0),
|
|
|
|
"_Complex_I must be of type float _Complex");
|
2001-06-13 15:16:30 +00:00
|
|
|
#endif
|
|
|
|
|
2004-08-14 17:55:15 +00:00
|
|
|
#define complex _Complex
|
|
|
|
#define I _Complex_I
|
2001-06-13 15:16:30 +00:00
|
|
|
|
2013-05-25 18:55:55 +00:00
|
|
|
#if __ISO_C_VISIBLE >= 2011
|
|
|
|
#ifdef __clang__
|
|
|
|
#define CMPLX(x, y) ((double complex){ x, y })
|
|
|
|
#define CMPLXF(x, y) ((float complex){ x, y })
|
|
|
|
#define CMPLXL(x, y) ((long double complex){ x, y })
|
|
|
|
#elif __GNUC_PREREQ__(4, 7)
|
|
|
|
#define CMPLX(x, y) __builtin_complex((double)(x), (double)(y))
|
|
|
|
#define CMPLXF(x, y) __builtin_complex((float)(x), (float)(y))
|
|
|
|
#define CMPLXL(x, y) __builtin_complex((long double)(x), (long double)(y))
|
|
|
|
#endif
|
|
|
|
#endif /* __ISO_C_VISIBLE >= 2011 */
|
|
|
|
|
2001-06-13 15:16:30 +00:00
|
|
|
__BEGIN_DECLS
|
|
|
|
|
2004-05-30 09:21:56 +00:00
|
|
|
double cabs(double complex);
|
|
|
|
float cabsf(float complex);
|
2008-03-30 20:03:46 +00:00
|
|
|
long double cabsl(long double complex);
|
2013-05-30 04:49:26 +00:00
|
|
|
double complex cacos(double complex);
|
|
|
|
float complex cacosf(float complex);
|
|
|
|
double complex cacosh(double complex);
|
|
|
|
float complex cacoshf(float complex);
|
2017-02-18 21:08:09 +00:00
|
|
|
long double complex
|
|
|
|
cacoshl(long double complex);
|
|
|
|
long double complex
|
|
|
|
cacosl(long double complex);
|
2007-12-12 23:43:51 +00:00
|
|
|
double carg(double complex);
|
|
|
|
float cargf(float complex);
|
2008-08-07 14:40:52 +00:00
|
|
|
long double cargl(long double complex);
|
2013-05-30 04:49:26 +00:00
|
|
|
double complex casin(double complex);
|
|
|
|
float complex casinf(float complex);
|
|
|
|
double complex casinh(double complex);
|
|
|
|
float complex casinhf(float complex);
|
2017-02-18 21:08:09 +00:00
|
|
|
long double complex
|
|
|
|
casinhl(long double complex);
|
|
|
|
long double complex
|
|
|
|
casinl(long double complex);
|
2013-05-30 04:49:26 +00:00
|
|
|
double complex catan(double complex);
|
|
|
|
float complex catanf(float complex);
|
|
|
|
double complex catanh(double complex);
|
|
|
|
float complex catanhf(float complex);
|
2017-02-18 21:08:09 +00:00
|
|
|
long double complex
|
|
|
|
catanhl(long double complex);
|
|
|
|
long double complex
|
|
|
|
catanl(long double complex);
|
2011-10-17 05:41:03 +00:00
|
|
|
double complex ccos(double complex);
|
|
|
|
float complex ccosf(float complex);
|
|
|
|
double complex ccosh(double complex);
|
|
|
|
float complex ccoshf(float complex);
|
2011-03-07 16:05:45 +00:00
|
|
|
double complex cexp(double complex);
|
|
|
|
float complex cexpf(float complex);
|
2021-11-05 02:04:01 +00:00
|
|
|
long double complex
|
|
|
|
cexpl(long double complex);
|
2008-08-07 14:40:52 +00:00
|
|
|
double cimag(double complex) __pure2;
|
|
|
|
float cimagf(float complex) __pure2;
|
|
|
|
long double cimagl(long double complex) __pure2;
|
2018-05-13 09:54:34 +00:00
|
|
|
double complex clog(double complex);
|
|
|
|
float complex clogf(float complex);
|
|
|
|
long double complex
|
|
|
|
clogl(long double complex);
|
2008-08-07 14:40:52 +00:00
|
|
|
double complex conj(double complex) __pure2;
|
|
|
|
float complex conjf(float complex) __pure2;
|
2004-05-30 09:21:56 +00:00
|
|
|
long double complex
|
2008-08-07 14:40:52 +00:00
|
|
|
conjl(long double complex) __pure2;
|
2018-07-15 00:23:10 +00:00
|
|
|
float complex cpowf(float complex, float complex);
|
|
|
|
double complex cpow(double complex, double complex);
|
|
|
|
long double complex
|
|
|
|
cpowl(long double complex, long double complex);
|
2008-08-07 15:07:48 +00:00
|
|
|
float complex cprojf(float complex) __pure2;
|
|
|
|
double complex cproj(double complex) __pure2;
|
|
|
|
long double complex
|
|
|
|
cprojl(long double complex) __pure2;
|
2008-08-07 14:40:52 +00:00
|
|
|
double creal(double complex) __pure2;
|
|
|
|
float crealf(float complex) __pure2;
|
|
|
|
long double creall(long double complex) __pure2;
|
2011-10-17 05:41:03 +00:00
|
|
|
double complex csin(double complex);
|
|
|
|
float complex csinf(float complex);
|
|
|
|
double complex csinh(double complex);
|
|
|
|
float complex csinhf(float complex);
|
2007-12-15 08:38:44 +00:00
|
|
|
double complex csqrt(double complex);
|
|
|
|
float complex csqrtf(float complex);
|
2008-03-30 20:07:15 +00:00
|
|
|
long double complex
|
|
|
|
csqrtl(long double complex);
|
2011-10-17 05:41:03 +00:00
|
|
|
double complex ctan(double complex);
|
|
|
|
float complex ctanf(float complex);
|
|
|
|
double complex ctanh(double complex);
|
|
|
|
float complex ctanhf(float complex);
|
2001-06-13 15:16:30 +00:00
|
|
|
|
|
|
|
__END_DECLS
|
|
|
|
|
|
|
|
#endif /* _COMPLEX_H */
|