OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:s_refCountMask
(Results
1 - 3
of
3
) sorted by null
/external/webkit/Source/JavaScriptCore/runtime/
RopeImpl.h
75
if (!(m_refCountAndFlags &
s_refCountMask
))
89
bool hasOneRef() { return (m_refCountAndFlags &
s_refCountMask
) == s_refCountIncrement; }
/external/webkit/Source/JavaScriptCore/wtf/text/
StringImplBase.h
79
static const unsigned
s_refCountMask
= 0xFFFFFF80;
StringImpl.h
241
ALWAYS_INLINE void deref() { m_refCountAndFlags -= s_refCountIncrement; if (!(m_refCountAndFlags & (
s_refCountMask
| s_refCountFlagStatic))) delete this; }
242
ALWAYS_INLINE bool hasOneRef() const { return (m_refCountAndFlags & (
s_refCountMask
| s_refCountFlagStatic)) == s_refCountIncrement; }
Completed in 292 milliseconds