Home
last modified time | relevance | path

Searched refs:s_refCountIncrement (Results 1 – 3 of 3) sorted by relevance

/external/webkit/Source/JavaScriptCore/wtf/text/
DStringImplBase.h38 void ref() { m_refCountAndFlags += s_refCountIncrement; } in ref()
52 : m_refCountAndFlags(s_refCountIncrement | s_refCountFlagShouldReportedCost | ownership) in StringImplBase()
70 : m_refCountAndFlags(s_refCountIncrement | s_refCountInvalidForStringImpl) in StringImplBase()
80 static const unsigned s_refCountIncrement = 0x80; variable
DStringImpl.h241 …ALWAYS_INLINE void deref() { m_refCountAndFlags -= s_refCountIncrement; if (!(m_refCountAndFlags &… in deref()
242 …t { return (m_refCountAndFlags & (s_refCountMask | s_refCountFlagStatic)) == s_refCountIncrement; } in hasOneRef()
/external/webkit/Source/JavaScriptCore/runtime/
DRopeImpl.h74 m_refCountAndFlags -= s_refCountIncrement; in deref()
89 bool hasOneRef() { return (m_refCountAndFlags & s_refCountMask) == s_refCountIncrement; } in hasOneRef()