MCPcopy Create free account
hub / github.com/LabSound/LabSound / vmul

Function vmul

src/internal/src/VectorMath.cpp:55–62  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

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 {

Callers 2

copyWithGainFromMethod · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected