HomeSort by relevance Sort by last modified time
    Searched defs:mHead (Results 1 - 25 of 56) sorted by null

1 2 3

  /hardware/akm/AK8975_FS/libsensors/
InputEventReader.h 33 struct input_event* mHead;
  /frameworks/base/libs/hwui/
DamageAccumulator.h 70 DirtyStack* mHead;
  /hardware/invensense/6515/libsensors_iio/
InputEventReader.h 35 struct input_event* mHead;
  /hardware/invensense/65xx/libsensors_iio/
InputEventReader.h 35 struct input_event* mHead;
  /frameworks/base/libs/hwui/utils/
RingBuffer.h 38 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;
  /packages/apps/Gallery2/src/com/android/gallery3d/util/
LinkedNode.java 44 private LinkedNode mHead = new LinkedNode();
47 mHead.mPrev.insert(node);
51 return (T) (mHead.mNext == mHead ? null : mHead.mNext);
55 return (T) (mHead.mPrev == mHead ? null : mHead.mPrev);
59 return (T) (node.mNext == mHead ? null : node.mNext);
63 return (T) (node.mPrev == mHead ? null : node.mPrev)
    [all...]
  /system/chre/util/include/chre/util/
array_queue.h 225 * mHead and mTail will align. Also, this is consistent with
226 * mSize = (mTail - mHead)%kCapacity + 1 for mSize > 0.
229 size_t mHead = 0;
252 * Converts relative index with respect to mHead to absolute index in the
261 * Pulls mHead to the next element in the array queue and decrements mSize
  /frameworks/base/libs/hwui/renderthread/
RenderThread.h 66 RenderTask* mHead;
  /frameworks/support/compat/java/android/support/v4/util/
CircularArray.java 23 private int mHead;
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...]
CircularIntArray.java 24 private int mHead;
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...]
  /system/netd/server/
MDnsSdListener.h 96 Element *mHead;
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/
AdtPlugin.java 637 private int mHead;
661 if (mHead != mTail) {
662 char c = mStorage[mHead];
663 mHead = (mHead + 1) % mStorage.length;
666 assert mHead == mTail;
671 mStorage[mHead] = (char) c;
672 mHead = mTail = (mHead + 1) % mStorage.length;
687 mHead -= n
    [all...]
  /frameworks/base/core/java/android/view/
Choreographer.java     [all...]
  /frameworks/base/packages/WallpaperCropper/src/com/android/photos/views/
TiledImageRenderer.java 752 private Tile mHead;
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;
  /packages/apps/Gallery2/src/com/android/gallery3d/ui/
TileImageView.java 736 private Tile mHead;
739 Tile tile = mHead;
740 if (tile != null) mHead = tile.mNext;
745 boolean wasEmpty = mHead == null;
746 tile.mNext = mHead;
747 mHead = tile;
752 mHead = null;
  /packages/apps/Gallery2/src/com/android/photos/views/
TiledImageRenderer.java 752 private Tile mHead;
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;
  /packages/apps/WallpaperPicker/src/com/android/photos/views/
TiledImageRenderer.java 752 private Tile mHead;
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;
  /prebuilts/sdk/current/extras/constraint-layout-solver/
android-support-constraint-layout-solver.jar 
  /prebuilts/misc/common/ub-uiautomator/
ub-uiautomator.jar 
  /development/samples/training/basic/ActivityLifecycle/libs/
android-support-v13.jar 
  /development/samples/training/multiscreen/newsreader/libs/
android-support-v4.jar 
  /sdk/testapps/jarCheckTests1/app/libs/
android-support-v4.jar 
  /sdk/testapps/jarCheckTests1/lib1/libs/
android-support-v4.jar 
  /sdk/testapps/jarCheckTests1/lib2/libs/
android-support-v4.jar 
  /sdk/testapps/jarCheckTests2/lib1/libs/
android-support-v4.jar 

Completed in 346 milliseconds

1 2 3