Home
last modified time | relevance | path

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

/system/core/libutils/
DVectorImpl.cpp46 : mStorage(0), mCount(0), mFlags(flags), mItemSize(itemSize) in VectorImpl()
51 : mStorage(rhs.mStorage), mCount(rhs.mCount), in VectorImpl()
61 ALOGW_IF(mCount, in ~VectorImpl()
64 this, (int)(mCount*mItemSize)); in ~VectorImpl()
74 if (rhs.mCount) { in operator =()
76 mCount = rhs.mCount; in operator =()
80 mCount = 0; in operator =()
99 _do_copy(editable->data(), mStorage, mCount); in editArrayImpl()
294 mCount = 0; in finish_vector()
299 _shrink(0, mCount); in clear()
[all …]
/system/core/logd/
DLogTimes.cpp38 mCount(0), in LogTimeEntry()
178 if (me->mCount == 0) { in FilterFirstPass()
184 ++me->mCount; in FilterFirstPass()
213 if (me->mNonBlock && me->mTail && (me->mIndex >= me->mCount)) { in FilterSecondPass()
235 if ((me->mCount > me->mTail) && (me->mIndex <= (me->mCount - me->mTail))) { in FilterSecondPass()
DLogTimes.h46 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 android_atomic_inc(&mCount); in incStrong()
182 if (android_atomic_dec(&mCount) == 1) { in decStrong()
188 return mCount; in getStrongCount()
203 mutable volatile int32_t mCount;