/external/webkit/Source/JavaScriptCore/wtf/ |
D | ThreadSafeRefCounted.h | 91 return refCount() == 1; in hasOneRef() 94 int refCount() const in refCount() function 113 int refCount; in derefBase() 117 refCount = m_refCount; in derefBase() 119 if (refCount <= 0) in derefBase()
|
D | CrossThreadRefCounted.h | 118 if (!m_threadId && m_refCounter.refCount() == 2) in ref() 134 if (m_threadId && m_refCounter.refCount() == 1) in deref()
|
/external/webkit/Source/ThirdParty/ANGLE/src/compiler/preprocessor/ |
D | cppstruct.c | 54 static int refCount = 0; variable 75 refCount++; in InitCPPStruct() 127 if (refCount) in FreeCPPStruct() 130 refCount--; in FreeCPPStruct()
|
/external/icu4c/test/threadtest/ |
D | stringtest.cpp | 128 uint32_t refCount = fSourceStrings[i].refCount(); in check() local 129 if (refCount != 1) { in check() 130 … fprintf(stderr, "\nFailure. SourceString Ref Count was %d, should be 1.\n", refCount); in check()
|
/external/webkit/Source/JavaScriptCore/dfg/ |
D | DFGGraph.cpp | 49 unsigned refCount = node.refCount; in dump() local 50 if (!refCount) in dump() 54 --refCount; in dump() 73 …printf("% 4d:\t<%c%u:%u>\t%s(", (int)nodeIndex, mustGenerate ? '!' : ' ', refCount, node.virtualRe… in dump()
|
D | DFGGraph.h | 74 if (!node.refCount++) in ref() 80 ASSERT(node.refCount); in deref() 82 if (!--node.refCount) in deref()
|
D | DFGNode.h | 181 , refCount(0) in op() 193 , refCount(0) in op() 206 , refCount(0) in op() 339 unsigned refCount; member
|
D | DFGJITCodeGenerator.h | 392 info.initInteger(nodeIndex, node.refCount, reg); 397 info.initJSValue(nodeIndex, node.refCount, reg, format); 407 info.initNone(nodeIndex, node.refCount); in noResult() 417 info.initCell(nodeIndex, node.refCount, reg); in cellResult() 430 info.initJSValue(nodeIndex, node.refCount, reg, format); 440 info.initDouble(nodeIndex, node.refCount, reg); in doubleResult() 446 m_generationInfo[node.virtualRegister].initConstant(nodeIndex, node.refCount); in initConstantInfo()
|
/external/webkit/Source/JavaScriptCore/API/tests/ |
D | NodeList.c | 36 nodeList->refCount = 0; in NodeList_new() 72 ++nodeList->refCount; in NodeList_ref() 77 if (--nodeList->refCount == 0) { in NodeList_deref()
|
D | Node.c | 33 node->refCount = 0; in Node_new() 78 ++node->refCount; in Node_ref() 83 if (--node->refCount == 0) in Node_deref()
|
D | NodeList.h | 32 unsigned refCount; member
|
D | Node.h | 38 unsigned refCount; member
|
/external/icu4c/i18n/ |
D | tznames.cpp | 55 int32_t refCount; member 98 if (entry->refCount <= 0 && (now - entry->lastAccess) > CACHE_EXPIRATION) { in sweepCache() 177 cacheEntry->refCount = 1; in TimeZoneNamesDelegate() 197 cacheEntry->refCount++; in TimeZoneNamesDelegate() 215 U_ASSERT(fTZnamesCacheEntry->refCount > 0); in ~TimeZoneNamesDelegate() 217 fTZnamesCacheEntry->refCount--; in ~TimeZoneNamesDelegate()
|
D | tzfmt.cpp | 322 int32_t refCount; member 365 if (entry->refCount <= 0 && (now - entry->lastAccess) > CACHE_EXPIRATION) { in sweepCache() 442 cacheEntry->refCount = 1; in TimeZoneFormatDelegate() 462 cacheEntry->refCount++; in TimeZoneFormatDelegate() 480 U_ASSERT(fTZfmtCacheEntry->refCount > 0); in ~TimeZoneFormatDelegate() 482 fTZfmtCacheEntry->refCount--; in ~TimeZoneFormatDelegate()
|
/external/nist-sip/java/gov/nist/javax/sip/ |
D | EventScanner.java | 50 private int refCount; field in EventScanner 61 this.refCount++; in incrementRefcount() 102 if (this.refCount > 0) in stop() 103 this.refCount--; in stop() 105 if (this.refCount == 0) { in stop() 121 this.refCount = 0; in forceStop()
|
/external/webkit/Source/WebKit2/WebProcess/WebCoreSupport/win/ |
D | WebDragSource.cpp | 64 return refCount(); in AddRef() 70 return refCount(); in Release()
|
/external/mesa3d/src/talloc/ |
D | hieralloc.c | 22 unsigned size, childCount, refCount; member 155 ptr->refCount = 1; in hieralloc_allocate() 232 header->refCount--; in hieralloc_free() 233 if (header->refCount > 0) in hieralloc_free() 478 header->childCount, header->refCount, header->size, header->destructor, header->name); in _hieralloc_report() 503 data[3] += header->refCount; in _hieralloc_report_brief() 530 …ptr, header->size, header->childCount, header->refCount, header->name, header->parent ? header->pa… in hieralloc_report_lineage()
|
/external/webkit/Source/WebCore/storage/ |
D | StorageMap.cpp | 109 if (refCount() > 1) { in setItem() 149 if (refCount() > 1) { in removeItem()
|
/external/icu4c/common/ |
D | usprep.cpp | 157 if ((noRefCount== FALSE && profile->refCount == 0) || in usprep_internal_flushCache() 335 profile->refCount++; in usprep_getProfile() 377 profile->refCount++; in usprep_getProfile() 391 profile->refCount = 1; in usprep_getProfile() 435 if(profile->refCount > 0){ in usprep_close() 436 profile->refCount--; in usprep_close()
|
D | sprpimpl.h | 92 int32_t refCount; member
|
/external/webkit/Source/JavaScriptCore/bytecompiler/ |
D | BytecodeGenerator.cpp | 646 while (m_calleeRegisters.size() && !m_calleeRegisters.last().refCount()) in newTemporary() 665 while (m_labelScopes.size() && !m_labelScopes.last().refCount()) in newLabelScope() 677 while (m_labels.size() && !m_labels.last().refCount()) in newLabel() 765 if (cond->index() == dstIndex && cond->isTemporary() && !cond->refCount()) { in emitJumpIfTrue() 782 if (cond->index() == dstIndex && cond->isTemporary() && !cond->refCount()) { in emitJumpIfTrue() 798 if (cond->index() == dstIndex && cond->isTemporary() && !cond->refCount()) { in emitJumpIfTrue() 813 if (cond->index() == dstIndex && cond->isTemporary() && !cond->refCount()) { in emitJumpIfTrue() 841 if (cond->index() == dstIndex && cond->isTemporary() && !cond->refCount()) { in emitJumpIfFalse() 858 if (cond->index() == dstIndex && cond->isTemporary() && !cond->refCount()) { in emitJumpIfFalse() 874 if (cond->index() == dstIndex && cond->isTemporary() && !cond->refCount()) { in emitJumpIfFalse() [all …]
|
D | RegisterID.h | 95 int refCount() const in refCount() function
|
D | LabelScope.h | 59 int refCount() const { return m_refCount; } in refCount() function
|
D | Label.h | 73 int refCount() const { return m_refCount; } in refCount() function
|
/external/webkit/Source/WebCore/fileapi/ |
D | FileThread.cpp | 107 … and clear the ref to FileThread %p, which currently has %i ref(s)", m_threadID, this, refCount()); in runLoop()
|