HomeSort by relevance Sort by last modified time
    Searched refs:mInputSize (Results 1 - 14 of 14) sorted by null

  /frameworks/av/media/libstagefright/codecs/amrnb/enc/
SoftAMRNBEncoder.h 55 size_t mInputSize;
SoftAMRNBEncoder.cpp 51 mInputSize(0),
286 while (mInputSize < numBytesPerInputFrame) {
301 size_t copy = numBytesPerInputFrame - mInputSize;
306 if (mInputSize == 0) {
310 memcpy((uint8_t *)mInputFrame + mInputSize, inData, copy);
311 mInputSize += copy;
327 memset((uint8_t *)mInputFrame + mInputSize,
329 numBytesPerInputFrame - mInputSize);
331 mInputSize = numBytesPerInputFrame;
394 mInputSize = 0
    [all...]
  /frameworks/av/media/libstagefright/codecs/amrwbenc/
SoftAMRWBEncoder.h 61 size_t mInputSize;
SoftAMRWBEncoder.cpp 52 mInputSize(0),
333 while (mInputSize < numBytesPerInputFrame) {
348 size_t copy = numBytesPerInputFrame - mInputSize;
353 if (mInputSize == 0) {
357 memcpy((uint8_t *)mInputFrame + mInputSize, inData, copy);
358 mInputSize += copy;
374 memset((uint8_t *)mInputFrame + mInputSize,
376 numBytesPerInputFrame - mInputSize);
378 mInputSize = numBytesPerInputFrame;
408 inputData.Length = mInputSize;
    [all...]
  /packages/inputmethods/LatinIME/native/jni/src/suggest/core/session/
dic_traverse_session.h 39 mInputSize(0), mPartiallyCommited(false), mMaxPointerCount(1),
74 int getInputSize() const { return mInputSize; }
176 int mInputSize;
dic_traverse_session.cpp 113 mInputSize = 0;
119 mInputSize += mProximityInfoStates[i].size();
  /frameworks/av/media/libstagefright/codecs/aacenc/
SoftAACEncoder.h 61 size_t mInputSize;
SoftAACEncoder2.h 59 size_t mInputSize;
SoftAACEncoder.cpp 53 mInputSize(0),
422 while (mInputSize < numBytesPerInputFrame) {
437 size_t copy = numBytesPerInputFrame - mInputSize;
446 if (mInputSize == 0) {
450 memcpy((uint8_t *)mInputFrame + mInputSize, inData, copy);
451 mInputSize += copy;
468 memset((uint8_t *)mInputFrame + mInputSize,
470 numBytesPerInputFrame - mInputSize);
472 mInputSize = numBytesPerInputFrame;
550 mInputSize = 0
    [all...]
SoftAACEncoder2.cpp 49 mInputSize(0),
400 while (mInputSize < numBytesPerInputFrame) {
415 size_t copy = numBytesPerInputFrame - mInputSize;
424 if (mInputSize == 0) {
428 memcpy((uint8_t *)mInputFrame + mInputSize, inData, copy);
429 mInputSize += copy;
445 memset((uint8_t *)mInputFrame + mInputSize,
447 numBytesPerInputFrame - mInputSize);
449 mInputSize = numBytesPerInputFrame;
564 mInputSize = 0
    [all...]
  /packages/apps/DeskClock/src/com/android/deskclock/
TimerSetupView.java 34 protected int mInputSize = 5;
37 protected int mInput [] = new int [mInputSize];
133 if (mInputPointer < mInputSize - 1) {
174 for (int i = 0; i < mInputSize; i ++) {
191 if (input != null && mInputSize == input.length) {
192 for (int i = 0; i < mInputSize; i++) {
TimePicker.java 56 mInputSize = 4;
210 if (mInputPointer < mInputSize - 1) {
516 mInput = new int[mInputSize];
  /packages/inputmethods/LatinIME/native/jni/src/
correction.cpp 81 mInputSize = inputSize;
83 mMaxEditDistance = mInputSize < 5 ? 2 : mInputSize / 2;
137 return getFinalProbabilityInternal(probability, word, wordLength, mInputSize);
191 || (!mDoAutoCompletion && (mOutputIndex > mInputSize));
217 if (mLastCharExceeded && mInputIndex == mInputSize - 1) {
246 if (mExcessivePos < mInputSize - 1) {
266 if (mTransposedPos < mInputSize - 1) {
285 && (INPUTLENGTH_FOR_DEBUG <= 0 || INPUTLENGTH_FOR_DEBUG == mInputSize)
316 && (INPUTLENGTH_FOR_DEBUG <= 0 || INPUTLENGTH_FOR_DEBUG == mInputSize)
    [all...]
correction.h 42 mMaxEditDistance(0), mMaxDepth(0), mInputSize(0), mSpaceProximityPos(0),
229 int mInputSize;
360 calcEditDistanceOneStep(mEditDistanceTable, primaryInputWord, mInputSize, mWord,

Completed in 330 milliseconds