Home
last modified time | relevance | path

Searched refs:newValue (Results 1 – 2 of 2) sorted by relevance

/art/runtime/native/
Dsun_misc_Unsafe.cc29 jint expectedValue, jint newValue) { in Unsafe_compareAndSwapInt() argument
34 expectedValue, newValue); in Unsafe_compareAndSwapInt()
39 jlong expectedValue, jlong newValue) { in Unsafe_compareAndSwapLong() argument
44 expectedValue, newValue); in Unsafe_compareAndSwapLong()
53 mirror::Object* newValue = soa.Decode<mirror::Object*>(javaNewValue); in Unsafe_compareAndSwapObject() local
56 expectedValue, newValue); in Unsafe_compareAndSwapObject()
72 static void Unsafe_putInt(JNIEnv* env, jobject, jobject javaObj, jlong offset, jint newValue) { in Unsafe_putInt() argument
76 obj->SetField32<false>(MemberOffset(offset), newValue); in Unsafe_putInt()
80 jint newValue) { in Unsafe_putIntVolatile() argument
84 obj->SetField32Volatile<false>(MemberOffset(offset), newValue); in Unsafe_putIntVolatile()
[all …]
/art/runtime/interpreter/
Dunstarted_runtime.cc1012 jint newValue = args[4]; in UnstartedJNIUnsafeCompareAndSwapInt() local
1016 expectedValue, newValue); in UnstartedJNIUnsafeCompareAndSwapInt()
1019 expectedValue, newValue); in UnstartedJNIUnsafeCompareAndSwapInt()
1029 mirror::Object* newValue = reinterpret_cast<mirror::Object*>(args[3]); in UnstartedJNIUnsafePutObject() local
1031 obj->SetFieldObject<true>(MemberOffset(offset), newValue); in UnstartedJNIUnsafePutObject()
1033 obj->SetFieldObject<false>(MemberOffset(offset), newValue); in UnstartedJNIUnsafePutObject()