| 53 | } |
| 54 | |
| 55 | void vmul(const float * source1P, int sourceStride1, const float * source2P, int sourceStride2, float * destP, int destStride, int framesToProcess) |
| 56 | { |
| 57 | #if defined(__ppc__) || defined(__i386__) |
| 58 | ::vmul(source1P, sourceStride1, source2P, sourceStride2, destP, destStride, framesToProcess); |
| 59 | #else |
| 60 | vDSP_vmul(source1P, sourceStride1, source2P, sourceStride2, destP, destStride, framesToProcess); |
| 61 | #endif |
| 62 | } |
| 63 | |
| 64 | void zvmul(const float * real1P, const float * imag1P, const float * real2P, const float * imag2P, float * realDestP, float * imagDestP, int framesToProcess) |
| 65 | { |
no outgoing calls
no test coverage detected