HomeSort by relevance Sort by last modified time
    Searched refs:waitingShared (Results 1 - 2 of 2) sorted by null

  /external/skia/src/core/
SkSharedMutex.cpp 249 // * WaitingShared - the number of threads waiting to run while waiting for an exclusive thread
281 int32_t waitingShared;
290 waitingShared = (oldQueueCounts & kWaitingSharedMask) >> kWaitingSharedOffset;
294 if (waitingShared > 0) {
301 // waitingShared count instead of clearing with an &= and then |= the count.
302 newQueueCounts |= waitingShared << kSharedOffset;
308 if (waitingShared > 0) {
310 fSharedQueue.signal(waitingShared);
  /external/skqp/src/core/
SkSharedMutex.cpp 249 // * WaitingShared - the number of threads waiting to run while waiting for an exclusive thread
281 int32_t waitingShared;
290 waitingShared = (oldQueueCounts & kWaitingSharedMask) >> kWaitingSharedOffset;
294 if (waitingShared > 0) {
301 // waitingShared count instead of clearing with an &= and then |= the count.
302 newQueueCounts |= waitingShared << kSharedOffset;
308 if (waitingShared > 0) {
310 fSharedQueue.signal(waitingShared);

Completed in 256 milliseconds