Searched defs:RefCount (Results 1 - 22 of 22) sorted by path

/external/chromium_org/cc/layers/
H A Ddelegated_frame_resource_collection.h56 struct RefCount { struct in class:cc::DelegatedFrameResourceCollection
60 typedef base::hash_map<unsigned, RefCount> ResourceIdRefCountMap;
/external/chromium_org/native_client_sdk/src/libraries/sdk_util/
H A Dref_object.h35 * RefCount
37 * RefCount returns an instantaneous snapshot of the RefCount, which may
43 int RefCount() const { return ref_count_; } function in class:sdk_util::RefObject
/external/chromium_org/ppapi/proxy/
H A Dproxy_completion_callback_factory.h20 class RefCount { class in class:ppapi::proxy::ProxyNonThreadSafeThreadTraits
22 RefCount() : ref_(0) { function in class:ppapi::proxy::ProxyNonThreadSafeThreadTraits::RefCount
28 ~RefCount() {
/external/chromium_org/ppapi/utility/
H A Dcompletion_callback_factory_thread_traits.h39 class RefCount { class in class:pp::ThreadSafeThreadTraits
43 RefCount() : ref_(0) { function in class:pp::ThreadSafeThreadTraits::RefCount
81 class RefCount { class in class:pp::NonThreadSafeThreadTraits
85 RefCount() : ref_(0) { function in class:pp::NonThreadSafeThreadTraits::RefCount
92 ~RefCount() {
/external/chromium_org/third_party/mesa/src/src/egl/main/
H A Degldisplay.h76 EGLint RefCount; member in struct:_egl_resource
/external/chromium_org/third_party/mesa/src/src/mesa/main/
H A Dmtypes.h1240 GLint RefCount; member in struct:gl_sampler_object
1266 GLint RefCount; /**< reference count */ member in struct:gl_texture_object
1509 GLint RefCount; member in struct:gl_buffer_object
1576 GLint RefCount; member in struct:gl_array_object
1807 GLint RefCount; member in struct:gl_transform_feedback_object
1931 GLint RefCount; member in struct:gl_program
2144 GLint RefCount; member in struct:ati_fragment_shader
2189 GLint RefCount; /**< Reference count */ member in struct:gl_shader
2288 GLint RefCount; /**< Reference count */ member in struct:gl_shader_program
2528 GLint RefCount; /**< Referenc member in struct:gl_sync_object
2544 GLint RefCount; /**< Reference count */ member in struct:gl_shared_state
2610 GLint RefCount; member in struct:gl_renderbuffer
2675 GLint RefCount; member in struct:gl_framebuffer
[all...]
/external/chromium_org/third_party/sfntly/cpp/src/sfntly/port/
H A Drefcount.h42 // 1. Virtual inherit from RefCount interface in base class if smart pointers
102 class RefCount { class in namespace:sfntly
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/
H A DRewriteRope.h34 unsigned RefCount; member in struct:clang::RopeRefCountString
38 ++RefCount;
42 if (--RefCount == 0)
/external/clang/include/clang/StaticAnalyzer/Core/PathSensitive/
H A DCallEvent.h129 // This should come right before RefCount, so that the two fields can be
134 mutable unsigned RefCount; member in class:clang::ento::CallEvent
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) {}
1005 assert(RefCount > 0 && "Reference count is already zero.");
1006 --RefCount;
1008 if (RefCount > 0)
/external/clang/test/Analysis/inlining/
H A Dfalse-positive-suppression.cpp7 class RefCount { class in namespace:rdar12676053
30 RefCount<ParserInputState> inputState;
/external/deqp/framework/delibs/decpp/
H A DdePoolArray.cpp189 class RefCount class in namespace:de::__anon18908
192 RefCount (void) function in class:de::__anon18908::RefCount
197 RefCount (int* count) function in class:de::__anon18908::RefCount
203 RefCount (const RefCount& other) function in class:de::__anon18908::RefCount
210 ~RefCount (void)
216 RefCount& operator= (const RefCount& other)
241 PoolArray<RefCount> arr (&pool);
243 RefCount counte
[all...]
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/
H A Dorg.eclipse.jface_3.6.1.M20100825-0800.jarMETA-INF/MANIFEST.MF META-INF/ECLIPSEF.SF META-INF/ECLIPSEF.RSA META ...
/external/jdiff/
H A Dxerces.jarMETA-INF/ META-INF/MANIFEST.MF META-INF/services/ org/ org/apache/ org/apache/html/ ...
/external/llvm/include/llvm/ADT/
H A DIntrusiveRefCntPtr.h102 mutable std::atomic<int> RefCount; member in class:llvm::ThreadSafeRefCountedBase
105 ThreadSafeRefCountedBase() : RefCount(0) {}
108 void Retain() const { ++RefCount; }
111 int NewRefCount = --RefCount;
/external/llvm/include/llvm/Bitcode/
H A DBitCodes.h166 unsigned char RefCount; // Number of things using this. member in class:llvm::BitCodeAbbrev
169 BitCodeAbbrev() : RefCount(1) {}
171 void addRef() { ++RefCount; }
172 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
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/llvm/lib/Target/ARM/
H A DARMConstantIslandPass.cpp218 unsigned RefCount; member in struct:__anon25129::ARMConstantIslands::CPEntry
220 : CPEMI(cpemi), CPI(cpi), RefCount(rc) {}
787 CPE->RefCount++;
1104 if (--CPE->RefCount == 0) {
1154 CPEs[i].RefCount++;
1493 if (CPEs[j].RefCount == 0 && CPEs[j].CPEMI) {
/external/llvm/lib/Target/Mips/
H A DMipsConstantIslandPass.cpp311 unsigned RefCount; member in struct:__anon25210::MipsConstantIslands::CPEntry
313 : CPEMI(cpemi), CPI(cpi), RefCount(rc) {}
801 CPE->RefCount++;
1066 if (--CPE->RefCount == 0) {
1116 CPEs[i].RefCount++;
1172 CPEs[i].RefCount++;
1487 if (CPEs[j].RefCount == 0 && CPEs[j].CPEMI) {
/external/mesa3d/src/egl/main/
H A Degldisplay.h76 EGLint RefCount; member in struct:_egl_resource
/external/mesa3d/src/mesa/main/
H A Dmtypes.h1240 GLint RefCount; member in struct:gl_sampler_object
1266 GLint RefCount; /**< reference count */ member in struct:gl_texture_object
1509 GLint RefCount; member in struct:gl_buffer_object
1576 GLint RefCount; member in struct:gl_array_object
1807 GLint RefCount; member in struct:gl_transform_feedback_object
1931 GLint RefCount; member in struct:gl_program
2144 GLint RefCount; member in struct:ati_fragment_shader
2189 GLint RefCount; /**< Reference count */ member in struct:gl_shader
2288 GLint RefCount; /**< Reference count */ member in struct:gl_shader_program
2528 GLint RefCount; /**< Referenc member in struct:gl_sync_object
2544 GLint RefCount; /**< Reference count */ member in struct:gl_shared_state
2610 GLint RefCount; member in struct:gl_renderbuffer
2675 GLint RefCount; member in struct:gl_framebuffer
[all...]
/external/sfntly/cpp/src/sfntly/port/
H A Drefcount.h42 // 1. Virtual inherit from RefCount interface in base class if smart pointers
102 class RefCount { class in namespace:sfntly
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/srec/tools/thirdparty/OpenFst/fst/lib/
H A Dfst.h449 int RefCount() const { return ref_count_; } function in class:fst::FstImpl

Completed in 944 milliseconds