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

/libcore/luni/src/main/java/java/util/concurrent/
H A DConcurrentLinkedQueue.java157 UNSAFE.putObject(this, itemOffset, item);
161 return UNSAFE.compareAndSwapObject(this, itemOffset, cmp, val);
175 private static final long itemOffset; field in class:ConcurrentLinkedQueue.Node
182 itemOffset = UNSAFE.objectFieldOffset
H A DLinkedTransferQueue.java432 return UNSAFE.compareAndSwapObject(this, itemOffset, cmp, val);
440 UNSAFE.putObject(this, itemOffset, item); // relaxed write
462 UNSAFE.putObject(this, itemOffset, this);
510 private static final long itemOffset; field in class:LinkedTransferQueue.Node
517 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.java275 UNSAFE.putObject(this, itemOffset, item);
279 return UNSAFE.compareAndSwapObject(this, itemOffset, cmp, val);
302 private static final long itemOffset; field in class:ConcurrentLinkedDeque.Node
311 itemOffset = UNSAFE.objectFieldOffset

Completed in 63 milliseconds