HomeSort by relevance Sort by last modified time
    Searched refs:referenceCount (Results 1 - 25 of 70) sorted by null

1 2 3

  /external/swiftshader/src/D3D8/
Unknown.cpp 25 referenceCount = 0;
31 ASSERT(referenceCount == 0);
52 return InterlockedIncrement(&referenceCount);
57 int current = referenceCount;
59 if(referenceCount > 0)
61 current = InterlockedDecrement(&referenceCount);
64 if(referenceCount == 0 && bindCount == 0)
83 if(referenceCount == 0 && bindCount == 0)
Unknown.hpp 39 volatile long referenceCount;
  /external/swiftshader/src/D3D9/
Unknown.cpp 23 referenceCount = 0;
29 ASSERT(referenceCount == 0);
50 return InterlockedIncrement(&referenceCount);
55 int current = referenceCount;
57 if(referenceCount > 0)
59 current = InterlockedDecrement(&referenceCount);
62 if(referenceCount == 0 && bindCount == 0)
81 if(referenceCount == 0 && bindCount == 0)
Unknown.hpp 39 volatile long referenceCount;
  /external/swiftshader/src/OpenGL/common/
Object.cpp 32 referenceCount = 0;
42 ASSERT(referenceCount == 0);
53 sw::atomicIncrement(&referenceCount);
66 ASSERT(referenceCount > 0);
68 if(referenceCount > 0)
70 return sw::atomicDecrement(&referenceCount);
78 referenceCount = 0;
Object.hpp 42 return referenceCount == 1;
51 volatile int referenceCount;
  /external/libcxxabi/src/
cxa_exception.hpp 35 size_t referenceCount;
63 size_t referenceCount;
71 // primaryException instead of referenceCount.
cxa_exception.cpp 215 exception_header->referenceCount = 1; // This is a newly allocated exception, no need for thread safety.
430 static_assert(__builtin_offsetof(__cxa_exception, referenceCount) ==
481 // Destroy the primary exception only if its referenceCount goes to 0
567 If thrown_object is not null, atomically increment the referenceCount field
578 __sync_add_and_fetch(&exception_header->referenceCount, 1);
583 If thrown_object is not null, atomically decrement the referenceCount field
585 by thrown_object. If the referenceCount drops to zero, destroy and
595 if (__sync_sub_and_fetch(&exception_header->referenceCount, size_t(1)) == 0)
606 caughtExceptions stack. Atomically increment the exception's referenceCount.
636 stored in exc is called. Otherwise the referenceCount stored in th
    [all...]
  /prebuilts/ndk/r11/sources/cxx-stl/llvm-libc++abi/libcxxabi/src/
cxa_exception.hpp 35 size_t referenceCount;
63 size_t referenceCount;
71 // primaryException instead of referenceCount.
cxa_exception.cpp 233 exception_header->referenceCount = 1; // This is a newly allocated exception, no need for thread safety.
451 static_assert(offsetof(__cxa_exception, referenceCount) ==
501 // Destroy the primary exception only if its referenceCount goes to 0
590 If thrown_object is not null, atomically increment the referenceCount field
602 __sync_add_and_fetch(&exception_header->referenceCount, 1);
607 If thrown_object is not null, atomically decrement the referenceCount field
609 by thrown_object. If the referenceCount drops to zero, destroy and
620 if (__sync_sub_and_fetch(&exception_header->referenceCount, size_t(1)) == 0)
631 caughtExceptions stack. Atomically increment the exception's referenceCount.
663 stored in exc is called. Otherwise the referenceCount stored in th
    [all...]
  /prebuilts/ndk/r13/sources/cxx-stl/llvm-libc++abi/src/
cxa_exception.hpp 35 size_t referenceCount;
63 size_t referenceCount;
71 // primaryException instead of referenceCount.
cxa_exception.cpp 231 exception_header->referenceCount = 1; // This is a newly allocated exception, no need for thread safety.
446 static_assert(__builtin_offsetof(__cxa_exception, referenceCount) ==
497 // Destroy the primary exception only if its referenceCount goes to 0
583 If thrown_object is not null, atomically increment the referenceCount field
594 __sync_add_and_fetch(&exception_header->referenceCount, 1);
599 If thrown_object is not null, atomically decrement the referenceCount field
601 by thrown_object. If the referenceCount drops to zero, destroy and
611 if (__sync_sub_and_fetch(&exception_header->referenceCount, size_t(1)) == 0)
622 caughtExceptions stack. Atomically increment the exception's referenceCount.
652 stored in exc is called. Otherwise the referenceCount stored in th
    [all...]
  /frameworks/base/services/accessibility/java/com/android/server/accessibility/
KeyEventDispatcher.java 141 pendingKeyEvent.referenceCount++;
227 pendingEvent.referenceCount = 0;
257 if (--pendingEvent.referenceCount > 0) {
285 * The referenceCount optimizes the process of determining the number of services
289 int referenceCount;
  /external/apache-commons-math/src/main/java/org/apache/commons/math/util/
OpenIntToDoubleHashMap.java 487 private final int referenceCount;
501 referenceCount = count;
529 if (referenceCount != count) {
546 if (referenceCount != count) {
563 if (referenceCount != count) {
OpenIntToFieldHashMap.java 499 private final int referenceCount;
513 referenceCount = count;
541 if (referenceCount != count) {
558 if (referenceCount != count) {
575 if (referenceCount != count) {
  /external/deqp/external/vulkancts/framework/vulkan/
vkBinaryRegistry.hpp 241 size_t referenceCount;
245 , referenceCount(referenceCount_)
250 , referenceCount(0)
vkBinaryRegistry.cpp 447 // \note referenceCount is left to 0 and will only be incremented
464 m_binaries[index].referenceCount += 1;
496 DE_ASSERT(m_binaries[index].referenceCount == 0);
499 // \note referenceCount is not incremented here
525 if (slot.referenceCount > 0)
  /external/swiftshader/src/OpenGL/libGL/
Image.cpp 44 referenceCount = 1;
51 referenceCount = 1;
56 ASSERT(referenceCount == 0);
121 sw::atomicIncrement(&referenceCount);
131 if(referenceCount > 0)
133 sw::atomicDecrement(&referenceCount);
136 if(referenceCount == 0)
Image.hpp 93 volatile int referenceCount;
Program.h 200 unsigned int referenceCount;
  /prebuilts/ndk/r11/sources/cxx-stl/gabi++/src/
cxxabi_defines.h 279 size_t referenceCount;
cxxabi.cc 431 if (__sync_sub_and_fetch(&header->referenceCount, 1) == 0)
442 __sync_add_and_fetch(&header->referenceCount, 1);
  /prebuilts/ndk/r13/sources/cxx-stl/gabi++/src/
cxxabi_defines.h 279 size_t referenceCount;
cxxabi.cc 431 if (__sync_sub_and_fetch(&header->referenceCount, 1) == 0)
442 __sync_add_and_fetch(&header->referenceCount, 1);
  /frameworks/av/services/camera/libcameraservice/device3/
Camera3StreamSplitter.cpp 395 size_t referenceCount = mBuffers[id]->decrementReferenceCountLocked();
398 if (referenceCount > 0) {

Completed in 691 milliseconds

1 2 3