Searched defs:mHead (Results 1 - 9 of 9) sorted by relevance

/frameworks/base/libs/hwui/
H A DDamageAccumulator.h70 DirtyStack* mHead; member in class:android::uirenderer::DamageAccumulator
/frameworks/base/libs/hwui/utils/
H A DRingBuffer.h38 mHead = (mHead + 1) % SIZE;
42 return mBuffer[mHead];
54 return mBuffer[(mHead + index + 1) % mCount];
58 return mBuffer[(mHead + index + 1) % mCount];
63 mHead = -1;
68 int mHead = -1; member in class:android::uirenderer::RingBuffer
/frameworks/support/v4/java/android/support/v4/util/
H A DCircularArray.java23 private int mHead; field in class:CircularArray
29 int r = n - mHead;
35 System.arraycopy(mElements, mHead, a, 0, r);
36 System.arraycopy(mElements, 0, a, r, mHead);
38 mHead = 0;
82 mHead = (mHead - 1) & mCapacityBitmask;
83 mElements[mHead] = e;
84 if (mHead == mTail) {
96 if (mTail == mHead) {
[all...]
H A DCircularIntArray.java24 private int mHead; field in class:CircularIntArray
30 int r = n - mHead;
36 System.arraycopy(mElements, mHead, a, 0, r);
37 System.arraycopy(mElements, 0, a, r, mHead);
39 mHead = 0;
83 mHead = (mHead - 1) & mCapacityBitmask;
84 mElements[mHead] = e;
85 if (mHead == mTail) {
97 if (mTail == mHead) {
[all...]
/frameworks/base/libs/hwui/renderthread/
H A DRenderThread.h60 RenderTask* mHead; member in class:android::uirenderer::renderthread::TaskQueue
/frameworks/base/core/java/android/view/
H A DChoreographer.java877 private CallbackRecord mHead; field in class:Choreographer.CallbackQueue
880 return mHead != null && mHead.dueTime <= now;
884 CallbackRecord callbacks = mHead;
899 mHead = next;
905 CallbackRecord entry = mHead;
907 mHead = callback;
912 mHead = callback;
927 for (CallbackRecord callback = mHead; callback != null;) {
934 mHead
[all...]
/frameworks/base/packages/WallpaperCropper/src/com/android/photos/views/
H A DTiledImageRenderer.java752 private Tile mHead; field in class:TiledImageRenderer.TileQueue
755 Tile tile = mHead;
757 mHead = tile.mNext;
767 boolean wasEmpty = mHead == null;
768 tile.mNext = mHead;
769 mHead = tile;
774 Tile other = mHead;
785 mHead = null;
/frameworks/base/core/java/android/app/
H A DBackStackRecord.java56 BackStackRecord.Op op = bse.mHead;
69 op = bse.mHead;
231 Op mHead; field in class:BackStackRecord
321 if (mHead != null) {
325 Op op = mHead;
435 if (mHead == null) {
436 mHead = mTail = op;
647 Op op = mHead;
731 Op op = mHead;
876 Op op = mHead;
[all...]
/frameworks/support/v4/java/android/support/v4/app/
H A DBackStackRecord.java50 BackStackRecord.Op op = bse.mHead;
61 op = bse.mHead;
220 Op mHead; field in class:BackStackRecord
301 if (mHead != null) {
304 Op op = mHead;
388 if (mHead == null) {
389 mHead = mTail = op;
601 Op op = mHead;
683 Op op = mHead;
814 Op op = mHead;
[all...]

Completed in 173 milliseconds