Searched defs:mHead (Results 1 - 7 of 7) 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/compat/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.h63 RenderTask* mHead; member in class:android::uirenderer::renderthread::TaskQueue
/frameworks/base/core/java/android/view/
H A DChoreographer.java917 private CallbackRecord mHead; field in class:Choreographer.CallbackQueue
920 return mHead != null && mHead.dueTime <= now;
924 CallbackRecord callbacks = mHead;
939 mHead = next;
945 CallbackRecord entry = mHead;
947 mHead = callback;
952 mHead = callback;
967 for (CallbackRecord callback = mHead; callback != null;) {
974 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;

Completed in 1482 milliseconds