Searched refs:exclusiveCount (Results 1 - 1 of 1) sorted by relevance

/openjdk7/jdk/src/share/classes/java/util/concurrent/locks/
H A DReentrantReadWriteLock.java273 static int exclusiveCount(int c) { return c & EXCLUSIVE_MASK; } method in class:ReentrantReadWriteLock.Sync
376 boolean free = exclusiveCount(nextc) == 0;
397 int w = exclusiveCount(c);
402 if (w + exclusiveCount(acquires) > MAX_COUNT)
469 if (exclusiveCount(c) != 0 &&
508 if (exclusiveCount(c) != 0) {
562 int w = exclusiveCount(c);
583 if (exclusiveCount(c) != 0 &&
622 return ((exclusiveCount(getState()) == 0) ?
632 return exclusiveCount(getStat
[all...]

Completed in 2854 milliseconds