Searched refs:newQueueCounts (Results 1 – 1 of 1) sorted by relevance
291 int32_t newQueueCounts; in release() local293 newQueueCounts = oldQueueCounts; in release()296 newQueueCounts -= 1 << kWaitingExlusiveOffset; in release()306 newQueueCounts &= ~kWaitingSharedMask; in release()311 newQueueCounts |= waitingShared << kSharedOffset; in release()314 } while (!fQueueCounts.compare_exchange_strong(oldQueueCounts, newQueueCounts, in release()321 } else if ((newQueueCounts & kWaitingExclusiveMask) > 0) { in release()329 int32_t newQueueCounts; in acquireShared() local331 newQueueCounts = oldQueueCounts; in acquireShared()333 if ((newQueueCounts & kWaitingExclusiveMask) > 0) { in acquireShared()[all …]