HomeSort by relevance Sort by last modified time
    Searched defs:RefCount (Results 1 - 25 of 32) 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/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/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/openfst/src/include/fst/
add-on.h 53 int RefCount() const { return ref_count_.count(); }
120 int RefCount() const { return ref_count_.count(); }
encode.h 175 int RefCount() const { return ref_count_.count(); }
label-reachable.h 95 int RefCount() const { return ref_count_.count(); }
symbol-table.h 155 int RefCount() const {
413 if (impl_->RefCount() > 1) {
accumulator.h 138 int RefCount() const { return ref_count_.count(); }
379 int RefCount() const { return ref_count_.count(); }
637 int RefCount() const { return ref_count_.count(); }
edit-fst.h 112 int RefCount() const { return ref_count_.count(); }
619 if (data_->RefCount() > 1) {
compact-fst.h 181 int RefCount() const { return ref_count_.count(); }
    [all...]
fst.h 664 int RefCount() const {
  /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 218 unsigned RefCount;
220 : CPEMI(cpemi), CPI(cpi), RefCount(rc) {}
789 CPE->RefCount++;
    [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 

Completed in 614 milliseconds

1 2