Searched refs:mRefCount (Results 1 - 8 of 8) sorted by relevance

/external/webkit/Source/ThirdParty/ANGLE/src/libGLESv2/
H A DRefCountObject.cpp20 mRefCount = 0;
25 ASSERT(mRefCount == 0);
30 mRefCount++;
35 ASSERT(mRefCount > 0);
37 if (--mRefCount == 0)
H A DShader.cpp56 mRefCount = 0;
196 mRefCount++;
201 mRefCount--;
203 if (mRefCount == 0 && mDeleteStatus)
211 return mRefCount;
H A DRefCountObject.h39 mutable std::size_t mRefCount; member in class:gl::RefCountObject
H A DResourceManager.h72 std::size_t mRefCount; member in class:gl::ResourceManager
H A DResourceManager.cpp22 mRefCount = 1;
55 mRefCount++;
60 if (--mRefCount == 0)
H A DShader.h85 unsigned int mRefCount; // Number of program objects this shader is attached to member in class:gl::Shader
H A DProgram.h217 unsigned int mRefCount; member in class:gl::Program
H A DProgram.cpp65 mRefCount = 0;
2489 mRefCount--;
2491 if (mRefCount == 0 && mDeleteStatus)
2499 mRefCount++;
2504 return mRefCount;

Completed in 99 milliseconds