| 145 | } |
| 146 | |
| 147 | static inline void |
| 148 | _inline_add( npy_complex64 a, npy_complex64 b, npy_complex64 &r ) |
| 149 | { |
| 150 | r.real = a.real + b.real; |
| 151 | r.imag = a.imag + b.imag; |
| 152 | } |
| 153 | |
| 154 | static inline void |
| 155 | _inline_add( npy_complex128 a, npy_complex128 b, npy_complex128 &r ) |
no outgoing calls
no test coverage detected
searching dependent graphs…