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

/libcore/luni/src/main/java/java/util/concurrent/atomic/
H A DAtomicBoolean.java24 private static final long VALUE; field in class:AtomicBoolean
28 VALUE = U.objectFieldOffset
71 return U.compareAndSwapInt(this, VALUE,
89 return U.compareAndSwapInt(this, VALUE,
110 U.putOrderedInt(this, VALUE, (newValue ? 1 : 0));
H A DAtomicLong.java29 private static final long VALUE; field in class:AtomicLong
47 VALUE = U.objectFieldOffset
88 U.putLongVolatile(this, VALUE, newValue);
98 U.putOrderedLong(this, VALUE, newValue);
108 return U.getAndSetLong(this, VALUE, newValue);
121 return U.compareAndSwapLong(this, VALUE, expect, update);
137 return U.compareAndSwapLong(this, VALUE, expect, update);
146 return U.getAndAddLong(this, VALUE, 1L);
155 return U.getAndAddLong(this, VALUE, -1L);
165 return U.getAndAddLong(this, VALUE, delt
[all...]
H A DAtomicInteger.java29 private static final long VALUE; field in class:AtomicInteger
33 VALUE = U.objectFieldOffset
82 U.putOrderedInt(this, VALUE, newValue);
92 return U.getAndSetInt(this, VALUE, newValue);
105 return U.compareAndSwapInt(this, VALUE, expect, update);
121 return U.compareAndSwapInt(this, VALUE, expect, update);
130 return U.getAndAddInt(this, VALUE, 1);
139 return U.getAndAddInt(this, VALUE, -1);
149 return U.getAndAddInt(this, VALUE, delta);
158 return U.getAndAddInt(this, VALUE,
[all...]
H A DAtomicReference.java24 private static final long VALUE; field in class:AtomicReference
28 VALUE = U.objectFieldOffset
77 U.putOrderedObject(this, VALUE, newValue);
89 return U.compareAndSwapObject(this, VALUE, expect, update);
105 return U.compareAndSwapObject(this, VALUE, expect, update);
116 return (V)U.getAndSetObject(this, VALUE, newValue);
H A DStriped64.java98 return U.compareAndSwapLong(this, VALUE, cmp, val);
101 U.putLongVolatile(this, VALUE, 0L);
104 U.putLongVolatile(this, VALUE, identity);
109 private static final long VALUE; field in class:Striped64.Cell
112 VALUE = U.objectFieldOffset
/libcore/luni/src/test/java/libcore/java/io/
H A DSerializationTest.java287 VALUE
303 // String s = SerializationTester.serializeHex(WasEnum.VALUE);
329 VALUE; enum constant in enum:SerializationTest.WasObject
/libcore/luni/src/main/java/java/util/concurrent/
H A DConcurrentSkipListMap.java418 return U.compareAndSwapObject(this, VALUE, cmp, val);
509 private static final long VALUE; field in class:ConcurrentSkipListMap.Node
514 VALUE = U.objectFieldOffset

Completed in 660 milliseconds