Home
last modified time | relevance | path

Searched refs:mCount (Results 1 – 8 of 8) sorted by relevance

/system/core/libutils/
DVectorImpl.cpp47 : mStorage(0), mCount(0), mFlags(flags), mItemSize(itemSize) in VectorImpl()
52 : mStorage(rhs.mStorage), mCount(rhs.mCount), in VectorImpl()
62 ALOGW_IF(mCount, in ~VectorImpl()
65 this, (int)(mCount*mItemSize)); in ~VectorImpl()
75 if (rhs.mCount) { in operator =()
77 mCount = rhs.mCount; in operator =()
81 mCount = 0; in operator =()
100 _do_copy(editable->data(), mStorage, mCount); in editArrayImpl()
298 mCount = 0; in finish_vector()
303 _shrink(0, mCount); in clear()
[all …]
/system/core/logd/
DLogTimes.cpp39 mCount(0), in LogTimeEntry()
200 if (me->mCount == 0) { in FilterFirstPass()
206 ++me->mCount; in FilterFirstPass()
235 if (me->mNonBlock && me->mTail && (me->mIndex >= me->mCount)) { in FilterSecondPass()
257 if ((me->mCount > me->mTail) && (me->mIndex <= (me->mCount - me->mTail))) { in FilterSecondPass()
DLogTimes.h47 unsigned long mCount; variable
/system/core/libpixelflinger/codeflinger/
DCodeCache.cpp104 : mCount(1), mSize(0) in Assembly()
120 android_atomic_inc(&mCount); in incStrong()
125 if (android_atomic_dec(&mCount) == 1) { in decStrong()
DGGLAssembler.h134 : mRegFile(regFile), mGen(gen), mRegList(reglist), mCount(0) in Spill()
149 mCount = count; in Spill()
154 if (mCount == 1) { in ~Spill()
167 int mCount; variable
DCodeCache.h72 mutable int32_t mCount;
/system/core/include/utils/
DVectorImpl.h63 inline size_t size() const { return mCount; } in size()
64 inline bool isEmpty() const { return mCount == 0; } in isEmpty()
123 size_t mCount; // number of items variable
DRefBase.h177 inline LightRefBase() : mCount(0) { } in LightRefBase()
179 mCount.fetch_add(1, std::memory_order_relaxed); in incStrong()
182 if (mCount.fetch_sub(1, std::memory_order_release) == 1) { in decStrong()
189 return mCount.load(std::memory_order_relaxed); in getStrongCount()
204 mutable std::atomic<int32_t> mCount;