HomeSort by relevance Sort by last modified time
    Searched defs:refCount (Results 1 - 25 of 60) sorted by null

1 2 3

  /external/webkit/Source/JavaScriptCore/API/tests/
NodeList.h 32 unsigned refCount;
Node.h 38 unsigned refCount;
  /external/webkit/Source/ThirdParty/ANGLE/src/compiler/preprocessor/
cppstruct.c 54 static int refCount = 0;
75 refCount++;
127 if (refCount)
130 refCount--;
  /hardware/ti/omap3/omx/system/src/openmax_il/omx_core/inc/
OMX_ComponentRegistry.h 17 int refCount;
  /external/icu4c/test/threadtest/
stringtest.cpp 128 uint32_t refCount = fSourceStrings[i].refCount();
129 if (refCount != 1) {
130 fprintf(stderr, "\nFailure. SourceString Ref Count was %d, should be 1.\n", refCount);
  /external/webkit/Source/JavaScriptCore/bytecompiler/
Label.h 73 int refCount() const { return m_refCount; }
RegisterID.h 95 int refCount() const
LabelScope.h 59 int refCount() const { return m_refCount; }
  /external/webkit/Source/JavaScriptCore/dfg/
DFGGraph.cpp 49 unsigned refCount = node.refCount;
50 if (!refCount)
54 --refCount;
73 printf("% 4d:\t<%c%u:%u>\t%s(", (int)nodeIndex, mustGenerate ? '!' : ' ', refCount, node.virtualRegister, dfgOpNames[op & NodeIdMask]);
DFGNode.h 181 , refCount(0)
193 , refCount(0)
206 , refCount(0)
339 unsigned refCount;
  /external/webkit/Source/JavaScriptCore/wtf/
ThreadSafeRefCounted.h 91 return refCount() == 1;
94 int refCount() const
113 int refCount;
117 refCount = m_refCount;
119 if (refCount <= 0)
RefCounted.h 48 int refCount() const
  /frameworks/base/libs/hwui/
ResourceCache.h 43 ResourceReference() { refCount = 0; recycled = false; destroyed = false;}
45 refCount = 0; recycled = false; destroyed = false; resourceType = type;
48 int refCount;
  /external/webkit/Source/WebCore/platform/
TreeShared.h 90 int refCount() const
  /frameworks/base/media/mca/filterfw/java/android/filterfw/core/
SimpleFrameManager.java 97 int refCount = frame.decRefCount();
98 if (refCount == 0 && frame.hasNativeAllocation()) {
101 } else if (refCount < 0) {
CachedFrameManager.java 71 int refCount = frame.decRefCount();
72 if (refCount == 0 && frame.hasNativeAllocation()) {
77 } else if (refCount < 0) {
  /packages/apps/Camera/tests/src/com/android/camera/functional/
CameraTest.java 74 int refCount = 0;
76 if (c.get() != null) refCount++;
79 assertTrue(refCount != TEST_COUNT);
  /packages/apps/LegacyCamera/tests/src/com/android/camera/functional/
CameraTest.java 79 int refCount = 0;
81 if (c.get() != null) refCount++;
84 assertTrue(refCount != TEST_COUNT);
  /external/icu4c/common/
sprpimpl.h 92 int32_t refCount;
  /external/icu4c/i18n/
tznames.cpp 55 int32_t refCount;
98 if (entry->refCount <= 0 && (now - entry->lastAccess) > CACHE_EXPIRATION) {
177 cacheEntry->refCount = 1;
197 cacheEntry->refCount++;
215 U_ASSERT(fTZnamesCacheEntry->refCount > 0);
217 fTZnamesCacheEntry->refCount--;
tzfmt.cpp 322 int32_t refCount;
365 if (entry->refCount <= 0 && (now - entry->lastAccess) > CACHE_EXPIRATION) {
442 cacheEntry->refCount = 1;
462 cacheEntry->refCount++;
480 U_ASSERT(fTZfmtCacheEntry->refCount > 0);
482 fTZfmtCacheEntry->refCount--;
  /external/nist-sip/java/gov/nist/javax/sip/
EventScanner.java 50 private int refCount;
61 this.refCount++;
102 if (this.refCount > 0)
103 this.refCount--;
105 if (this.refCount == 0) {
114 * Brutally stop the event scanner. This does not wait for the refcount to
121 this.refCount = 0;
  /external/webkit/Source/JavaScriptCore/API/
JSObjectRef.cpp 488 : refCount(0)
493 unsigned refCount;
520 ++array->refCount;
526 if (--array->refCount == 0) {
  /external/clang/include/clang/StaticAnalyzer/Core/PathSensitive/
ProgramState.h 87 unsigned refCount;
  /external/mesa3d/src/talloc/
hieralloc.c 22 unsigned size, childCount, refCount;
155 ptr->refCount = 1;
232 header->refCount--;
233 if (header->refCount > 0)
287 //assert(get_header(ptr)->refCount > 0);
288 //get_header(ptr)->refCount--;
478 header->childCount, header->refCount, header->size, header->destructor, header->name);
503 data[3] += header->refCount;
530 ptr, header->size, header->childCount, header->refCount, header->name, header->parent ? header->parent + 1 : NULL);

Completed in 6571 milliseconds

1 2 3