HomeSort by relevance Sort by last modified time
    Searched full:destp (Results 1 - 16 of 16) sorted by null

  /external/chromium_org/third_party/WebKit/Source/core/platform/audio/
VectorMath.cpp 57 void vsmul(const float* sourceP, int sourceStride, const float* scale, float* destP, int destStride, size_t framesToProcess)
60 ::vsmul(sourceP, sourceStride, scale, destP, destStride, framesToProcess);
62 vDSP_vsmul(sourceP, sourceStride, scale, destP, destStride, framesToProcess);
66 void vadd(const float* source1P, int sourceStride1, const float* source2P, int sourceStride2, float* destP, int destStride, size_t framesToProcess)
69 ::vadd(source1P, sourceStride1, source2P, sourceStride2, destP, destStride, framesToProcess);
71 vDSP_vadd(source1P, sourceStride1, source2P, sourceStride2, destP, destStride, framesToProcess);
75 void vmul(const float* source1P, int sourceStride1, const float* source2P, int sourceStride2, float* destP, int destStride, size_t framesToProcess)
78 ::vmul(source1P, sourceStride1, source2P, sourceStride2, destP, destStride, framesToProcess);
80 vDSP_vmul(source1P, sourceStride1, source2P, sourceStride2, destP, destStride, framesToProcess);
102 void vsma(const float* sourceP, int sourceStride, const float* scale, float* destP, int destStride, size_t framesToProcess
    [all...]
VectorMath.h 35 void vsma(const float* sourceP, int sourceStride, const float* scale, float* destP, int destStride, size_t framesToProcess);
37 void vsmul(const float* sourceP, int sourceStride, const float* scale, float* destP, int destStride, size_t framesToProcess);
38 void vadd(const float* source1P, int sourceStride1, const float* source2P, int sourceStride2, float* destP, int destStride, size_t framesToProcess);
47 void vmul(const float* source1P, int sourceStride1, const float* source2P, int sourceStride2, float* destP, int destStride, size_t framesToProcess);
53 void vclip(const float* sourceP, int sourceStride, const float* lowThresholdP, const float* highThresholdP, float* destP, int destStride, size_t framesToProcess);
FFTConvolver.cpp 50 void FFTConvolver::process(FFTFrame* fftKernel, const float* sourceP, float* destP, size_t framesToProcess)
64 for (size_t i = 0; i < numberOfDivisions; ++i, sourceP += divisionSize, destP += divisionSize) {
80 bool isCopyGood2 = destP && outputP && m_readWriteIndex + divisionSize <= m_outputBuffer.size();
85 memcpy(destP, outputP + m_readWriteIndex, sizeof(float) * divisionSize);
UpSampler.cpp 77 void UpSampler::process(const float* sourceP, float* destP, size_t sourceFramesToProcess)
105 // Copy even sample-frames 0,2,4,6... (delayed by the linear phase delay) directly into destP.
107 destP[i * 2] = *((inputP - halfSize) + i);
114 destP[i * 2 + 1] = oddSamplesP[i];
Biquad.h 52 void process(const float* sourceP, float* destP, size_t framesToProcess);
96 void processFast(const float* sourceP, float* destP, size_t framesToProcess);
97 void processSliceFast(double* sourceP, double* destP, double* coefficientsP, size_t framesToProcess);
DirectConvolver.cpp 54 void DirectConvolver::process(AudioFloatArray* convolutionKernel, const float* sourceP, float* destP, size_t framesToProcess)
69 bool isCopyGood = kernelP && sourceP && destP && m_buffer.data();
84 vadd(outputBuffer, 1, overlayBuffer, 1, destP, 1, framesToProcess);
94 conv(inputP - kernelSize + 1, 1, kernelP + kernelSize - 1, -1, destP, 1, framesToProcess, kernelSize);
96 vDSP_conv(inputP - kernelSize + 1, 1, kernelP + kernelSize - 1, -1, destP, 1, framesToProcess, kernelSize);
366 destP[i++] = sum;
DownSampler.h 45 // The destination buffer |destP| is of size sourceFramesToProcess / 2.
46 void process(const float* sourceP, float* destP, size_t sourceFramesToProcess);
UpSampler.h 45 // The destination buffer |destP| is of size sourceFramesToProcess * 2.
46 void process(const float* sourceP, float* destP, size_t sourceFramesToProcess);
Biquad.cpp 75 void Biquad::process(const float* sourceP, float* destP, size_t framesToProcess)
79 processFast(sourceP, destP, framesToProcess);
82 ippsIIR64f_32f(sourceP, destP, static_cast<int>(framesToProcess), m_biquadState);
104 *destP++ = y;
132 void Biquad::processFast(const float* sourceP, float* destP, size_t framesToProcess)
162 *destP++ = static_cast<float>(output2P[i]);
168 void Biquad::processSliceFast(double* sourceP, double* destP, double* coefficientsP, size_t framesToProcess)
171 vDSP_deq22D(sourceP, 1, coefficientsP, destP, 1, framesToProcess);
173 // Save history. Note that sourceP and destP reference m_inputBuffer and m_outputBuffer respectively.
178 destP[0] = destP[framesToProcess - 2 + 2]
    [all...]
DirectConvolver.h 44 void process(AudioFloatArray* convolutionKernel, const float* sourceP, float* destP, size_t framesToProcess);
DownSampler.cpp 85 void DownSampler::process(const float* sourceP, float* destP, size_t sourceFramesToProcess)
123 m_convolver.process(&m_reducedKernel, oddSamplesP, destP, destFramesToProcess);
131 destP[i] += 0.5 * *((inputP - halfSize) + i * 2);
FFTConvolver.h 49 void process(FFTFrame* fftKernel, const float* sourceP, float* destP, size_t framesToProcess);
  /external/chromium_org/third_party/WebKit/Source/modules/webaudio/
OscillatorNode.cpp 262 float* destP = outputBus->channel(0)->mutableData();
292 destP += quantumFrameOffset;
323 *destP++ = sample;
  /external/compiler-rt/BlocksRuntime/
runtime.c 199 void **destp = (void **)dest; local
202 _Block_assign_default(*srcp, destp);
203 destp++;
369 struct Block_byref **destp = (struct Block_byref **)dest; local
372 //printf("_Block_byref_assign_copy called, byref destp %p, src %p, flags %x\n", destp, src, flags);
410 _Block_assign(src->forwarding, (void **)destp);
  /external/oprofile/pp/
oparchive.cpp 205 cverb << vdebug << " destp " << sample_archive_file << endl;
  /external/chromium_org/third_party/launchpad_translations/
chromium_strings_ku.xtb 16 <translation id="263863604136125912">Chromiumê bide destpêkirin</translation>
34 <translation id="4124681358536363708">Xuya ye ku peldanka sazkirinê ya Chromiumê tê bikaranîn. Tika ye kompîtera xwe ji nû ve bide destpêkirin û dîsa biceribîne.</translation>

Completed in 958 milliseconds