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/
proximity_info_state.h 59 mTouchPositionCorrectionEnabled(false), mInputSize(0) {
83 if (index < 0 || index >= mInputSize) return false;
90 if (rightIndex < mInputSize && existsCharInProximityAt(rightIndex, currentChar)) {
176 if (length != mInputSize) {
193 return mInputSize > 0;
197 return mInputSize;
293 int mInputSize;
proximity_info_state.cpp 113 mInputSize = 0;
160 mInputSize = mInputXs.size();
163 if (mInputSize > 0 && isGeometric) {
167 mRelativeSpeeds.resize(mInputSize);
168 for (int i = lastSavedInputSize; i < mInputSize; ++i) {
195 if (mInputSize > 0) {
197 mNearKeysVector.resize(mInputSize);
198 mDistanceCache.resize(mInputSize * keyCount);
199 for (int i = lastSavedInputSize; i < mInputSize; ++i) {
219 for (int i = 0; i < mInputSize; ++i)
    [all...]
correction.cpp 115 mInputSize = inputSize;
117 mMaxEditDistance = mInputSize < 5 ? 2 : mInputSize / 2;
171 return getFinalProbabilityInternal(probability, word, wordLength, mInputSize);
273 || (!mDoAutoCompletion && (mOutputIndex > mInputSize));
279 calcEditDistanceOneStep(mEditDistanceTable, primaryInputWord, mInputSize,
328 if (mLastCharExceeded && mInputIndex == mInputSize - 1) {
357 if (mExcessivePos < mInputSize - 1) {
377 if (mTransposedPos < mInputSize - 1) {
396 && (INPUTLENGTH_FOR_DEBUG <= 0 || INPUTLENGTH_FOR_DEBUG == mInputSize)
    [all...]
correction.h 44 mMaxEditDistance(0), mMaxDepth(0), mInputSize(0), mSpaceProximityPos(0),
234 int mInputSize;
  /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];

Completed in 318 milliseconds