HomeSort by relevance Sort by last modified time
    Searched defs:inputIndex (Results 1 - 25 of 39) sorted by null

1 2

  /frameworks/av/services/audioflinger/
AudioResamplerCubic.cpp 59 size_t inputIndex = mInputIndex;
85 // out[outputIndex++] += vr * in[inputIndex*2];
95 inputIndex++;
96 if (inputIndex == mBuffer.frameCount) {
97 inputIndex = 0;
110 advance(&left, in[inputIndex*2]);
111 advance(&right, in[inputIndex*2+1]);
116 // ALOGW("Done: index=%d, fraction=%u", inputIndex, phaseFraction);
117 mInputIndex = inputIndex;
128 size_t inputIndex = mInputIndex
    [all...]
AudioResamplerDyn.cpp 127 const TI* const in, const size_t inputIndex)
131 head[i] = in[inputIndex*CHANNELS + i];
139 const TI* const in, const size_t inputIndex)
148 readAgain<CHANNELS>(impulse, halfNumCoefs, in, inputIndex);
496 size_t inputIndex = 0;
523 // check inputIndex overflow
524 ALOG_ASSERT(inputIndex <= mBuffer.frameCount, "inputIndex%d > frameCount%d",
525 inputIndex, mBuffer.frameCount);
539 reinterpret_cast<TI*>(mBuffer.raw), inputIndex);
    [all...]
AudioResamplerSinc.cpp 293 size_t inputIndex = mInputIndex;
312 read<CHANNELS>(impulse, phaseFraction, mBuffer.i16, inputIndex);
315 read<CHANNELS>(impulse, phaseFraction, mBuffer.i16, inputIndex);
316 inputIndex++;
317 if (inputIndex >= mBuffer.frameCount) {
318 inputIndex -= mBuffer.frameCount;
321 read<CHANNELS>(impulse, phaseFraction, mBuffer.i16, inputIndex);
331 head[i] = in[inputIndex*CHANNELS + i];
342 inputIndex++;
343 if (inputIndex >= frameCount)
    [all...]
  /external/skia/src/utils/
SkSHA1.cpp 37 unsigned int inputIndex;
42 inputIndex = bufferAvailable;
44 inputIndex = 0;
47 for (; inputIndex + 63 < inputLength; inputIndex += 64) {
48 transform(this->state, &input[inputIndex]);
53 inputIndex = 0;
56 memcpy(&this->buffer[bufferIndex], &input[inputIndex], inputLength - inputIndex);
SkMD5.cpp 39 unsigned int inputIndex;
44 inputIndex = bufferAvailable;
46 inputIndex = 0;
49 for (; inputIndex + 63 < inputLength; inputIndex += 64) {
50 transform(this->state, &input[inputIndex]);
55 inputIndex = 0;
58 memcpy(&this->buffer[bufferIndex], &input[inputIndex], inputLength - inputIndex);
  /external/icu/icu4c/source/layout/
ThaiShaping.cpp 145 le_uint8 ThaiShaping::doTransition (StateTransition transition, LEUnicode currChar, le_int32 inputIndex, le_uint8 glyphSet,
152 glyphStorage.setCharIndex(outputIndex, inputIndex, success);
157 glyphStorage.setCharIndex(outputIndex, inputIndex, success);
162 glyphStorage.setCharIndex(outputIndex, inputIndex, success);
167 glyphStorage.setCharIndex(outputIndex, inputIndex, success);
172 glyphStorage.setCharIndex(outputIndex, inputIndex, success);
177 glyphStorage.setCharIndex(outputIndex, inputIndex, success);
189 glyphStorage.setCharIndex(outputIndex, inputIndex, success);
194 glyphStorage.setCharIndex(outputIndex, inputIndex, success);
200 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...]
  /packages/inputmethods/LatinIME/native/jni/src/suggest/policyimpl/typing/
typing_weighting.h 185 const int inputIndex = dicNode->getInputIndex(0);
187 ASSERT(inputIndex < inputSize);
189 return ScoringParams::TERMINAL_INSERTION_COST * (inputSize - inputIndex);
206 const int inputIndex = dicNode->getInputIndex(0);
208 ->getPointToKeyLength(inputIndex, KEYCODE_SPACE);
  /external/icu/icu4c/source/i18n/
uspoof.cpp 697 int32_t inputIndex = 0;
700 for (inputIndex=0; inputIndex < normalizedLen; ) {
701 UChar32 c = nfdId.char32At(inputIndex);
702 inputIndex += U16_LENGTH(c);
  /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...]
  /frameworks/av/media/libstagefright/
StagefrightMetadataRetriever.cpp 234 size_t inputIndex = -1;
240 err = decoder->dequeueInputBuffer(&inputIndex, kBufferTimeOutUs);
248 codecBuffer = inputBuffers[inputIndex];
277 if (err == OK && inputIndex < inputBuffers.size()) {
281 inputIndex,
  /packages/inputmethods/LatinIME/native/jni/src/suggest/core/dicnode/
dic_node.h 261 const int inputIndex = mDicNodeState.mDicNodeStateOutput.getSecondWordFirstInputIndex();
262 if (inputIndex == NOT_AN_INDEX) {
265 return pInfoState->getInputIndexOfSampledPoint(inputIndex);

Completed in 528 milliseconds

1 2