Home
last modified time | relevance | path

Searched defs:compareAndSet (Results 1 – 25 of 769) sorted by relevance

12345678910>>...31

/aosp_15_r20/external/kotlinx.atomicfu/atomicfu/src/jsAndWasmSharedMain/kotlin/kotlinx/atomicfu/
H A DAtomicFU.kt58 public actual fun compareAndSet(expect: T, update: T): Boolean { in atomic() method
91 public actual fun compareAndSet(expect: Boolean, update: Boolean): Boolean { in compareAndSet() method
122 public actual fun compareAndSet(expect: Int, update: Int): Boolean { in toString() method
182 public actual fun compareAndSet(expect: Long, update: Long): Boolean { in compareAndSet() method
/aosp_15_r20/external/kotlinx.atomicfu/atomicfu/src/nativeMain/kotlin/kotlinx/atomicfu/
H A DAtomicFU.kt55 public actual inline fun compareAndSet(expect: T, update: T): Boolean { in atomic() method in kotlinx.atomicfu.AtomicRef
86 public actual fun compareAndSet(expect: Boolean, update: Boolean): Boolean { in compareAndSet() method in kotlinx.atomicfu.AtomicBoolean
120 public actual inline fun compareAndSet(expect: Int, update: Int): Boolean = in toString() method in kotlinx.atomicfu.AtomicInt
158 public actual inline fun compareAndSet(expect: Long, update: Long): Boolean = in compareAndSet() method in kotlinx.atomicfu.AtomicLong
/aosp_15_r20/art/runtime/mirror/
H A Dvar_handle_test.cc399 Handle<MethodType> compareAndSet = hs.NewHandle(MethodTypeOf("(Ljava/lang/Integer;II)Z")); in TEST_F() local
596 Handle<MethodType> compareAndSet = hs.NewHandle(MethodTypeOf("(II)Z")); in TEST_F() local
763 Handle<MethodType> compareAndSet = in TEST_F() local
918 Handle<MethodType> compareAndSet = hs.NewHandle(MethodTypeOf("([BICC)Z")); in TEST_F() local
1070 Handle<MethodType> compareAndSet = hs.NewHandle(MethodTypeOf("(Ljava/nio/ByteBuffer;IDD)Z")); in TEST_F() local
/aosp_15_r20/external/kotlinx.atomicfu/atomicfu/src/commonMain/kotlin/kotlinx/atomicfu/
H A DAtomicFU.common.kt142 public fun compareAndSet(expect: T, update: T): Boolean in atomic() method in kotlinx.atomicfu.AtomicRef
220 public fun compareAndSet(expect: Boolean, update: Boolean): Boolean in getValue() method in kotlinx.atomicfu.AtomicBoolean
298 public fun compareAndSet(expect: Int, update: Int): Boolean in getValue() method in kotlinx.atomicfu.AtomicInt
415 public fun compareAndSet(expect: Long, update: Long): Boolean in getValue() method in kotlinx.atomicfu.AtomicLong
/aosp_15_r20/external/kotlinx.atomicfu/atomicfu/src/jvmMain/kotlin/kotlinx/atomicfu/
H A DAtomicFU.kt105 public actual fun compareAndSet(expect: T, update: T): Boolean { in atomic() method
169 public actual fun compareAndSet(expect: Boolean, update: Boolean): Boolean { in compareAndSet() method
229 public actual fun compareAndSet(expect: Int, update: Int): Boolean { in compareAndSet() method
354 public actual fun compareAndSet(expect: Long, update: Long): Boolean { in compareAndSet() method
/aosp_15_r20/out/soong/.intermediates/libcore/core_oj_api_files/gen/20/libcore/ojluni/src/main/java/java/util/concurrent/atomic/
DAtomicLongFieldUpdater.java117 public abstract boolean compareAndSet(T obj, long expect, long update); in compareAndSet() method in AtomicLongFieldUpdater
472 public final boolean compareAndSet(T obj, long expect, long update) { in compareAndSet() method in AtomicLongFieldUpdater.CASUpdater
624 public final boolean compareAndSet(T obj, long expect, long update) { in compareAndSet() method in AtomicLongFieldUpdater.LockedUpdater
DAtomicReferenceFieldUpdater.java136 public abstract boolean compareAndSet(T obj, V expect, V update); in compareAndSet() method in AtomicReferenceFieldUpdater
452 public final boolean compareAndSet(T obj, V expect, V update) { in compareAndSet() method in AtomicReferenceFieldUpdater.AtomicReferenceFieldUpdaterImpl
DAtomicIntegerFieldUpdater.java114 public abstract boolean compareAndSet(T obj, int expect, int update); in compareAndSet() method in AtomicIntegerFieldUpdater
506 public final boolean compareAndSet(T obj, int expect, int update) { in compareAndSet() method in AtomicIntegerFieldUpdater.AtomicIntegerFieldUpdaterImpl
/aosp_15_r20/libcore/ojluni/src/main/java/java/util/concurrent/atomic/
H A DAtomicLongFieldUpdater.java117 public abstract boolean compareAndSet(T obj, long expect, long update); in compareAndSet() method in AtomicLongFieldUpdater
472 public final boolean compareAndSet(T obj, long expect, long update) { in compareAndSet() method in AtomicLongFieldUpdater.CASUpdater
624 public final boolean compareAndSet(T obj, long expect, long update) { in compareAndSet() method in AtomicLongFieldUpdater.LockedUpdater
H A DAtomicReferenceFieldUpdater.java136 public abstract boolean compareAndSet(T obj, V expect, V update); in compareAndSet() method in AtomicReferenceFieldUpdater
452 public final boolean compareAndSet(T obj, V expect, V update) { in compareAndSet() method in AtomicReferenceFieldUpdater.AtomicReferenceFieldUpdaterImpl
H A DAtomicIntegerFieldUpdater.java114 public abstract boolean compareAndSet(T obj, int expect, int update); in compareAndSet() method in AtomicIntegerFieldUpdater
506 public final boolean compareAndSet(T obj, int expect, int update) { in compareAndSet() method in AtomicIntegerFieldUpdater.AtomicIntegerFieldUpdaterImpl
/aosp_15_r20/out/soong/.intermediates/libcore/core_oj_api_files/gen/gensrcs/libcore/ojluni/src/main/java/java/util/concurrent/atomic/
DAtomicLongFieldUpdater.java117 public abstract boolean compareAndSet(T obj, long expect, long update); in compareAndSet() method in AtomicLongFieldUpdater
472 public final boolean compareAndSet(T obj, long expect, long update) { in compareAndSet() method in AtomicLongFieldUpdater.CASUpdater
624 public final boolean compareAndSet(T obj, long expect, long update) { in compareAndSet() method in AtomicLongFieldUpdater.LockedUpdater
DAtomicReferenceFieldUpdater.java136 public abstract boolean compareAndSet(T obj, V expect, V update); in compareAndSet() method in AtomicReferenceFieldUpdater
452 public final boolean compareAndSet(T obj, V expect, V update) { in compareAndSet() method in AtomicReferenceFieldUpdater.AtomicReferenceFieldUpdaterImpl
DAtomicIntegerFieldUpdater.java114 public abstract boolean compareAndSet(T obj, int expect, int update); in compareAndSet() method in AtomicIntegerFieldUpdater
506 public final boolean compareAndSet(T obj, int expect, int update) { in compareAndSet() method in AtomicIntegerFieldUpdater.AtomicIntegerFieldUpdaterImpl
/aosp_15_r20/out/soong/.intermediates/external/kotlinx.atomicfu/kotlinx_atomicfu/android_common_apex34/kotlin/
Dkotlinx_atomicfu.jarMETA-INF/ META-INF/MANIFEST.MF META-INF/external__kotlinx.atomicfu__android_common_apex34__kotlinx_atomicfu. ...
/aosp_15_r20/out/soong/.intermediates/external/kotlinx.atomicfu/kotlinx_atomicfu/android_common_apex30/kotlin/
Dkotlinx_atomicfu.jarMETA-INF/ META-INF/MANIFEST.MF META-INF/external__kotlinx.atomicfu__android_common_apex30__kotlinx_atomicfu. ...
/aosp_15_r20/out/soong/.intermediates/external/kotlinx.atomicfu/kotlinx_atomicfu/android_common_apex33/kotlin/
Dkotlinx_atomicfu.jarMETA-INF/ META-INF/MANIFEST.MF META-INF/external__kotlinx.atomicfu__android_common_apex33__kotlinx_atomicfu. ...
/aosp_15_r20/out/soong/.intermediates/external/kotlinx.atomicfu/kotlinx_atomicfu/linux_glibc_common/kotlin/
Dkotlinx_atomicfu.jarMETA-INF/ META-INF/MANIFEST.MF META-INF/external__kotlinx.atomicfu__linux_glibc_common__kotlinx_atomicfu. ...
/aosp_15_r20/out/soong/.intermediates/external/kotlinx.atomicfu/kotlinx_atomicfu/linux_glibc_common/local-javac-header/
Dkotlinx_atomicfu.jarMETA-INF/ META-INF/MANIFEST.MF META-INF/external__kotlinx.atomicfu__linux_glibc_common__kotlinx_atomicfu. ...
/aosp_15_r20/out/soong/.intermediates/external/kotlinx.atomicfu/kotlinx_atomicfu/android_common/kotlin/
Dkotlinx_atomicfu.jarMETA-INF/ META-INF/MANIFEST.MF META-INF/external__kotlinx.atomicfu__android_common__kotlinx_atomicfu. ...
/aosp_15_r20/external/kotlinx.coroutines/kotlinx-coroutines-core/common/src/flow/
H A DStateFlow.kt176 public fun compareAndSet(expect: T, update: T): Boolean in compareAndSet() method
318 override fun compareAndSet(expect: T, update: T): Boolean = in compareAndSet() method
/aosp_15_r20/out/soong/.intermediates/external/kotlinx.atomicfu/kotlinx_atomicfu/android_common_apex34/kotlin_headers/
Dkotlinx_atomicfu.jarMETA-INF/ META-INF/MANIFEST.MF META-INF/external__kotlinx.atomicfu__android_common_apex34__kotlinx_atomicfu. ...
/aosp_15_r20/out/soong/.intermediates/external/kotlinx.atomicfu/kotlinx_atomicfu/linux_glibc_common/kotlin_headers/
Dkotlinx_atomicfu.jarMETA-INF/ META-INF/MANIFEST.MF META-INF/external__kotlinx.atomicfu__linux_glibc_common__kotlinx_atomicfu. ...
/aosp_15_r20/out/soong/.intermediates/external/kotlinx.atomicfu/kotlinx_atomicfu/android_common_apex30/kotlin_headers/
Dkotlinx_atomicfu.jarMETA-INF/ META-INF/MANIFEST.MF META-INF/external__kotlinx.atomicfu__android_common_apex30__kotlinx_atomicfu. ...
/aosp_15_r20/out/soong/.intermediates/external/kotlinx.atomicfu/kotlinx_atomicfu/android_common/kotlin_headers/
Dkotlinx_atomicfu.jarMETA-INF/ META-INF/MANIFEST.MF META-INF/external__kotlinx.atomicfu__android_common__kotlinx_atomicfu. ...

12345678910>>...31