OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
full:sharedcount
(Results
1 - 3
of
3
) sorted by null
/external/chromium/chrome/browser/ui/cocoa/
objc_zombie.mm
353
const size_t
sharedCount
= std::min(oldCount, zombieCount);
354
if (
sharedCount
) {
356
oldIndex = (oldIndex + oldCount -
sharedCount
) % oldCount;
358
for (; g_zombieIndex <
sharedCount
; ++ g_zombieIndex) {
/external/chromium_org/chrome/common/mac/
objc_zombie.mm
370
const size_t
sharedCount
= std::min(oldCount, zombieCount);
371
if (
sharedCount
) {
373
oldIndex = (oldIndex + oldCount -
sharedCount
) % oldCount;
375
for (; g_zombieIndex <
sharedCount
; ++ g_zombieIndex) {
/libcore/luni/src/main/java/java/util/concurrent/locks/
ReentrantReadWriteLock.java
240
static int
sharedCount
(int c) { return c >>> SHARED_SHIFT; }
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());
[
all
...]
Completed in 167 milliseconds