HomeSort by relevance Sort by last modified time
    Searched refs:sourceStride (Results 1 - 3 of 3) sorted by null

  /external/chromium_org/third_party/WebKit/Source/platform/audio/
VectorMath.h 36 PLATFORM_EXPORT void vsma(const float* sourceP, int sourceStride, const float* scale, float* destP, int destStride, size_t framesToProcess);
38 PLATFORM_EXPORT void vsmul(const float* sourceP, int sourceStride, const float* scale, float* destP, int destStride, size_t framesToProcess);
42 PLATFORM_EXPORT void vmaxmgv(const float* sourceP, int sourceStride, float* maxP, size_t framesToProcess);
45 PLATFORM_EXPORT void vsvesq(const float* sourceP, int sourceStride, float* sumP, size_t framesToProcess);
54 PLATFORM_EXPORT void vclip(const float* sourceP, int sourceStride, const float* lowThresholdP, const float* highThresholdP, float* destP, int destStride, size_t framesToProcess);
VectorMath.cpp 58 void vsmul(const float* sourceP, int sourceStride, const float* scale, float* destP, int destStride, size_t framesToProcess)
61 ::vsmul(sourceP, sourceStride, scale, destP, destStride, framesToProcess);
63 vDSP_vsmul(sourceP, sourceStride, scale, destP, destStride, framesToProcess);
103 void vsma(const float* sourceP, int sourceStride, const float* scale, float* destP, int destStride, size_t framesToProcess)
105 vDSP_vsma(sourceP, sourceStride, scale, destP, destStride, destP, destStride, framesToProcess);
108 void vmaxmgv(const float* sourceP, int sourceStride, float* maxP, size_t framesToProcess)
110 vDSP_maxmgv(sourceP, sourceStride, maxP, framesToProcess);
113 void vsvesq(const float* sourceP, int sourceStride, float* sumP, size_t framesToProcess)
115 vDSP_svesq(const_cast<float*>(sourceP), sourceStride, sumP, framesToProcess);
118 void vclip(const float* sourceP, int sourceStride, const float* lowThresholdP, const float* highThresholdP, float* destP, int destStride, size_t fra (…)
    [all...]
  /frameworks/av/libvideoeditor/vss/src/
M4xVSS_internal.c     [all...]

Completed in 129 milliseconds