/libcore/luni/src/main/java/java/util/concurrent/atomic/ |
package-info.java | 11 * array elements to those that also provide an atomic conditional update 20 * unconditionally set values, as well as a weaker conditional atomic 24 * employ efficient machine-level atomic instructions that are available 31 * {@link java.util.concurrent.atomic.AtomicBoolean}, 32 * {@link java.util.concurrent.atomic.AtomicInteger}, 33 * {@link java.util.concurrent.atomic.AtomicLong}, and 34 * {@link java.util.concurrent.atomic.AtomicReference} 38 * {@code AtomicInteger} provide atomic increment methods. One 105 * {@link java.util.concurrent.atomic.AtomicReferenceFieldUpdater}, 106 * {@link java.util.concurrent.atomic.AtomicIntegerFieldUpdater}, an [all...] |
Fences.java | 7 package java.util.concurrent.atomic; 14 * instances of atomic classes, using {@code synchronized} blocks or 164 * atomic. Additionally, correctness may require that all accesses of
|
AtomicReference.java | 7 package java.util.concurrent.atomic; 12 * java.util.concurrent.atomic} package specification for description 13 * of the properties of atomic variables.
|
AtomicBoolean.java | 7 package java.util.concurrent.atomic; 12 * {@link java.util.concurrent.atomic} package specification for 13 * description of the properties of atomic variables. An
|
AtomicMarkableReference.java | 7 package java.util.concurrent.atomic;
|
AtomicStampedReference.java | 7 package java.util.concurrent.atomic;
|
AtomicInteger.java | 7 package java.util.concurrent.atomic; 12 * {@link java.util.concurrent.atomic} package specification for 13 * description of the properties of atomic variables. An
|
AtomicIntegerArray.java | 7 package java.util.concurrent.atomic; 12 * See the {@link java.util.concurrent.atomic} package 13 * specification for description of the properties of atomic
|
AtomicIntegerFieldUpdater.java | 7 package java.util.concurrent.atomic; 15 * A reflection-based utility that enables atomic updates to 17 * This class is designed for use in atomic data structures in which 18 * several fields of the same node are independently subject to atomic 22 * method in this class are weaker than in other atomic classes. 24 * are appropriate for purposes of atomic access, it can 61 * expected value. This method is guaranteed to be atomic with respect to 77 * expected value. This method is guaranteed to be atomic with respect to
|
AtomicLong.java | 7 package java.util.concurrent.atomic; 12 * {@link java.util.concurrent.atomic} package specification for 13 * description of the properties of atomic variables. An
|
AtomicLongArray.java | 7 package java.util.concurrent.atomic; 12 * See the {@link java.util.concurrent.atomic} package specification 13 * for description of the properties of atomic variables.
|
AtomicReferenceArray.java | 7 package java.util.concurrent.atomic; 15 * atomically. See the {@link java.util.concurrent.atomic} package 16 * specification for description of the properties of atomic
|
AtomicReferenceFieldUpdater.java | 7 package java.util.concurrent.atomic; 14 * A reflection-based utility that enables atomic updates to 16 * classes. This class is designed for use in atomic data structures 18 * independently subject to atomic updates. For example, a tree node 38 * method in this class are weaker than in other atomic classes. 40 * are appropriate for purposes of atomic access, it can 81 * expected value. This method is guaranteed to be atomic with respect to 95 * expected value. This method is guaranteed to be atomic with respect to
|
AtomicLongFieldUpdater.java | 7 package java.util.concurrent.atomic; 15 * A reflection-based utility that enables atomic updates to 17 * This class is designed for use in atomic data structures in which 18 * several fields of the same node are independently subject to atomic 22 * method in this class are weaker than in other atomic classes. 24 * are appropriate for purposes of atomic access, it can 64 * expected value. This method is guaranteed to be atomic with respect to 80 * expected value. This method is guaranteed to be atomic with respect to
|
/external/clang/test/CodeGen/ |
atomic.c | 3 int atomic(void) { function 79 // CHECK: store atomic i32 0, {{.*}} release, align 4 82 // CHECK: store atomic i32 0, {{.*}} release, align 4 94 // CHECK: store atomic {{.*}} release, align 4
|
/external/clang/test/SemaCXX/ |
atomic-type.cxx | 3 template<typename T> struct atomic { struct 11 atomic<inner> i;
|
/external/guava/guava-gwt/src-super/java/util/super/java/util/concurrent/atomic/ |
AtomicInteger.java | 17 package java.util.concurrent.atomic;
|
AtomicLong.java | 17 package java.util.concurrent.atomic;
|
/external/guava/guava/src/com/google/common/util/concurrent/ |
AtomicLongMap.java | 14 import java.util.concurrent.atomic.AtomicLong; 27 * atomic unless otherwise noted. 68 AtomicLong atomic = map.get(key); local 69 return atomic == null ? 0L : atomic.get(); 92 AtomicLong atomic = map.get(key); local 93 if (atomic == null) { 94 atomic = map.putIfAbsent(key, new AtomicLong(delta)); 95 if (atomic == null) { 98 // atomic is now non-null; fall throug 141 AtomicLong atomic = map.get(key); local 176 AtomicLong atomic = map.get(key); local 221 AtomicLong atomic = map.get(key); local 245 AtomicLong atomic = map.get(key); local [all...] |
/external/chromium_org/third_party/icu/source/i18n/ |
regexcmp.h | 74 atomic = -3, enumerator in enum:RegexCompile::EParenClass
|
/external/compiler-rt/lib/tsan/rtl/ |
tsan_report.h | 52 bool atomic; member in struct:__tsan::ReportMop
|
/external/eigen/unsupported/Eigen/src/MatrixFunctions/ |
MatrixLogarithm.h | 22 * \brief Helper class for computing matrix logarithm of atomic matrices. 25 * Here, an atomic matrix is a triangular matrix whose diagonal 44 /** \brief Compute matrix logarithm of atomic matrix 45 * \param[in] A argument of matrix logarithm, should be upper triangular and atomic 458 AtomicType atomic; local 461 MatrixFunction<PlainObject, AtomicType> mf(Aevaluated, atomic);
|
/external/icu4c/i18n/ |
regexcmp.h | 74 atomic = -3, enumerator in enum:RegexCompile::EParenClass
|
/external/chromium_org/base/debug/ |
trace_event_impl.cc | 2299 static TRACE_EVENT_API_ATOMIC_WORD atomic = 0; local [all...] |
/bionic/libc/kernel/common/linux/ |
nfs_xdr.h | 120 u32 atomic; member in struct:nfs4_change_info
|