OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:compareAndSwapLong
(Results
1 - 9
of
9
) sorted by null
/libcore/luni/src/main/java/java/util/concurrent/atomic/
AtomicLong.java
26
// setup to use Unsafe.
compareAndSwapLong
for updates
32
* compareAndSwap for longs. While the Unsafe.
compareAndSwapLong
120
return unsafe.
compareAndSwapLong
(this, valueOffset, expect, update);
136
return unsafe.
compareAndSwapLong
(this, valueOffset, expect, update);
AtomicLongArray.java
141
return unsafe.
compareAndSwapLong
(array, offset, expect, update);
AtomicLongFieldUpdater.java
294
return unsafe.
compareAndSwapLong
(obj, offset, expect, update);
299
return unsafe.
compareAndSwapLong
(obj, offset, expect, update);
/libcore/luni/src/main/java/java/util/concurrent/
Phaser.java
364
if (UNSAFE.
compareAndSwapLong
(this, stateOffset, s, s-=adjust)) {
377
UNSAFE.
compareAndSwapLong
(this, stateOffset, s, n);
382
UNSAFE.
compareAndSwapLong
(this, stateOffset,
418
else if (UNSAFE.
compareAndSwapLong
(this, stateOffset,
425
if (UNSAFE.
compareAndSwapLong
(this, stateOffset, s, next))
437
while (!UNSAFE.
compareAndSwapLong
469
!UNSAFE.
compareAndSwapLong
659
if (UNSAFE.
compareAndSwapLong
(this, stateOffset, s,
675
if (!UNSAFE.
compareAndSwapLong
(this, stateOffset, s, n))
[
all
...]
ForkJoinPool.java
[
all
...]
/libcore/libart/src/main/java/sun/misc/
Unsafe.java
145
public native boolean
compareAndSwapLong
(Object obj, long offset,
/libcore/libdvm/src/main/java/sun/misc/
Unsafe.java
157
public native boolean
compareAndSwapLong
(Object obj, long offset,
/art/runtime/native/
sun_misc_Unsafe.cc
162
NATIVE_METHOD(Unsafe,
compareAndSwapLong
, "(Ljava/lang/Object;JJJ)Z"),
/libcore/luni/src/main/java/java/util/concurrent/locks/
AbstractQueuedLongSynchronizer.java
315
return unsafe.
compareAndSwapLong
(this, stateOffset, expect, update);
[
all
...]
Completed in 263 milliseconds