Searched refs:mHead (Results 1 – 9 of 9) sorted by relevance
/frameworks/base/libs/hwui/ |
D | DamageAccumulator.cpp | 48 mHead = mAllocator.create_trivial<DirtyStack>(); in DamageAccumulator() 49 memset(mHead, 0, sizeof(DirtyStack)); in DamageAccumulator() 51 mHead->prev = mHead; in DamageAccumulator() 52 mHead->type = TransformNone; in DamageAccumulator() 77 computeTransformImpl(mHead, outMatrix); in computeCurrentTransform() 81 if (!mHead->next) { in pushCommon() 84 nextFrame->prev = mHead; in pushCommon() 85 mHead->next = nextFrame; in pushCommon() 87 mHead = mHead->next; in pushCommon() 88 mHead->pendingDirty.setEmpty(); in pushCommon() [all …]
|
D | DamageAccumulator.h | 71 DirtyStack* mHead; variable
|
/frameworks/base/core/java/android/util/ |
D | LongArrayQueue.java | 37 private int mHead; field in LongArrayQueue 52 mHead = mTail = 0; in LongArrayQueue() 68 final int r = mValues.length - mHead; // Number of elements on and to the right of head. in grow() 69 System.arraycopy(mValues, mHead, newArray, 0, r); in grow() 70 System.arraycopy(mValues, 0, newArray, r, mHead); in grow() 72 mHead = 0; in grow() 88 mHead = mTail = 0; in clear() 115 final long ret = mValues[mHead]; in removeFirst() 116 mHead = (mHead + 1) % mValues.length; in removeFirst() 135 final int index = (mHead + position) % mValues.length; in get() [all …]
|
/frameworks/base/libs/hwui/thread/ |
D | CommonPool.h | 42 constexpr bool hasWork() const { return mHead != mTail; } in hasWork() 43 constexpr bool hasSpace() const { return ((mHead + 1) % SIZE) != mTail; } in hasSpace() 45 if (mHead > mTail) { in size() 46 return mHead - mTail; in size() 48 return mTail - mHead + SIZE; in size() 53 int newHead = (mHead + 1) % SIZE; in push() 56 mBuffer[mHead] = std::move(t); in push() 57 mHead = newHead; in push() 61 LOG_ALWAYS_FATAL_IF(mTail == mHead, "empty"); in pop() 71 int mHead = 0; variable
|
/frameworks/base/libs/hwui/utils/ |
D | RingBuffer.h | 38 mHead = (mHead + 1) % SIZE; in next() 42 return mBuffer[mHead]; in next() 49 T& operator[](size_t index) { return mBuffer[(mHead + index + 1) % mCount]; } 51 const T& operator[](size_t index) const { return mBuffer[(mHead + index + 1) % mCount]; } 55 mHead = -1; in clear() 60 int mHead = -1; variable
|
/frameworks/av/media/codec2/vndk/util/ |
D | C2InterfaceUtils.cpp | 834 return other != nullptr && mHead == other->mHead; in equals() 839 return Info(mHead); in get() 846 mHead.reset(); in increment() 851 : mHead(head) { } in Impl() 853 std::shared_ptr<Info::Impl> mHead; ///< current field member 929 uint32_t parentOffset = GetParentOffset(mHead); in makeLeaf() 936 mHead /* parent */, index, mHead == nullptr ? 0 : mHead->depth + 1, in makeLeaf() 937 GetParentBaseFieldOffset(mHead) + GetOffset(field), in makeLeaf() 968 : C2FieldUtilsFieldsIteratorHelper(impl->mReflector, impl->mParamSize, impl->mHead) { in C2FieldUtilsFieldsIterator() 970 if (mHead->field.type() & C2FieldDescriptor::STRUCT_FLAG) { in C2FieldUtilsFieldsIterator() [all …]
|
/frameworks/base/core/java/android/view/ |
D | Choreographer.java | 976 private CallbackRecord mHead; field in Choreographer.CallbackQueue 979 return mHead != null && mHead.dueTime <= now; in hasDueCallbacksLocked() 983 CallbackRecord callbacks = mHead; in extractDueCallbacksLocked() 998 mHead = next; in extractDueCallbacksLocked() 1005 CallbackRecord entry = mHead; in addCallbackLocked() 1007 mHead = callback; in addCallbackLocked() 1012 mHead = callback; in addCallbackLocked() 1027 for (CallbackRecord callback = mHead; callback != null;) { in removeCallbacksLocked() 1034 mHead = next; in removeCallbacksLocked()
|
/frameworks/base/packages/WallpaperCropper/src/com/android/photos/views/ |
D | TiledImageRenderer.java | 752 private Tile mHead; field in TiledImageRenderer.TileQueue 755 Tile tile = mHead; in pop() 757 mHead = tile.mNext; in pop() 767 boolean wasEmpty = mHead == null; in push() 768 tile.mNext = mHead; in push() 769 mHead = tile; in push() 774 Tile other = mHead; in contains() 785 mHead = null; in clean()
|
/frameworks/base/config/ |
D | hiddenapi-greylist-max-o.txt | 74043 Landroid/view/Choreographer$CallbackQueue;->mHead:Landroid/view/Choreographer$CallbackRecord;
|