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

Function vadd

src/internal/src/VectorMath.cpp:46–53  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

44 }
45
46 void vadd(const float * source1P, int sourceStride1, const float * source2P, int sourceStride2, float * destP, int destStride, int framesToProcess)
47 {
48#if defined(__ppc__) || defined(__i386__)
49 ::vadd(source1P, sourceStride1, source2P, sourceStride2, destP, destStride, framesToProcess);
50#else
51 vDSP_vadd(source1P, sourceStride1, source2P, sourceStride2, destP, destStride, framesToProcess);
52#endif
53 }
54
55 void vmul(const float * source1P, int sourceStride1, const float * source2P, int sourceStride2, float * destP, int destStride, int framesToProcess)
56 {

Callers 7

writeInputMethod · 0.85
sumFromMethod · 0.85
renderSampleMethod · 0.85
speakersCopyFromMethod · 0.85
processMethod · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected