Searched refs:decrement (Results 26 - 50 of 103) sorted by path

12345

/external/chromium_org/third_party/WebKit/Source/wtf/
H A DAtomics.h61 ALWAYS_INLINE int atomicSubtract(int volatile* addend, int decrement) argument
63 return InterlockedExchangeAdd(reinterpret_cast<long volatile*>(addend), static_cast<long>(-decrement)) - decrement;
90 ALWAYS_INLINE int atomicSubtract(int volatile* addend, int decrement) { return __sync_sub_and_fetch(addend, decrement); }
H A DDeque.h146 void decrement();
186 Iterator& operator--() { Base::decrement(); return *this; }
219 Iterator& operator--() { Base::decrement(); return *this; }
491 inline void DequeIteratorBase<T, inlineCapacity, Allocator>::decrement()
H A DRefCountedLeakCounter.cpp41 void RefCountedLeakCounter::decrement() { } function in class:WTF::RefCountedLeakCounter
89 void RefCountedLeakCounter::decrement()
H A DRefCountedLeakCounter.h37 void decrement();
/external/chromium_org/third_party/WebKit/public/web/
H A DWebAXObject.h173 BLINK_EXPORT bool decrement() const;
/external/chromium_org/third_party/android_platform/webview/
H A Dframeworks.jarMETA-INF/ META-INF/MANIFEST.MF android/ android/location/ android/location/Address$1.class ...
/external/chromium_org/third_party/checkstyle/
H A Dcheckstyle-5.7-all.jarMETA-INF/MANIFEST.MF META-INF/ checkstyle_packages.xml checkstylecompilation.properties checkstyletask.properties com/ ...
/external/chromium_org/third_party/closure_compiler/compiler/
H A Dcompiler.jarMETA-INF/ META-INF/MANIFEST.MF com/ com/google/ com/google/debugging/ com/google/debugging/sourcemap/ ...
/external/chromium_org/third_party/jsoncpp/overrides/include/json/
H A Dvalue.h744 static void decrement( IteratorState &iterator );
812 static void decrement( IteratorState &iterator );
963 void decrement();
1028 decrement();
1089 decrement();
/external/chromium_org/third_party/libvpx/source/libvpx/vp8/common/arm/armv6/
H A Dvp8_sad16x16_armv6.asm85 subs r5, r5, #1 ; decrement loop counter
/external/chromium_org/third_party/libvpx/source/libvpx/vp8/common/x86/
H A Dpostproc_sse2.asm218 dec rcx ;decrement count
H A Dsubpixel_mmx.asm105 dec rcx ; decrement count
193 dec rcx ; decrement count
H A Dsubpixel_sse2.asm399 dec rcx ; decrement count
514 dec rcx ; decrement count
886 dec rcx ; decrement count
/external/chromium_org/third_party/libvpx/source/libvpx/vp8/encoder/arm/armv6/
H A Dvp8_subtract_armv6.asm55 subs r9, r9, #1 ; decrement loop counter
/external/chromium_org/third_party/libvpx/source/libvpx/vp9/common/x86/
H A Dvp9_postproc_sse2.asm233 dec rcx ; decrement count
/external/chromium_org/third_party/polymer/components-chromium/paper-slider/
H A Dpaper-slider-extracted.js185 decrement: function() {
195 this.decrement();
/external/chromium_org/third_party/skia/experimental/Intersection/
H A DSimplify.cpp1828 // set spans from start to end to decrement by one
1855 bool decrement = test->fWindValue && oTest->fWindValue && !binary;
1861 if (decrement) {
1877 if (decrement) {
1979 // set spans from start to end to increment the greater by one and decrement
/external/chromium_org/third_party/skia/src/pathops/
H A DSkOpSegment.cpp674 // set spans from start to end to decrement by one
718 bool decrement, track, bigger; local
725 decrement = test->fWindValue && oTest->fWindValue;
733 if (decrement) {
749 if (decrement) {
781 if (decrement) {
1107 bool decrement = baseWind && oBaseWind; local
1111 if (decrement) {
1123 if (decrement) {
1272 // set spans from start to end to increment the greater by one and decrement
[all...]
/external/deqp/executor/
H A DxeCallQueue.cpp58 m_callSem.decrement();
/external/deqp/framework/common/
H A DtcuThreadUtil.cpp72 m_waiters.decrement();
/external/deqp/framework/delibs/decpp/
H A DdeSemaphore.hpp49 void decrement (void) throw();
65 * negative (there is a thread waiting in decrement) the waiting thread
79 * (only -1 is possible) decrement() will block until the value is again 0
82 * If there is an another thread waiting in decrement(), the current thread
85 inline void Semaphore::decrement (void) throw() function in class:de::Semaphore
91 * \brief Try to decrement semaphore value.
H A DdeThreadSafeRingBuffer.hpp97 m_empty.decrement();
122 m_fill.decrement();
/external/deqp/framework/platform/android/
H A DtcuAndroidRenderActivity.cpp126 waitSem.decrement();
/external/deqp/modules/egl/
H A DteglColorClearCase.cpp258 packetIter->wait->decrement();
350 semaphores.back()->decrement();
H A DteglMultiThreadTests.cpp269 m_barrierSemaphore2.decrement();
274 m_barrierSemaphore1.decrement();
284 m_barrierSemaphore1.decrement();
289 m_barrierSemaphore2.decrement();

Completed in 618 milliseconds

12345