HomeSort by relevance Sort by last modified time
    Searched refs:outputIndex (Results 1 - 25 of 28) sorted by null

1 2

  /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...]
ThaiShaping.h 83 LEUnicode errorChar, LEUnicode *outputBuffer, LEGlyphStorage &glyphStorage, le_int32 &outputIndex);
86 le_uint8 &charClass, LEUnicode *output, LEGlyphStorage &glyphStorage, le_int32 &outputIndex);
  /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);
  /libcore/luni/src/main/java/javax/crypto/
CipherInputStream.java 43 private int outputIndex; // index of the first byte to return from outputBuffer
88 return (outputIndex == outputLength) ? -1 : outputBuffer[outputIndex++] & 0xFF;
90 if (outputIndex < outputLength) {
91 return outputBuffer[outputIndex++] & 0xFF;
93 outputIndex = 0;
  /frameworks/av/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];
99 calculateOutputPTS(outputIndex / 2));
127 size_t outputIndex = 0;
141 while (outputIndex < outputSampleCount) {
148 out[outputIndex++] += vl * sample;
149 out[outputIndex++] += vr * sample
    [all...]
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,
310 size_t outputIndex = 0;
317 while (outputIndex < outputSampleCount) {
323 calculateOutputPTS(outputIndex / 2));
343 out[outputIndex++] += vl * Interp(mX0L, in[0], phaseFraction);
344 out[outputIndex++] += vr * Interp(mX0R, in[1], phaseFraction);
346 if (outputIndex == outputSampleCount)
360 AsmStereo16Loop(in, maxOutPt, maxInIdx, outputIndex, out, inputIndex, vl, vr,
365 while (outputIndex < outputSampleCount && inputIndex < mBuffer.frameCount)
    [all...]
AudioResamplerSinc.cpp 287 size_t outputIndex = 0;
291 while (outputIndex < outputSampleCount) {
296 calculateOutputPTS(outputIndex / 2));
327 while (outputIndex < outputSampleCount) {
329 out[outputIndex++] += 2 * mulRL(1, l, vRL);
330 out[outputIndex++] += 2 * mulRL(0, r, vRL);
  /external/webkit/Source/WebCore/webaudio/
AudioNode.cpp 111 bool AudioNode::connect(AudioNode* destination, unsigned outputIndex, unsigned inputIndex)
117 if (outputIndex >= numberOfOutputs())
122 AudioNodeOutput* output = this->output(outputIndex);
138 bool AudioNode::disconnect(unsigned outputIndex)
143 return connect(0, outputIndex);
AudioNode.h 113 bool connect(AudioNode* destination, unsigned outputIndex = 0, unsigned inputIndex = 0);
114 bool disconnect(unsigned outputIndex = 0);
  /packages/inputmethods/LatinIME/native/jni/src/
correction.cpp 181 const int outputIndex = mTerminalOutputIndex;
183 *wordLength = outputIndex + 1;
186 inputIndex, outputIndex, probability, mEditDistanceTable, this, inputSize);
190 bool Correction::initProcessState(const int outputIndex) {
191 if (mCorrectionStates[outputIndex].mChildCount <= 0) {
194 mOutputIndex = outputIndex;
195 --(mCorrectionStates[outputIndex].mChildCount);
196 mInputIndex = mCorrectionStates[outputIndex].mInputIndex;
197 mNeedsToTraverseAllNodes = mCorrectionStates[outputIndex].mNeedsToTraverseAllNodes;
199 mEquivalentCharCount = mCorrectionStates[outputIndex].mEquivalentCharCount
    [all...]
unigram_dictionary.cpp 350 int outputIndex = 0;
355 while (outputIndex >= 0) {
356 if (correction->initProcessState(outputIndex)) {
357 int siblingPos = correction->getTreeSiblingPos(outputIndex);
364 correction->setTreeSiblingPos(outputIndex, siblingPos);
368 outputIndex = correction->goDownTree(outputIndex, childCount, firstChildPos);
372 outputIndex = correction->getTreeParentIndex(outputIndex);
    [all...]
  /frameworks/base/media/mca/filterpacks/java/android/filterpacks/videoproc/
BackDropperFilter.java     [all...]
  /hardware/ti/omap3/omx/audio/src/openmax_il/g729_dec/src/
OMX_G729Decoder.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/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/mp3_dec/src/
OMX_Mp3Decoder.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/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/g711_dec/src/
OMX_G711Decoder.c     [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...]

Completed in 2079 milliseconds

1 2