D | VectorMath.cpp | 58 void vsmul(const float* sourceP, int sourceStride, const float* scale, float* destP, int destStride… in vsmul() argument 61 ::vsmul(sourceP, sourceStride, scale, destP, destStride, framesToProcess); in vsmul() 63 vDSP_vsmul(sourceP, sourceStride, scale, destP, destStride, framesToProcess); in vsmul() 103 void vsma(const float* sourceP, int sourceStride, const float* scale, float* destP, int destStride,… in vsma() argument 105 vDSP_vsma(sourceP, sourceStride, scale, destP, destStride, destP, destStride, framesToProcess); in vsma() 108 void vmaxmgv(const float* sourceP, int sourceStride, float* maxP, size_t framesToProcess) in vmaxmgv() argument 110 vDSP_maxmgv(sourceP, sourceStride, maxP, framesToProcess); in vmaxmgv() 113 void vsvesq(const float* sourceP, int sourceStride, float* sumP, size_t framesToProcess) in vsvesq() argument 115 vDSP_svesq(const_cast<float*>(sourceP), sourceStride, sumP, framesToProcess); in vsvesq() 118 void vclip(const float* sourceP, int sourceStride, const float* lowThresholdP, const float* highThr… in vclip() argument [all …]
|