Home
last modified time | relevance | path

Searched refs:mInputIndex (Results 1 – 8 of 8) sorted by relevance

/aosp12/packages/inputmethods/LatinIME/native/jni/src/suggest/core/dicnode/internal/
H A Ddic_node_state_input.h34 mInputIndex[i] = 0; in init()
42 mInputIndex[i] = src->mInputIndex[i]; in init()
51 mInputIndex[pointerId] = inputIndex; in updateInputIndexG()
66 if (mInputIndex[pointerId] < 0) { in forwardInputIndex()
67 mInputIndex[pointerId] = val; in forwardInputIndex()
69 mInputIndex[pointerId] = mInputIndex[pointerId] + val; in forwardInputIndex()
75 return mInputIndex[pointerId]; in getInputIndex()
89 int mInputIndex[MAX_POINTER_COUNT_G]; variable
/aosp12/packages/apps/TV/tuner/src/com/android/tv/tuner/exoplayer/audio/
H A DMediaCodecAudioDecoder.java46 private int mInputIndex; field in MediaCodecAudioDecoder
100 mInputIndex = INDEX_INVALID; in maybeInitDecoder()
111 mInputIndex = INDEX_INVALID; in resetDecoderState()
122 mInputIndex = INDEX_INVALID; in release()
139 return mInputIndex; in getInputIndex()
144 if (mInputIndex < 0) { in getInputBuffer()
145 mInputIndex = mCodec.dequeueInputBuffer(0); in getInputBuffer()
146 if (mInputIndex < 0) { in getInputBuffer()
149 return mCodec.getInputBuffer(mInputIndex); in getInputBuffer()
151 return mCodec.getInputBuffer(mInputIndex); in getInputBuffer()
[all …]
/aosp12/packages/inputmethods/LatinIME/native/jni/src/suggest/core/dicnode/
H A Ddic_nodes_cache.h44 mInputIndex(0), mLastCachedInputIndex(0) {} in DicNodesCache()
49 mInputIndex = 0; in reset()
80 return inputIndex == mInputIndex - 1; in isLookAheadCorrectionInputIndex()
83 if (mInputIndex < inputSize) { in advanceInputIndex()
84 mInputIndex++; in advanceInputIndex()
121 const bool shouldCache = (cacheInputIndex == mInputIndex) in isCacheBorderForTyping()
127 mLastCachedInputIndex = mInputIndex; in updateLastCachedInputIndex()
141 mInputIndex = mLastCachedInputIndex; in restoreActiveDicNodesFromCache()
186 int mInputIndex; variable
H A Ddic_node.h63 : mNeedsToUpdateInputStateG(false), mPointerId(0), mInputIndex(0), in DicNode_InputStateG()
69 int16_t mInputIndex; member
495 inputStateG->mInputIndex); in updateInputIndexG()
498 inputStateG->mInputIndex, inputStateG->mPrevCodePoint, in updateInputIndexG()
/aosp12/frameworks/av/media/libaudioprocessing/
H A DAudioResamplerCubic.cpp59 size_t inputIndex = mInputIndex; in resampleStereo16()
115 mInputIndex = inputIndex; in resampleStereo16()
126 size_t inputIndex = mInputIndex; in resampleMono16()
182 mInputIndex = inputIndex; in resampleMono16()
H A DAudioResampler.cpp267 mSampleRate(sampleRate), mInSampleRate(sampleRate), mInputIndex(0), in AudioResampler()
312 mInputIndex = 0; in reset()
343 size_t inputIndex = mInputIndex; in resampleStereo16()
430 mInputIndex = inputIndex; in resampleStereo16()
441 size_t inputIndex = mInputIndex; in resampleMono16()
456 mInputIndex = inputIndex; in resampleMono16()
526 mInputIndex = inputIndex; in resampleMono16()
H A DAudioResamplerSinc.cpp302 size_t inputIndex = mInputIndex; in resample()
367 mInputIndex = inputIndex; in resample()
/aosp12/frameworks/av/media/libaudioprocessing/include/media/
H A DAudioResampler.h81 virtual size_t getUnreleasedFrames() const { return mInputIndex; } in getUnreleasedFrames()
111 size_t mInputIndex; variable