Home
last modified time | relevance | path

Searched refs:lock_count (Results 1 – 10 of 10) sorted by relevance

/external/libcxx/test/std/thread/thread.mutex/thread.lock/thread.lock.unique/thread.lock.unique.mod/
Drelease.pass.cpp23 static int lock_count; member
25 void lock() {++lock_count;} in lock()
29 int mutex::lock_count = 0; member in mutex
39 assert(mutex::lock_count == 1); in main()
44 assert(mutex::lock_count == 1); in main()
/external/libcxx/test/std/thread/thread.mutex/thread.lock/thread.lock.shared/thread.lock.shared.mod/
Drelease.pass.cpp24 static int lock_count; member
26 void lock_shared() {++lock_count;} in lock_shared()
30 int mutex::lock_count = 0; member in mutex
40 assert(mutex::lock_count == 1); in main()
45 assert(mutex::lock_count == 1); in main()
/external/webrtc/webrtc/base/
Dsigslot_unittest.cc113 int lock_count() { return lock_count_; } in lock_count() function in multi_threaded_local_fake
145 int SlotLockCount() { return mt_receiver_.lock_count(); } in SlotLockCount()
147 int SignalLockCount() { return SignalMTLoopback.lock_count(); } in SignalLockCount()
222 const int lock_count = SignalLockCount(); in TEST_F() local
225 EXPECT_EQ(lock_count + 1, SignalLockCount()); in TEST_F()
/external/mesa3d/src/gallium/state_trackers/nine/
Dvolume9.c81 This->lock_count = 0; in NineVolume9_ctor()
264 user_assert(This->lock_count == 0, D3DERR_INVALIDCALL); in NineVolume9_LockBox()
354 ++This->lock_count; in NineVolume9_LockBox()
363 DBG("This=%p lock_count=%u\n", This, This->lock_count); in NineVolume9_UnlockBox()
364 user_assert(This->lock_count, D3DERR_INVALIDCALL); in NineVolume9_UnlockBox()
371 --This->lock_count; in NineVolume9_UnlockBox()
Dsurface9.c424 user_assert(This->lock_count == 0, D3DERR_INVALIDCALL); in NineSurface9_LockRect()
532 ++This->lock_count; in NineSurface9_LockRect()
540 DBG("This=%p lock_count=%u\n", This, This->lock_count); in NineSurface9_UnlockRect()
541 user_assert(This->lock_count, D3DERR_INVALIDCALL); in NineSurface9_UnlockRect()
548 --This->lock_count; in NineSurface9_UnlockRect()
796 assert(!This->lock_count); in NineSurface9_SetResourceResize()
Dvolume9.h55 unsigned lock_count; member
Dsurface9.h40 int lock_count; member
Ddevice9.c1323 user_assert(!src->lock_count, D3DERR_INVALIDCALL); in NineDevice9_UpdateSurface()
1324 user_assert(!dst->lock_count, D3DERR_INVALIDCALL); in NineDevice9_UpdateSurface()
/external/python/cpython2/Python/
Dthread_atheos.h151 static atomic_t lock_count = 0; variable
172 this_lock = atomic_add(&lock_count, 1); in PyThread_allocate_lock()
Dthread_beos.h169 static int32 lock_count = 0; variable
186 this_lock = atomic_add( &lock_count, 1 ); in PyThread_allocate_lock()