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

1 2 3 4

  /frameworks/rs/
rsStream.h 32 mPos = (mPos + 3) & (~3);
33 float tmp = reinterpret_cast<const float *>(&mData[mPos])[0];
34 mPos += sizeof(float);
38 mPos = (mPos + 3) & (~3);
39 int32_t tmp = reinterpret_cast<const int32_t *>(&mData[mPos])[0];
40 mPos += sizeof(int32_t);
44 mPos = (mPos + 3) & (~3)
    [all...]
rsStream.cpp 26 mPos = 0;
31 memcpy(dest, mData + mPos, numBytes);
32 mPos += numBytes;
38 mPos = (mPos + 7) & (~7);
39 tmp = reinterpret_cast<const uint64_t *>(&mData[mPos])[0];
40 mPos += sizeof(uint64_t);
48 const char *s = rsuCopyString((const char *)&mData[mPos], len);
49 mPos += len;
57 mPos = 0
    [all...]
  /prebuilts/ndk/9/platforms/android-19/arch-arm/usr/include/rs/
rsStream.h 32 mPos = (mPos + 3) & (~3);
33 float tmp = reinterpret_cast<const float *>(&mData[mPos])[0];
34 mPos += sizeof(float);
38 mPos = (mPos + 3) & (~3);
39 int32_t tmp = reinterpret_cast<const int32_t *>(&mData[mPos])[0];
40 mPos += sizeof(int32_t);
44 mPos = (mPos + 3) & (~3)
    [all...]
  /prebuilts/ndk/9/platforms/android-19/arch-mips/usr/include/rs/
rsStream.h 32 mPos = (mPos + 3) & (~3);
33 float tmp = reinterpret_cast<const float *>(&mData[mPos])[0];
34 mPos += sizeof(float);
38 mPos = (mPos + 3) & (~3);
39 int32_t tmp = reinterpret_cast<const int32_t *>(&mData[mPos])[0];
40 mPos += sizeof(int32_t);
44 mPos = (mPos + 3) & (~3)
    [all...]
  /prebuilts/ndk/9/platforms/android-19/arch-x86/usr/include/rs/
rsStream.h 32 mPos = (mPos + 3) & (~3);
33 float tmp = reinterpret_cast<const float *>(&mData[mPos])[0];
34 mPos += sizeof(float);
38 mPos = (mPos + 3) & (~3);
39 int32_t tmp = reinterpret_cast<const int32_t *>(&mData[mPos])[0];
40 mPos += sizeof(int32_t);
44 mPos = (mPos + 3) & (~3)
    [all...]
  /frameworks/native/services/surfaceflinger/EventLog/
