Searched defs:sharedCount (Results 1 - 1 of 1) sorted by relevance

/libcore/ojluni/src/main/java/java/util/concurrent/locks/
H A DReentrantReadWriteLock.java270 static int sharedCount(int c) { return c >>> SHARED_SHIFT; } method in class:ReentrantReadWriteLock.Sync
471 int r = sharedCount(c);
529 if (sharedCount(c) == MAX_COUNT)
532 if (sharedCount(c) == 0) {
585 int r = sharedCount(c);
627 return sharedCount(getState());
1487 int r = Sync.sharedCount(c);

Completed in 166 milliseconds