Searched refs:RefCount (Results 1 - 25 of 27) sorted by relevance

12

/external/mesa3d/src/mesa/main/
H A Dshaderobj.c22 shader->RefCount = 1;
31 if (shader->RefCount > 1) {
H A Dmtypes.h1284 // GLint RefCount; /**< reference count */
1498 // GLint RefCount;
1564 // GLint RefCount;
1768 GLint RefCount; member in struct:gl_program
1970 GLint RefCount; member in struct:ati_fragment_shader
2039 GLint RefCount; /**< Reference count */ member in struct:gl_sync_object
2066 GLint RefCount; /**< Reference count */ member in struct:gl_shader
2099 GLint RefCount; /**< Reference count */ member in struct:gl_shader_program
2233 GLint RefCount; member in struct:gl_transform_feedback_object
2278 // GLint RefCount; /**< Referenc
[all...]
/external/llvm/include/llvm/Bitcode/
H A DBitCodes.h165 unsigned char RefCount; // Number of things using this. member in class:llvm::BitCodeAbbrev
168 BitCodeAbbrev() : RefCount(1) {}
170 void addRef() { ++RefCount; }
171 void dropRef() { if (--RefCount == 0) delete this; }
/external/llvm/lib/CodeGen/
H A DInterferenceCache.h48 /// RefCount - The total number of Cursor instances referring to this Entry.
49 unsigned RefCount; member in class:llvm::InterferenceCache::Entry
96 Entry() : PhysReg(0), Tag(0), RefCount(0), Indexes(0), LIS(0) {}
108 void addRef(int Delta) { RefCount += Delta; }
110 bool hasRefs() const { return RefCount > 0; }
168 // Update reference counts. Nothing happens when RefCount reaches 0, so
/external/clang/include/clang/Rewrite/Core/
H A DRewriteRope.h32 unsigned RefCount; member in struct:clang::RopeRefCountString
36 ++RefCount;
40 if (--RefCount == 0)
/external/expat/amiga/
H A Dexpat_lib.c159 ++Self->Data.RefCount;
160 return Self->Data.RefCount;
166 --Self->Data.RefCount;
167 return Self->Data.RefCount;
H A Dexpat_vectors.c174 return ++Self->Data.RefCount;
179 return --Self->Data.RefCount;
/external/llvm/include/llvm/Analysis/
H A DAliasSetTracker.h117 // RefCount - Number of nodes pointing to this AliasSet plus the number of
119 unsigned RefCount : 28;
143 void addRef() { ++RefCount; }
145 assert(RefCount >= 1 && "Invalid reference count detected!");
146 if (--RefCount == 0)
225 AliasSet() : PtrList(0), PtrListEnd(&PtrList), Forward(0), RefCount(0),
/external/llvm/lib/VMCore/
H A DAttributes.cpp125 sys::cas_flag RefCount; member in class:llvm::AttributeListImpl
136 RefCount = 0;
141 ++RefCount;
147 sys::cas_flag new_val = --RefCount;
/external/clang/include/clang/StaticAnalyzer/Core/PathSensitive/
H A DCallEvent.h131 // This should come right before RefCount, so that the two fields can be
136 mutable unsigned RefCount; member in class:clang::ento::CallEvent
139 void Retain() const { ++RefCount; }
146 : State(state), LCtx(lctx), Origin(E), RefCount(0) {}
149 : State(state), LCtx(lctx), Origin(D), RefCount(0) {}
154 Data(Original.Data), Location(Original.Location), RefCount(0) {}
958 assert(RefCount > 0 && "Reference count is already zero.");
959 --RefCount;
961 if (RefCount > 0)
/external/clang/lib/Rewrite/Core/
H A DRewriteRope.cpp787 Res->RefCount = 0;
796 if (AllocBuffer && --AllocBuffer->RefCount == 0)
801 AllocBuffer->RefCount = 0;
/external/llvm/lib/Analysis/
H A DAliasSetTracker.cpp91 assert(RefCount == 0 && "Cannot remove non-dead alias set from tracker!");
419 AS.RefCount -= NumRefs;
420 if (AS.RefCount == 0)
553 OS << " AliasSet[" << (const void*)this << ", " << RefCount << "] ";
/external/openfst/src/include/fst/
H A Dadd-on.h53 int RefCount() const { return ref_count_.count(); } function in class:fst::NullAddOn
120 int RefCount() const { return ref_count_.count(); } function in class:fst::AddOnPair
H A Dsymbol-table.h147 int RefCount() const { function in class:fst::SymbolTableImpl
395 if (impl_->RefCount() > 1) {
H A Daccumulator.h138 int RefCount() const { return ref_count_.count(); } function in class:fst::FastLogAccumulatorData
379 int RefCount() const { return ref_count_.count(); } function in class:fst::CacheLogAccumulatorData
637 int RefCount() const { return ref_count_.count(); } function in class:fst::ReplaceAccumulatorData
H A Dmutable-fst.h360 if (GetImpl()->RefCount() > 1)
H A Dedit-fst.h108 int RefCount() const { return ref_count_.count(); } function in class:fst::EditFstData
614 if (data_->RefCount() > 1) {
H A Dencode.h175 int RefCount() const { return ref_count_.count(); } function in class:fst::EncodeTable
H A Dlabel-reachable.h95 int RefCount() const { return ref_count_.count(); } function in class:fst::LabelReachableData
H A Dfst.h658 int RefCount() const { function in class:fst::FstImpl
H A Dcompact-fst.h172 int RefCount() const { return ref_count_.count(); } function in class:fst::CompactFstData
/external/mesa3d/src/pixelflinger2/
H A Dshader.cpp154 assert(1 == shader->RefCount);
252 shader->RefCount++;
607 shader->RefCount--;
608 if (1 == shader->RefCount && shader->DeletePending)
/external/llvm/lib/Target/ARM/
H A DARMConstantIslandPass.cpp217 unsigned RefCount; member in struct:__anon8834::ARMConstantIslands::CPEntry
219 : CPEMI(cpemi), CPI(cpi), RefCount(rc) {}
785 CPE->RefCount++;
1102 if (--CPE->RefCount == 0) {
1152 CPEs[i].RefCount++;
1492 if (CPEs[j].RefCount == 0 && CPEs[j].CPEMI) {
/external/srec/tools/thirdparty/OpenFst/fst/lib/
H A Dfst.h449 int RefCount() const { return ref_count_; } function in class:fst::FstImpl
H A Dvector-fst.h654 if (impl_->RefCount() > 1) {

Completed in 418 milliseconds

12