EventLog.cpp 55 : mPos(0), mTag(tag), mOverflow(false) {
61 } else if (android_bWriteLog(mTag, mStorage, mPos) < 0) {
65 mPos = 0;
72 if (mPos + needed > STORAGE_MAX_SIZE) {
76 mStorage[mPos + 0] = EVENT_TYPE_LIST;
77 mStorage[mPos + 1] = count;
78 mPos += needed;
84 if (mPos + needed > STORAGE_MAX_SIZE) {
88 mStorage[mPos + 0] = '\n';
89 mPos += needed
    [all...]
  /frameworks/base/core/java/com/android/internal/util/
BitwiseInputStream.java 33 private int mPos;
55 mPos = 0;
62 return mEnd - mPos;
75 int index = mPos >>> 3;
76 int offset = 16 - (mPos & 0x07) - bits; // &7==%8
77 if ((bits < 0) || (bits > 8) || ((mPos + bits) > mEnd)) {
79 "(pos " + mPos + ", end " + mEnd + ", bits " + bits + ")");
85 mPos += bits;
111 if ((mPos + bits) > mEnd) {
113 "(pos " + mPos + ", end " + mEnd + ", bits " + bits + ")")
    [all...]
BitwiseOutputStream.java 33 private int mPos;
55 mPos = 0;
64 int len = (mPos >>> 3) + ((mPos & 0x07) > 0 ? 1 : 0); // &7==%8
76 if ((mPos + bits) < mEnd) return;
77 byte[] newBuf = new byte[(mPos + bits) >>> 2];
98 int index = mPos >>> 3;
99 int offset = 16 - (mPos & 0x07) - bits; // &7==%8
101 mPos += bits;
128 mPos += bits
    [all...]
  /frameworks/support/v8/renderscript/java/src/android/support/v8/renderscript/
FieldPackerThunker.java 32 private int mPos;
36 mPos = 0;
41 while ((mPos & (v - 1)) != 0) {
42 mPos++;
48 mPos = 0;
53 mPos = i;
58 mPos += i;
63 mPos++;
68 mPos += 2;
73 mPos += 4
    [all...]
FieldPacker.java 34 mPos = 0;
51 while ((mPos & (v - 1)) != 0) {
52 mData[mPos++] = 0;
61 mPos = 0;
71 mPos = i;
79 int res = mPos + i;
83 mPos = res;
91 mData[mPos++] = v;
100 mData[mPos++] = (byte)(v & 0xff);
101 mData[mPos++] = (byte)(v >> 8)
    [all...]
  /packages/inputmethods/LatinIME/native/jni/src/suggest/core/dictionary/
binary_dictionary_bigrams_iterator.h 29 : mBigramsStructurePolicy(nullptr), mPos(NOT_A_DICT_POS),
34 : mBigramsStructurePolicy(bigramsStructurePolicy), mPos(pos),
40 mPos(bigramsIterator.mPos), mBigramPos(bigramsIterator.mBigramPos),
48 mBigramsStructurePolicy->getNextBigram(&mBigramPos, &mProbability, &mHasNext, &mPos);
63 int mPos;
binary_dictionary_shortcut_iterator.h 31 mPos(shortcutStructurePolicy->getStartPos(shortcutPos)),
44 outIsWhitelist, &mHasNextShortcutTarget, &mPos);
51 int mPos;
  /frameworks/base/tools/aapt/tests/
MockDirectoryWalker.h 25 : mPos(0), mBasePath(path), mData(data) {
44 if (mPos >= mData.size())
49 mEntry.d_ino = mPos;
52 for (i; i < mData[mPos].first.size(); ++i)
53 mEntry.d_name[i] = mData[mPos].first[i];
57 mStats.st_ino = mPos;
58 mStats.st_mtime = mData[mPos].second;
61 mPos++;
78 size_t mPos;
  /frameworks/base/core/java/android/database/
AbstractWindowedCursor.java 45 return mWindow.getBlob(mPos, columnIndex);
51 return mWindow.getString(mPos, columnIndex);
57 mWindow.copyStringToBuffer(mPos, columnIndex, buffer);
63 return mWindow.getShort(mPos, columnIndex);
69 return mWindow.getInt(mPos, columnIndex);
75 return mWindow.getLong(mPos, columnIndex);
81 return mWindow.getFloat(mPos, columnIndex);
87 return mWindow.getDouble(mPos, columnIndex);
93 return mWindow.getType(mPos, columnIndex) == Cursor.FIELD_TYPE_NULL;
131 return mWindow.getType(mPos, columnIndex)
    [all...]
AbstractCursor.java 43 protected int mPos;
185 mPos = -1;
192 return mPos;
199 mPos = count;
205 mPos = -1;
210 if (position == mPos) {
214 boolean result = onMove(mPos, position);
216 mPos = -1;
218 mPos = position;
233 return moveToPosition(mPos + offset)
    [all...]
  /packages/apps/TvSettings/Settings/src/com/android/tv/settings/util/
CachedInputStream.java 37 private int mPos = 0; // current read position inside the chunk buffers
68 // for replacing existing mark(), discard anything before mPos
69 // and move mMarkPos to mPos
70 int chunks = mPos / CHUNK_SIZE;
77 mPos = mPos - removedBytes;
81 mMarkPos = mPos;
90 mPos = mMarkPos;
124 mPos = 0;
149 if (mPos == mBufs.size() * CHUNK_SIZE)
    [all...]
  /frameworks/base/tests/HwAccelerationTest/src/com/android/test/hwui/
PosTextActivity.java 38 private final float[] mPos;
44 mPos = new float[mText.length() * 2];
45 for (int i = 0; i < mPos.length; i += 2) {
46 mPos[i] = i * 30.0f;
47 mPos[i + 1] = i * 10.0f;
66 canvas.drawPosText(mText, mPos, mLargePaint);
70 canvas.drawPosText(mText, mPos, mLargePaint);
74 canvas.drawPosText(mText, mPos, mLargePaint);
TextOnPathActivity.java 77 private final float[] mPos;
102 mPos = new float[2];
119 mMeasure.getPosTan(i * mLength / 100.0f, mPos, mTan);
120 mLines[i * 4 ] = mPos[0];
121 mLines[i * 4 + 1] = mPos[1];
122 mLines[i * 4 + 2] = mPos[0] + mTan[1] * 15;
123 mLines[i * 4 + 3] = mPos[1] - mTan[0] * 15;
136 mMeasure.getPosTan(5.0f, mPos, mTan);
137 canvas.drawLine(mPos[0], mPos[1], mPos[0] + mTan[1] * 10, mPos[1] - mTan[0] * 10
    [all...]
  /frameworks/base/rs/java/android/renderscript/
FieldPacker.java 32 mPos = 0;
39 // Advance mPos to the end of the buffer, since we are copying in the
41 mPos = data.length;
55 while ((mPos & (v - 1)) != 0) {
56 mAlignment.flip(mPos);
57 mData[mPos++] = 0;
66 while ((mPos & (v - 1)) != 0) {
67 mPos--;
70 if (mPos > 0) {
71 while (mAlignment.get(mPos - 1) == true)
    [all...]
  /packages/apps/QuickSearchBox/src/com/android/quicksearchbox/
ListSuggestionCursor.java 41 private int mPos = 0;
75 return mPos;
79 mPos = pos;
84 if (mPos >= size) {
88 mPos++;
89 return mPos < size;
93 mSuggestions.remove(mPos);
97 mSuggestions.set(mPos, new Entry(suggestion));
106 return mSuggestions.get(mPos).get();
140 return mSuggestions.get(mPos).getExtras()
    [all...]
  /packages/apps/Email/src/com/android/email/mail/transport/
DiscourseLogger.java 33 private int mPos;
47 mBuffer[mPos] = s;
48 mPos++;
49 if (mPos >= mBufferSize) {
50 mPos = 0;
88 final int start = mPos;
89 int pos = mPos;
  /frameworks/opt/bluetooth/src/android/bluetooth/client/map/utils/
BmsgTokenizer.java 31 private int mPos = 0;
70 mPos = mMatcher.regionStart();
77 mMatcher.region(mPos, mMatcher.regionEnd());
87 mPos = mMatcher.end();
102 return mStr.substring(mPos);
106 return mPos + mOffset;
  /frameworks/opt/bluetooth/src/android/bluetooth/client/pbap/utils/
BmsgTokenizer.java 31 private int mPos = 0;
70 mPos = mMatcher.regionStart();
77 mMatcher.region(mPos, mMatcher.regionEnd());
87 mPos = mMatcher.end();
102 return mStr.substring(mPos);
106 return mPos + mOffset;
  /packages/apps/QuickSearchBox/src/com/android/quicksearchbox/google/
AbstractGoogleSourceResult.java 32 private int mPos = 0;
51 return mPos;
59 mPos = pos;
64 if (mPos >= size) {
68 mPos++;
69 return mPos < size;
  /sdk/eclipse/plugins/com.android.ide.eclipse.ndk/src/com/android/ide/eclipse/ndk/internal/templates/
TemplatedInputStream.java 31 private int mPos;
50 char c = mSub[mPos++];
51 if (mPos >= mSub.length)
68 mPos = 0;

Completed in 2102 milliseconds

1 2 3 4