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

/libcore/luni/src/main/java/java/util/concurrent/
H A DConcurrentLinkedQueue.java158 UNSAFE.putObject(this, itemOffset, item);
162 return UNSAFE.compareAndSwapObject(this, itemOffset, cmp, val);
176 private static final long itemOffset; field in class:ConcurrentLinkedQueue.Node
183 itemOffset = UNSAFE.objectFieldOffset
H A DLinkedTransferQueue.java433 return UNSAFE.compareAndSwapObject(this, itemOffset, cmp, val);
441 UNSAFE.putObject(this, itemOffset, item); // relaxed write
463 UNSAFE.putObject(this, itemOffset, this);
511 private static final long itemOffset; field in class:LinkedTransferQueue.Node
518 itemOffset = UNSAFE.objectFieldOffset
H A DSynchronousQueue.java524 UNSAFE.compareAndSwapObject(this, itemOffset, cmp, val);
531 UNSAFE.compareAndSwapObject(this, itemOffset, cmp, this);
549 private static final long itemOffset; field in class:SynchronousQueue.TransferQueue.QNode
556 itemOffset = UNSAFE.objectFieldOffset
H A DConcurrentLinkedDeque.java278 UNSAFE.putObject(this, itemOffset, item);
282 return UNSAFE.compareAndSwapObject(this, itemOffset, cmp, val);
305 private static final long itemOffset; field in class:ConcurrentLinkedDeque.Node
314 itemOffset = UNSAFE.objectFieldOffset

Completed in 526 milliseconds