HomeSort by relevance Sort by last modified time
    Searched defs:outputIndex (Results 1 - 23 of 23) sorted by null

  /external/webkit/Source/WebCore/bindings/js/
JSAudioNodeCustom.cpp 41 unsigned outputIndex = 0;
49 outputIndex = exec->argument(1).toInt32(exec);
55 bool success = audioNode->connect(destinationNode, outputIndex, inputIndex);
64 unsigned outputIndex = 0;
66 outputIndex = exec->argument(0).toInt32(exec);
69 audioNode->disconnect(outputIndex);
  /frameworks/base/services/audioflinger/
AudioResamplerCubic.cpp 61 size_t outputIndex = 0;
75 while (outputIndex < outputSampleCount) {
81 out[outputIndex++] += vl * interp(&left, x);
82 out[outputIndex++] += vr * interp(&right, x);
83 // out[outputIndex++] += vr * in[inputIndex*2];
126 size_t outputIndex = 0;
140 while (outputIndex < outputSampleCount) {
147 out[outputIndex++] += vl * sample;
148 out[outputIndex++] += vr * sample;
AudioResampler.cpp 61 size_t &outputIndex, int32_t* out, size_t &inputIndex, int32_t vl, int32_t vr,
64 size_t &outputIndex, int32_t* out, size_t &inputIndex, int32_t vl, int32_t vr,
189 size_t outputIndex = 0;
196 while (outputIndex < outputSampleCount) {
221 out[outputIndex++] += vl * Interp(mX0L, in[0], phaseFraction);
222 out[outputIndex++] += vr * Interp(mX0R, in[1], phaseFraction);
224 if (outputIndex == outputSampleCount)
238 AsmStereo16Loop(in, maxOutPt, maxInIdx, outputIndex, out, inputIndex, vl, vr,
243 while (outputIndex < outputSampleCount && inputIndex < mBuffer.frameCount) {
244 out[outputIndex++] += vl * Interp(in[inputIndex*2-2]
    [all...]
AudioResamplerSinc.cpp 198 size_t outputIndex = 0;
203 while (outputIndex < outputSampleCount) {
238 while (outputIndex < outputSampleCount) {
240 out[outputIndex++] += 2 * mulRL(1, l, vRL);
241 out[outputIndex++] += 2 * mulRL(0, r, vRL);
  /external/icu4c/layout/
ThaiShaping.cpp 146 LEUnicode errorChar, LEUnicode *outputBuffer, LEGlyphStorage &glyphStorage, le_int32 &outputIndex)
152 glyphStorage.setCharIndex(outputIndex, inputIndex, success);
153 outputBuffer[outputIndex++] = currChar;
157 glyphStorage.setCharIndex(outputIndex, inputIndex, success);
158 outputBuffer[outputIndex++] = currChar;
162 glyphStorage.setCharIndex(outputIndex, inputIndex, success);
163 outputBuffer[outputIndex++] = leftAboveVowel(currChar, glyphSet);
167 glyphStorage.setCharIndex(outputIndex, inputIndex, success);
168 outputBuffer[outputIndex++] = lowerRightTone(currChar, glyphSet);
172 glyphStorage.setCharIndex(outputIndex, inputIndex, success)
    [all...]
  /hardware/ti/omap3/omx/audio/src/openmax_il/g711_enc/src/
OMX_G711Encoder.c     [all...]
  /hardware/ti/omap3/omx/audio/src/openmax_il/g722_enc/src/
OMX_G722Encoder.c     [all...]
  /hardware/ti/omap3/omx/audio/src/openmax_il/g726_enc/src/
OMX_G726Encoder.c     [all...]
  /hardware/ti/omap3/omx/audio/src/openmax_il/g729_dec/src/
OMX_G729Decoder.c     [all...]
  /hardware/ti/omap3/omx/audio/src/openmax_il/g729_enc/src/
OMX_G729Encoder.c     [all...]
  /hardware/ti/omap3/omx/audio/src/openmax_il/nbamr_dec/src/
OMX_AmrDecoder.c     [all...]
  /hardware/ti/omap3/omx/audio/src/openmax_il/nbamr_enc/src/
OMX_AmrEncoder.c     [all...]
  /hardware/ti/omap3/omx/audio/src/openmax_il/wbamr_dec/src/
OMX_WbAmrDecoder.c     [all...]
  /hardware/ti/omap3/omx/audio/src/openmax_il/wbamr_enc/src/
OMX_WbAmrEncoder.c     [all...]
  /hardware/ti/omap3/omx/audio/src/openmax_il/wma_dec/src/
OMX_WmaDecoder.c     [all...]
  /hardware/ti/omap3/omx/audio/src/openmax_il/aac_dec/src/
OMX_AacDecoder.c     [all...]
  /hardware/ti/omap3/omx/audio/src/openmax_il/g711_dec/src/
OMX_G711Decoder.c     [all...]
  /hardware/ti/omap3/omx/audio/src/openmax_il/g722_dec/src/
OMX_G722Decoder.c     [all...]
  /hardware/ti/omap3/omx/audio/src/openmax_il/g726_dec/src/
OMX_G726Decoder.c     [all...]
  /hardware/ti/omap3/omx/audio/src/openmax_il/mp3_dec/src/
OMX_Mp3Decoder.c     [all...]
  /packages/inputmethods/LatinIME/native/src/
correction.cpp 182 const int outputIndex = mTerminalOutputIndex;
184 *wordLength = outputIndex + 1;
185 if (mProximityInfo->sameAsTyped(mWord, outputIndex + 1) || outputIndex < MIN_SUGGEST_DEPTH) {
191 inputIndex, outputIndex, freq, mEditDistanceTable, this);
194 bool Correction::initProcessState(const int outputIndex) {
195 if (mCorrectionStates[outputIndex].mChildCount <= 0) {
198 mOutputIndex = outputIndex;
199 --(mCorrectionStates[outputIndex].mChildCount);
200 mInputIndex = mCorrectionStates[outputIndex].mInputIndex
    [all...]
unigram_dictionary.cpp 327 int outputIndex = 0;
332 while (outputIndex >= 0) {
333 if (mCorrection->initProcessState(outputIndex)) {
334 int siblingPos = mCorrection->getTreeSiblingPos(outputIndex);
340 mCorrection->setTreeSiblingPos(outputIndex, siblingPos);
344 outputIndex = mCorrection->goDownTree(outputIndex, childCount, firstChildPos);
348 outputIndex = mCorrection->getTreeParentIndex(outputIndex);
    [all...]
  /system/media/mca/filterpacks/videoproc/java/
BackDropperFilter.java     [all...]

Completed in 427 milliseconds