| 70 | } |
| 71 | |
| 72 | static inline FloatComplex |
| 73 | operator*(FloatComplex a, FloatComplex b) |
| 74 | { |
| 75 | return floatComplex( |
| 76 | CREAL(a) * CREAL(b) - CIMAG(a) * CIMAG(b), |
| 77 | CREAL(a) * CIMAG(b) + CREAL(b) * CIMAG(a)); |
| 78 | } |
| 79 | |
| 80 | static inline FloatComplex |
| 81 | operator*(FloatComplex a, cl_float b) |
nothing calls this directly
no test coverage detected