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

/libcore/luni/src/main/java/java/util/concurrent/locks/
H A DReentrantReadWriteLock.java240 static int sharedCount(int c) { return c >>> SHARED_SHIFT; } method in class:ReentrantReadWriteLock.Sync
441 int r = sharedCount(c);
499 if (sharedCount(c) == MAX_COUNT)
502 if (sharedCount(c) == 0) {
555 int r = sharedCount(c);
597 return sharedCount(getState());
1452 int r = Sync.sharedCount(c);

Completed in 213 milliseconds