OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:s_refCountIncrement
(Results
1 - 3
of
3
) sorted by null
/external/webkit/Source/JavaScriptCore/wtf/text/
StringImplBase.h
38
void ref() { m_refCountAndFlags +=
s_refCountIncrement
; }
52
: m_refCountAndFlags(
s_refCountIncrement
| s_refCountFlagShouldReportedCost | ownership)
70
: m_refCountAndFlags(
s_refCountIncrement
| s_refCountInvalidForStringImpl)
80
static const unsigned
s_refCountIncrement
= 0x80;
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
; }
/external/webkit/Source/JavaScriptCore/runtime/
RopeImpl.h
74
m_refCountAndFlags -=
s_refCountIncrement
;
89
bool hasOneRef() { return (m_refCountAndFlags & s_refCountMask) ==
s_refCountIncrement
; }
Completed in 2280 milliseconds