complex.h 7.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161
  1. /*-
  2. * Copyright (c) 2014-2015 Texas Instruments Incorporated
  3. *
  4. * Copyright (c) 2001-2011 The FreeBSD Project.
  5. * All rights reserved.
  6. *
  7. * Redistribution and use in source and binary forms, with or without
  8. * modification, are permitted provided that the following conditions
  9. * are met:
  10. * 1. Redistributions of source code must retain the above copyright
  11. * notice, this list of conditions and the following disclaimer.
  12. * 2. Redistributions in binary form must reproduce the above copyright
  13. * notice, this list of conditions and the following disclaimer in the
  14. * documentation and/or other materials provided with the distribution.
  15. *
  16. * THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND
  17. * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
  18. * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
  19. * ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE
  20. * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
  21. * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
  22. * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
  23. * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
  24. * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
  25. * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
  26. * SUCH DAMAGE.
  27. *
  28. * $FreeBSD$
  29. */
  30. #ifndef _COMPLEX_H
  31. #define _COMPLEX_H
  32. #ifdef __cplusplus
  33. # error "C99 complex in C++ mode is not supported."
  34. #endif
  35. #include <linkage.h>
  36. #define _Complex_I ((float _Complex) __I__)
  37. #define complex _Complex
  38. #if defined(__TI_LLVM__)
  39. /*****************************************************************************/
  40. /* Clang does not support _Imaginary, so define I as a _Complex type instead.*/
  41. /*****************************************************************************/
  42. # define I _Complex_I
  43. #elif defined(__EDG_VERSION__)
  44. # define _Imaginary_I ((float _Imaginary)__I__)
  45. # define imaginary _Imaginary
  46. # define I _Imaginary_I
  47. #endif
  48. _CODE_ACCESS double cabs (double complex);
  49. _CODE_ACCESS float cabsf (float complex);
  50. _CODE_ACCESS long double cabsl (long double complex);
  51. _CODE_ACCESS double complex cacos (double complex);
  52. _CODE_ACCESS float complex cacosf (float complex);
  53. _CODE_ACCESS long double complex cacosl (long double complex);
  54. _CODE_ACCESS double complex cacosh (double complex);
  55. _CODE_ACCESS float complex cacoshf (float complex);
  56. _CODE_ACCESS long double complex cacoshl (long double complex);
  57. _CODE_ACCESS double carg (double complex);
  58. _CODE_ACCESS float cargf (float complex);
  59. _CODE_ACCESS long double cargl (long double complex);
  60. _CODE_ACCESS double complex casin (double complex);
  61. _CODE_ACCESS float complex casinf (float complex);
  62. _CODE_ACCESS long double complex casinl (long double complex);
  63. _CODE_ACCESS double complex casinh (double complex);
  64. _CODE_ACCESS float complex casinhf (float complex);
  65. _CODE_ACCESS long double complex casinhl (long double complex);
  66. _CODE_ACCESS double complex catan (double complex);
  67. _CODE_ACCESS float complex catanf (float complex);
  68. _CODE_ACCESS long double complex catanl (long double complex);
  69. _CODE_ACCESS double complex catanh (double complex);
  70. _CODE_ACCESS float complex catanhf (float complex);
  71. _CODE_ACCESS long double complex catanhl (long double complex);
  72. _CODE_ACCESS double complex ccos (double complex);
  73. _CODE_ACCESS float complex ccosf (float complex);
  74. _CODE_ACCESS long double complex ccosl (long double complex);
  75. _CODE_ACCESS double complex ccosh (double complex);
  76. _CODE_ACCESS float complex ccoshf (float complex);
  77. _CODE_ACCESS long double complex ccoshl (long double complex);
  78. _CODE_ACCESS double complex cexp (double complex);
  79. _CODE_ACCESS float complex cexpf (float complex);
  80. _CODE_ACCESS long double complex cexpl (long double complex);
  81. _CODE_ACCESS double cimag (double complex);
  82. _CODE_ACCESS float cimagf (float complex);
  83. _CODE_ACCESS long double cimagl (long double complex);
  84. _IDECL double complex conj (double complex);
  85. _IDECL float complex conjf (float complex);
  86. _IDECL long double complex conjl (long double complex);
  87. _CODE_ACCESS double complex cproj (double complex);
  88. _CODE_ACCESS float complex cprojf (float complex);
  89. _CODE_ACCESS long double complex cprojl (long double complex);
  90. _IDECL double creal (double complex);
  91. _IDECL float crealf (float complex);
  92. _IDECL long double creall (long double complex);
  93. _CODE_ACCESS double complex csin (double complex);
  94. _CODE_ACCESS float complex csinf (float complex);
  95. _CODE_ACCESS long double complex csinl (long double complex);
  96. _CODE_ACCESS double complex csinh (double complex);
  97. _CODE_ACCESS float complex csinhf (float complex);
  98. _CODE_ACCESS long double complex csinhl (long double complex);
  99. _CODE_ACCESS double complex csqrt (double complex);
  100. _CODE_ACCESS float complex csqrtf (float complex);
  101. _CODE_ACCESS long double complex csqrtl (long double complex);
  102. _CODE_ACCESS double complex ctan (double complex);
  103. _CODE_ACCESS float complex ctanf (float complex);
  104. _CODE_ACCESS long double complex ctanl (long double complex);
  105. _CODE_ACCESS double complex ctanh (double complex);
  106. _CODE_ACCESS float complex ctanhf (float complex);
  107. _CODE_ACCESS long double complex ctanhl (long double complex);
  108. /*****************************************************************************/
  109. /* MISSING COMPLEX OPERATIONS */
  110. /* As of version 10.1, FreeBSD does not supply certain complex functions */
  111. /* (clog, cpow), so it is not strictly C99 compliant. We pick up these */
  112. /* functions from OpenBSD, as is the recommendation of the FreeBSD community.*/
  113. /*****************************************************************************/
  114. _CODE_ACCESS double complex clog (double complex);
  115. _CODE_ACCESS float complex clogf (float complex);
  116. _CODE_ACCESS long double complex clogl (long double complex);
  117. _CODE_ACCESS double complex cpow (double complex, double complex);
  118. _CODE_ACCESS float complex cpowf (float complex, float complex);
  119. _CODE_ACCESS long double complex cpowl (long double complex, long double complex);
  120. #ifdef _INLINE
  121. _IDEFN double creal(double complex z)
  122. {
  123. return z;
  124. }
  125. _IDEFN float crealf(float complex z)
  126. {
  127. return z;
  128. }
  129. _IDEFN long double creall(long double complex z)
  130. {
  131. return z;
  132. }
  133. _IDEFN double complex conj(double complex z)
  134. {
  135. return creal(z) - I * cimag(z);
  136. }
  137. _IDEFN float complex conjf(float complex z)
  138. {
  139. return crealf(z) - I * cimagf(z);
  140. }
  141. _IDEFN long double complex conjl(long double complex z)
  142. {
  143. return creall(z) - I * cimagl(z);
  144. }
  145. #endif
  146. #endif /* _COMPLEX_H */