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

1 2

  /external/deqp/framework/delibs/decpp/
dePoolArray.cpp 189 class RefCount
192 RefCount (void)
197 RefCount (int* count)
203 RefCount (const RefCount& other)
210 ~RefCount (void)
216 RefCount& operator= (const RefCount& other)
241 PoolArray<RefCount> arr (&pool);
243 RefCount counter (&count)
    [all...]
  /external/sfntly/cpp/src/sfntly/port/
refcount.h 42 // 1. Virtual inherit from RefCount interface in base class if smart pointers
102 class RefCount {
105 virtual ~RefCount() {}
123 class RefCounted : virtual public RefCount {
175 // semi-smart pointer for RefCount derived objects, similar to CComPtr
201 RefCount* p = static_cast<RefCount*>(pT);
250 RefCount* p = static_cast<RefCount*>(p_);
  /external/webrtc/webrtc/base/
callback_unittest.cc 15 #include "webrtc/base/refcount.h"
40 int RefCount() const { return count_; }
100 EXPECT_EQ(0, t.RefCount());
103 EXPECT_EQ(1, t.RefCount());
105 EXPECT_EQ(1, t.RefCount());
107 EXPECT_EQ(1, t.RefCount());
109 EXPECT_EQ(0, t.RefCount());
114 EXPECT_EQ(0, t.RefCount());
118 EXPECT_EQ(1, t.RefCount());
121 EXPECT_EQ(1, t.RefCount());
    [all...]
  /external/clang/include/clang/Rewrite/Core/
RewriteRope.h 35 unsigned RefCount;
38 void Retain() { ++RefCount; }
41 assert(RefCount > 0 && "Reference count is already zero.");
42 if (--RefCount == 0)
  /external/llvm/include/llvm/ADT/
IntrusiveRefCntPtr.h 101 mutable std::atomic<int> RefCount;
104 ThreadSafeRefCountedBase() : RefCount(0) {}
107 void Retain() const { ++RefCount; }
110 int NewRefCount = --RefCount;
  /external/clang/test/Analysis/inlining/
false-positive-suppression.cpp 7 class RefCount {
30 RefCount<ParserInputState> inputState;
  /external/llvm/lib/Analysis/
AliasAnalysisEvaluator.cpp 53 unsigned NoModRefCount, ModCount, RefCount, ModRefCount;
68 NoModRefCount = ModCount = RefCount = ModRefCount = 0;
307 ++RefCount;
333 ++RefCount;
375 unsigned ModRefSum = NoModRefCount + ModCount + RefCount + ModRefCount;
385 errs() << " " << RefCount << " ref responses ";
386 PrintPercent(RefCount, ModRefSum);
391 << ModCount * 100 / ModRefSum << "%/" << RefCount * 100 / ModRefSum
  /external/llvm/lib/CodeGen/
InterferenceCache.h 48 /// RefCount - The total number of Cursor instances referring to this Entry.
49 unsigned RefCount;
97 Entry() : PhysReg(0), Tag(0), RefCount(0), Indexes(nullptr), LIS(nullptr) {}
109 void addRef(int Delta) { RefCount += Delta; }
111 bool hasRefs() const { return RefCount > 0; }
178 // Update reference counts. Nothing happens when RefCount reaches 0, so
  /external/mesa3d/src/egl/main/
egldisplay.h 76 EGLint RefCount;
  /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/
adtgen.h 94 LONG RefCount;
rpcproxy.h 96 __LONG32 RefCount;
106 __LONG32 RefCount;
comutil.h 97 unsigned __LONG32 RefCount() const throw();
243 _COM_ASSERT(m_Data!=NULL && m_Data->RefCount()==1);
244 if(m_Data!=NULL && m_Data->RefCount()==1) {
318 inline unsigned __LONG32 _bstr_t::Data_t::RefCount() const throw() { return m_RefCount; }
ntsecpkg.h     [all...]
  /external/clang/include/clang/StaticAnalyzer/Core/PathSensitive/
CallEvent.h 129 // This should come right before RefCount, so that the two fields can be
134 mutable unsigned RefCount;
137 void Retain() const { ++RefCount; }
144 : State(state), LCtx(lctx), Origin(E), RefCount(0) {}
147 : State(state), LCtx(lctx), Origin(D), RefCount(0) {}
152 Data(Original.Data), Location(Original.Location), RefCount(0) {}
    [all...]
  /external/llvm/lib/Target/Mips/
MipsConstantIslandPass.cpp 312 unsigned RefCount;
314 : CPEMI(cpemi), CPI(cpi), RefCount(rc) {}
797 CPE->RefCount++;
    [all...]
  /external/llvm/lib/Target/ARM/
ARMConstantIslandPass.cpp 216 unsigned RefCount;
218 : CPEMI(cpemi), CPI(cpi), RefCount(rc) {}
    [all...]
  /external/mesa3d/src/mesa/main/
mtypes.h     [all...]
  /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/ddk/
ndis.h 596 UINT RefCount;
609 NDIS_RW_LOCK_REFCOUNT RefCount[MAXIMUM_PROCESSORS];
    [all...]
  /prebuilts/tools/common/m2/repository/xerces/xercesImpl/2.6.2/
xercesImpl-2.6.2.jar 
  /external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/
org.eclipse.jface_3.6.1.M20100825-0800.jar 
  /prebuilts/devtools/tools/lib/
org-eclipse-jface-3.6.2.jar 
  /prebuilts/tools/common/eclipse/
org.eclipse.jface_3.4.2.M20090107-0800.jar 
org.eclipse.jface_3.6.2.M20110210-1200.jar 
  /prebuilts/tools/common/m2/repository/com/android/external/eclipse/org-eclipse-jface/3.6.2/
org-eclipse-jface-3.6.2.jar 
  /prebuilts/tools/common/m2/repository/xerces/xercesImpl/2.11.0/
xercesImpl-2.11.0.jar 

Completed in 675 milliseconds

1 2