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

1 2 3

  /frameworks/av/services/audioflinger/
AudioResamplerCubic.cpp 58 size_t inputIndex = mInputIndex;
83 // out[outputIndex++] += vr * in[inputIndex*2];
93 inputIndex++;
94 if (inputIndex == mBuffer.frameCount) {
95 inputIndex = 0;
107 advance(&left, in[inputIndex*2]);
108 advance(&right, in[inputIndex*2+1]);
113 // ALOGW("Done: index=%d, fraction=%u", inputIndex, phaseFraction);
114 mInputIndex = inputIndex;
124 size_t inputIndex = mInputIndex
    [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,
303 size_t inputIndex = mInputIndex;
310 // ALOGE("starting resample %d frames, inputIndex=%d, phaseFraction=%d, phaseIncrement=%d",
311 // outFrameCount, inputIndex, phaseFraction, phaseIncrement);
325 if (mBuffer.frameCount > inputIndex) break;
327 inputIndex -= mBuffer.frameCount;
337 while (inputIndex == 0) {
341 Advance(&inputIndex, &phaseFraction, phaseIncrement);
350 if (inputIndex + 2 < mBuffer.frameCount)
    [all...]
AudioResamplerSinc.h 65 const int16_t* in, size_t inputIndex);
AudioResamplerSinc.cpp     [all...]
  /external/icu4c/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...]
ThaiShaping.h 82 static le_uint8 doTransition(StateTransition transition, LEUnicode currChar, le_int32 inputIndex, le_uint8 glyphSet,
85 static le_uint8 getNextState(LEUnicode ch, le_uint8 state, le_int32 inputIndex, le_uint8 glyphSet, LEUnicode errorChar,
  /external/chromium_org/third_party/WebKit/Source/modules/webaudio/
AudioBasicInspectorNode.h 43 virtual void connect(AudioNode*, unsigned outputIndex, unsigned inputIndex, ExceptionState&);
AudioBasicInspectorNode.cpp 54 void AudioBasicInspectorNode::connect(AudioNode* destination, unsigned outputIndex, unsigned inputIndex, ExceptionState& es)
60 AudioNode::connect(destination, outputIndex, inputIndex, es);
AudioNode.cpp 127 void AudioNode::connect(AudioNode* destination, unsigned outputIndex, unsigned inputIndex, ExceptionState& es)
143 if (destination && inputIndex >= destination->numberOfInputs()) {
153 AudioNodeInput* input = destination->input(inputIndex);
AudioNode.h 130 virtual void connect(AudioNode*, unsigned outputIndex, unsigned inputIndex, ExceptionState&);
  /external/smack/asmack-master/static-src/novell-openldap-jldap/com/novell/sasl/client/
DirectiveList.java 320 int inputIndex;
333 inputIndex = m_scanStart;
334 while (inputIndex < m_curPos)
336 if ('\\' == (valueChar = m_directives.charAt(inputIndex)))
337 inputIndex++;
338 valueBuf.setCharAt(valueIndex, m_directives.charAt(inputIndex));
340 inputIndex++;
  /external/smack/src/com/novell/sasl/client/
DirectiveList.java 320 int inputIndex;
333 inputIndex = m_scanStart;
334 while (inputIndex < m_curPos)
336 if ('\\' == (valueChar = m_directives.charAt(inputIndex)))
337 inputIndex++;
338 valueBuf.setCharAt(valueIndex, m_directives.charAt(inputIndex));
340 inputIndex++;
  /packages/inputmethods/LatinIME/native/jni/src/suggest/core/dicnode/internal/
dic_node_state_input.h 54 void updateInputIndexG(const int pointerId, const int inputIndex,
56 mInputIndex[pointerId] = inputIndex;
79 // when "inputIndex" exceeds "inputSize", auto-completion needs to be done
dic_node_state_prevword.h 98 void setSecondWordFirstInputIndex(const int inputIndex) {
99 mSecondWordFirstInputIndex = inputIndex;
  /external/chromium_org/third_party/skia/src/utils/
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);
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);
  /external/skia/src/utils/
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);
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);
  /packages/inputmethods/LatinIME/native/jni/src/suggest/core/layout/
proximity_info_state.cpp 164 const int inputIndex, const int codePoint) const {
167 const int index = inputIndex * mProximityInfo->getKeyCount() + keyId;
178 const int inputIndex, const int keyId) const {
180 &mSampledNormalizedSquaredLengthCache, mProximityInfo->getKeyCount(), inputIndex,
proximity_info_state_utils.h 84 const int inputIndex, const int keyId);
133 const int maxPointToKeyLength, const int inputIndex, const int nodeCodePoint, int x,
159 const int inputIndex);
162 const std::vector<int> *const sampledInputYs, const int keyIndex, const int inputIndex);
proximity_info_state.h 148 float getPointToKeyByIdLength(const int inputIndex, const int keyId) const;
150 float getPointToKeyLength(const int inputIndex, const int codePoint) const;
proximity_info.h 38 int getNormalizedSquaredDistance(const int inputIndex, const int proximityIndex) const;
  /cts/tests/tests/media/src/android/media/cts/
MediaCodecTest.java 422 int inputIndex = encoder.dequeueInputBuffer(TIMEOUT_USEC);
423 while (inputIndex == -1) {
424 inputIndex = encoder.dequeueInputBuffer(TIMEOUT_USEC);
426 ByteBuffer inputBuffer = inputBuffers[inputIndex];
430 totalEncoded += inputBuffers[inputIndex].limit();
431 encoder.queueInputBuffer(inputIndex, 0, inputBuffer.limit(), 0, 0);
  /packages/inputmethods/LatinIME/native/jni/src/suggest/core/dicnode/
dic_nodes_cache.h 82 bool isLookAheadCorrectionInputIndex(const int inputIndex) const {
83 return inputIndex == mInputIndex - 1;
145 AKLOGI("Restore %d nodes. inputIndex = %d.",
  /packages/inputmethods/LatinIME/native/jni/src/suggest/policyimpl/typing/
typing_weighting.h 182 const int inputIndex = dicNode->getInputIndex(0);
184 ASSERT(inputIndex < inputSize);
186 return ScoringParams::TERMINAL_INSERTION_COST * (inputSize - inputIndex);

Completed in 505 milliseconds

1 2 3