123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161 |
- /*-
- * Copyright (c) 2014-2015 Texas Instruments Incorporated
- *
- * Copyright (c) 2001-2011 The FreeBSD Project.
- * 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
- #define _COMPLEX_H
- #ifdef __cplusplus
- # error "C99 complex in C++ mode is not supported."
- #endif
- #include <linkage.h>
- #define _Complex_I ((float _Complex) __I__)
- #define complex _Complex
- #if defined(__TI_LLVM__)
- /*****************************************************************************/
- /* Clang does not support _Imaginary, so define I as a _Complex type instead.*/
- /*****************************************************************************/
- # define I _Complex_I
- #elif defined(__EDG_VERSION__)
- # define _Imaginary_I ((float _Imaginary)__I__)
- # define imaginary _Imaginary
- # define I _Imaginary_I
- #endif
- _CODE_ACCESS double cabs (double complex);
- _CODE_ACCESS float cabsf (float complex);
- _CODE_ACCESS long double cabsl (long double complex);
- _CODE_ACCESS double complex cacos (double complex);
- _CODE_ACCESS float complex cacosf (float complex);
- _CODE_ACCESS long double complex cacosl (long double complex);
- _CODE_ACCESS double complex cacosh (double complex);
- _CODE_ACCESS float complex cacoshf (float complex);
- _CODE_ACCESS long double complex cacoshl (long double complex);
- _CODE_ACCESS double carg (double complex);
- _CODE_ACCESS float cargf (float complex);
- _CODE_ACCESS long double cargl (long double complex);
- _CODE_ACCESS double complex casin (double complex);
- _CODE_ACCESS float complex casinf (float complex);
- _CODE_ACCESS long double complex casinl (long double complex);
- _CODE_ACCESS double complex casinh (double complex);
- _CODE_ACCESS float complex casinhf (float complex);
- _CODE_ACCESS long double complex casinhl (long double complex);
- _CODE_ACCESS double complex catan (double complex);
- _CODE_ACCESS float complex catanf (float complex);
- _CODE_ACCESS long double complex catanl (long double complex);
- _CODE_ACCESS double complex catanh (double complex);
- _CODE_ACCESS float complex catanhf (float complex);
- _CODE_ACCESS long double complex catanhl (long double complex);
- _CODE_ACCESS double complex ccos (double complex);
- _CODE_ACCESS float complex ccosf (float complex);
- _CODE_ACCESS long double complex ccosl (long double complex);
- _CODE_ACCESS double complex ccosh (double complex);
- _CODE_ACCESS float complex ccoshf (float complex);
- _CODE_ACCESS long double complex ccoshl (long double complex);
- _CODE_ACCESS double complex cexp (double complex);
- _CODE_ACCESS float complex cexpf (float complex);
- _CODE_ACCESS long double complex cexpl (long double complex);
- _CODE_ACCESS double cimag (double complex);
- _CODE_ACCESS float cimagf (float complex);
- _CODE_ACCESS long double cimagl (long double complex);
- _IDECL double complex conj (double complex);
- _IDECL float complex conjf (float complex);
- _IDECL long double complex conjl (long double complex);
- _CODE_ACCESS double complex cproj (double complex);
- _CODE_ACCESS float complex cprojf (float complex);
- _CODE_ACCESS long double complex cprojl (long double complex);
- _IDECL double creal (double complex);
- _IDECL float crealf (float complex);
- _IDECL long double creall (long double complex);
- _CODE_ACCESS double complex csin (double complex);
- _CODE_ACCESS float complex csinf (float complex);
- _CODE_ACCESS long double complex csinl (long double complex);
- _CODE_ACCESS double complex csinh (double complex);
- _CODE_ACCESS float complex csinhf (float complex);
- _CODE_ACCESS long double complex csinhl (long double complex);
- _CODE_ACCESS double complex csqrt (double complex);
- _CODE_ACCESS float complex csqrtf (float complex);
- _CODE_ACCESS long double complex csqrtl (long double complex);
- _CODE_ACCESS double complex ctan (double complex);
- _CODE_ACCESS float complex ctanf (float complex);
- _CODE_ACCESS long double complex ctanl (long double complex);
- _CODE_ACCESS double complex ctanh (double complex);
- _CODE_ACCESS float complex ctanhf (float complex);
- _CODE_ACCESS long double complex ctanhl (long double complex);
- /*****************************************************************************/
- /* MISSING COMPLEX OPERATIONS */
- /* As of version 10.1, FreeBSD does not supply certain complex functions */
- /* (clog, cpow), so it is not strictly C99 compliant. We pick up these */
- /* functions from OpenBSD, as is the recommendation of the FreeBSD community.*/
- /*****************************************************************************/
- _CODE_ACCESS double complex clog (double complex);
- _CODE_ACCESS float complex clogf (float complex);
- _CODE_ACCESS long double complex clogl (long double complex);
- _CODE_ACCESS double complex cpow (double complex, double complex);
- _CODE_ACCESS float complex cpowf (float complex, float complex);
- _CODE_ACCESS long double complex cpowl (long double complex, long double complex);
- #ifdef _INLINE
- _IDEFN double creal(double complex z)
- {
- return z;
- }
- _IDEFN float crealf(float complex z)
- {
- return z;
- }
- _IDEFN long double creall(long double complex z)
- {
- return z;
- }
- _IDEFN double complex conj(double complex z)
- {
- return creal(z) - I * cimag(z);
- }
- _IDEFN float complex conjf(float complex z)
- {
- return crealf(z) - I * cimagf(z);
- }
- _IDEFN long double complex conjl(long double complex z)
- {
- return creall(z) - I * cimagl(z);
- }
- #endif
- #endif /* _COMPLEX_H */
|