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

1 2 3 4 5 6 7 8 91011>>

  /frameworks/av/media/libstagefright/codecs/amrnb/common/src/
c2_9pf_tab.cpp 52 This file contains the declaration for startPos[] used by the functions
89 extern const Word16 startPos[];
90 const Word16 startPos[2*4*2] = {0, 2, 0, 3,
  /external/lzma/CPP/7zip/Common/
LockedStream.h 17 HRESULT Read(UInt64 startPos, void *data, UInt32 size, UInt32 *processedSize);
27 void Init(CLockedInStream *lockedInStream, UInt64 startPos)
30 _pos = startPos;
LockedStream.cpp 7 HRESULT CLockedInStream::Read(UInt64 startPos, void *data, UInt32 size,
11 RINOK(_stream->Seek(startPos, STREAM_SEEK_SET, NULL));
  /frameworks/av/media/libstagefright/codecs/amrnb/dec/src/
d2_9pf.cpp 104 extern const Word16 startPos[];
206 /* pos0 =i*5+startPos[j*8+subNr*2] */
207 pos[0] = i * 5 + startPos[k++];
214 /* pos1 =i*5+startPos[j*8+subNr*2 + 1] */
215 pos[1] = i * 5 + startPos[k];
  /packages/inputmethods/LatinIME/java/src/com/android/inputmethod/latin/utils/
ResizableIntArray.java 112 public void append(final ResizableIntArray src, final int startPos, final int length) {
119 System.arraycopy(src.mArray, startPos, mArray, currentLength, length);
123 public void fill(final int value, final int startPos, final int length) {
124 if (startPos < 0 || length < 0) {
125 throw new IllegalArgumentException("startPos=" + startPos + "; length=" + length);
127 final int endPos = startPos + length;
129 Arrays.fill(mArray, startPos, endPos, value);
  /packages/inputmethods/LatinIME/tests/src/com/android/inputmethod/latin/utils/
ResizableIntArrayTests.java 234 final int startPos = 0;
235 dst.append(src, startPos, 0 /* length */);
238 assertIntArrayEquals("values after append zero", dstCopy.getPrimitiveArray(), startPos,
239 dst.getPrimitiveArray(), startPos, dstLength);
241 dst.append(src, startPos, srcLength);
246 assertIntArrayEquals("original values after append", dstCopy.getPrimitiveArray(), startPos,
247 dst.getPrimitiveArray(), startPos, dstLength);
248 assertIntArrayEquals("appended values after append", src.getPrimitiveArray(), startPos,
251 dst.append(src, startPos, srcLength);
257 dstCopy.getPrimitiveArray(), startPos, dst.getPrimitiveArray(), startPos
    [all...]
  /frameworks/wilhelm/src/itf/
ISeek.c 52 SLmillisecond startPos, SLmillisecond endPos)
56 if (!(startPos < endPos)) {
62 if ((startPos != 0) && (endPos != SL_TIME_UNKNOWN)) {
97 thiz->mStartPos = startPos;
119 SLmillisecond startPos = thiz->mStartPos;
123 *pStartPos = startPos;
  /packages/inputmethods/LatinIME/tests/src/com/android/inputmethod/latin/
InputPointersTests.java 177 final int startPos = 0;
179 startPos, 0 /* length */);
182 dstCopy.getXCoordinates(), startPos, dst.getXCoordinates(), startPos, dstLength);
184 dstCopy.getYCoordinates(), startPos, dst.getYCoordinates(), startPos, dstLength);
186 dstCopy.getPointerIds(), startPos, dst.getPointerIds(), startPos, dstLength);
188 dstCopy.getTimes(), startPos, dst.getTimes(), startPos, dstLength)
    [all...]
  /external/protobuf/java/src/main/java/com/google/protobuf/nano/
WireFormatNano.java 114 int startPos = input.getPosition();
124 input.rewindToPosition(startPos);
ExtendableMessageNano.java 128 int startPos = input.getPosition();
134 byte[] bytes = input.getData(startPos, endPos - startPos);
  /frameworks/base/core/java/android/database/sqlite/
SQLiteQuery.java 46 * @param startPos The start position for filling the window.
57 int fillWindow(CursorWindow window, int startPos, int requiredPos, boolean countAllRows) {
63 window, startPos, requiredPos, countAllRows, getConnectionFlags(),
SQLiteCursor.java 143 int startPos = DatabaseUtils.cursorPickFillWindowStartPosition(requiredPos, 0);
144 mCount = mQuery.fillWindow(mWindow, startPos, requiredPos, true);
150 int startPos = DatabaseUtils.cursorPickFillWindowStartPosition(requiredPos,
152 mQuery.fillWindow(mWindow, startPos, requiredPos, false);
  /external/chromium_org/third_party/WebKit/Source/core/xml/
XPathParser.cpp 185 int startPos = m_nextPos + 1;
187 for (m_nextPos = startPos; m_nextPos < m_data.length(); ++m_nextPos) {
189 String value = m_data.substring(startPos, m_nextPos - startPos);
203 int startPos = m_nextPos;
220 return Token(NUMBER, m_data.substring(startPos, m_nextPos - startPos));
225 int startPos = m_nextPos;
238 name = m_data.substring(startPos, m_nextPos - startPos);
    [all...]
  /external/chromium_org/third_party/icu/source/common/
brkeng.h 66 * @param startPos The start of the run within the supplied text.
75 int32_t startPos,
191 * @param startPos The start of the run within the supplied text.
200 int32_t startPos,
rbbi.cpp 594 int32_t startPos = current();
597 result = checkDictionary(startPos, result, FALSE);
608 int32_t startPos;
630 if (fText == NULL || (startPos = current()) == 0) {
639 result = checkDictionary(result, startPos, TRUE);
    [all...]
  /external/icu/icu4c/source/common/
brkeng.h 66 * @param startPos The start of the run within the supplied text.
75 int32_t startPos,
191 * @param startPos The start of the run within the supplied text.
200 int32_t startPos,
  /external/chromium_org/third_party/icu/source/test/intltest/
ustrtest.cpp 718 int32_t startPos = 0;
720 startPos != -1 && startPos < test1.length();
721 (startPos = test1.indexOf(test2, startPos)) != -1 ? (++occurrences, startPos += 4) : 0)
726 for ( occurrences = 0, startPos = 10;
727 startPos != -1 && startPos < test1.length();
728 (startPos = test1.indexOf(test2, startPos)) != -1 ? (++occurrences, startPos += 4) : 0
    [all...]
  /external/icu/icu4c/source/test/intltest/
ustrtest.cpp 718 int32_t startPos = 0;
720 startPos != -1 && startPos < test1.length();
721 (startPos = test1.indexOf(test2, startPos)) != -1 ? (++occurrences, startPos += 4) : 0)
726 for ( occurrences = 0, startPos = 10;
727 startPos != -1 && startPos < test1.length();
728 (startPos = test1.indexOf(test2, startPos)) != -1 ? (++occurrences, startPos += 4) : 0
    [all...]
  /external/lzma/CPP/7zip/Archive/7z/
7zDecode.h 52 UInt64 startPos,
  /packages/inputmethods/LatinIME/java/src/com/android/inputmethod/latin/
InputPointers.java 99 * @param startPos the starting index of the data in {@code times} and etc.
103 ResizableIntArray yCoordinates, int startPos, int length) {
107 mXCoordinates.append(xCoordinates, startPos, length);
108 mYCoordinates.append(yCoordinates, startPos, length);
110 mTimes.append(times, startPos, length);
  /external/javassist/src/main/javassist/bytecode/
ClassFileWriter.java 319 private int startPos;
387 startPos = output.getPos();
449 output.writeShort(startPos + 6, maxStack);
450 output.writeShort(startPos + 8, maxLocals);
451 output.writeInt(startPos + 10, output.getPos() - startPos - 14); // code_length
502 output.writeInt(startPos + 2, output.getPos() - startPos - 6);
522 protected int startPos;
527 startPos = out.getPos()
    [all...]
  /frameworks/opt/telephony/tests/telephonytests/src/com/android/internal/telephony/
SmsMessageBodyTest.java 262 int startPos = 0;
271 int endPos = (asciiCharsLen - startPos > addCount) ?
272 (startPos + addCount) : asciiCharsLen;
273 sb.append(sAsciiChars, startPos, endPos);
274 startPos = (endPos == asciiCharsLen) ? 0 : endPos;
295 int startPos = 0;
305 int endPos = (unicodeCharsLen - startPos > addCount) ?
306 (startPos + addCount) : unicodeCharsLen;
307 sb.append(sUnicodeChars, startPos, endPos);
308 startPos = (endPos == unicodeCharsLen) ? 0 : endPos
    [all...]
  /external/icu/icu4c/source/i18n/
rematch.cpp 598 int64_t startPos = fMatchEnd;
599 if (startPos==0) {
600 startPos = fActiveStart;
610 if (startPos >= fActiveLimit) {
615 UTEXT_SETNATIVEINDEX(fInputText, startPos);
617 startPos = UTEXT_GETNATIVEINDEX(fInputText);
637 if (startPos > testStartLimit) {
649 U_ASSERT(startPos >= 0);
656 MatchAt(startPos, FALSE, fDeferredStatus);
663 if (startPos >= testStartLimit)
    [all...]
  /frameworks/support/v17/leanback/src/android/support/v17/leanback/widget/
StaggeredGrid.java 286 * on that row between startPos(included) and endPositions(included).
289 public final List<Integer>[] getItemPositionsInRows(int startPos, int endPos) {
293 if (startPos >= 0) {
294 for (int i = startPos; i <= endPos; i++) {
  /frameworks/base/core/jni/
android_database_SQLiteConnection.cpp 575 sqlite3_stmt* statement, int numColumns, int startPos, int addedRows) {
579 LOG_WINDOW("Failed allocating fieldDir at startPos %d row %d, error=%d",
580 startPos, addedRows, status);
599 sizeIncludingNull, startPos + addedRows, i, status);
604 startPos + addedRows, i, sizeIncludingNull);
615 LOG_WINDOW("%d,%d is INTEGER 0x%016llx", startPos + addedRows, i, value);
626 LOG_WINDOW("%d,%d is FLOAT %lf", startPos + addedRows, i, value);
634 size, startPos + addedRows, i, status);
639 startPos + addedRows, i, size);
650 LOG_WINDOW("%d,%d is NULL", startPos + addedRows, i)
    [all...]

Completed in 334 milliseconds

1 2 3 4 5 6 7 8 91011>>