Searched refs:newValue (Results 1 – 2 of 2) sorted by relevance
/art/runtime/native/ |
D | sun_misc_Unsafe.cc | 27 jint expectedValue, jint newValue) { in Unsafe_compareAndSwapInt() argument 32 expectedValue, newValue); in Unsafe_compareAndSwapInt() 37 jlong expectedValue, jlong newValue) { in Unsafe_compareAndSwapLong() argument 42 expectedValue, newValue); in Unsafe_compareAndSwapLong() 51 mirror::Object* newValue = soa.Decode<mirror::Object*>(javaNewValue); in Unsafe_compareAndSwapObject() local 54 expectedValue, newValue); in Unsafe_compareAndSwapObject() 70 static void Unsafe_putInt(JNIEnv* env, jobject, jobject javaObj, jlong offset, jint newValue) { in Unsafe_putInt() argument 74 obj->SetField32<false>(MemberOffset(offset), newValue); in Unsafe_putInt() 78 jint newValue) { in Unsafe_putIntVolatile() argument 82 obj->SetField32Volatile<false>(MemberOffset(offset), newValue); in Unsafe_putIntVolatile() [all …]
|
/art/runtime/interpreter/ |
D | interpreter.cc | 95 jint newValue = args[4]; in UnstartedRuntimeJni() local 99 expectedValue, newValue); in UnstartedRuntimeJni() 102 expectedValue, newValue); in UnstartedRuntimeJni() 108 Object* newValue = reinterpret_cast<Object*>(args[3]); in UnstartedRuntimeJni() local 110 obj->SetFieldObject<true>(MemberOffset(offset), newValue); in UnstartedRuntimeJni() 112 obj->SetFieldObject<false>(MemberOffset(offset), newValue); in UnstartedRuntimeJni()
|