Searched refs:newValue (Results 1 – 4 of 4) sorted by relevance
/art/runtime/native/ |
D | sun_misc_Unsafe.cc | 34 jint expectedValue, jint newValue) { in Unsafe_compareAndSwapInt() argument 39 expectedValue, newValue); in Unsafe_compareAndSwapInt() 44 jlong expectedValue, jlong newValue) { in Unsafe_compareAndSwapLong() argument 49 expectedValue, newValue); in Unsafe_compareAndSwapLong() 58 mirror::Object* newValue = soa.Decode<mirror::Object*>(javaNewValue); in Unsafe_compareAndSwapObject() local 72 expectedValue, newValue); in Unsafe_compareAndSwapObject() 88 static void Unsafe_putInt(JNIEnv* env, jobject, jobject javaObj, jlong offset, jint newValue) { in Unsafe_putInt() argument 92 obj->SetField32<false>(MemberOffset(offset), newValue); in Unsafe_putInt() 96 jint newValue) { in Unsafe_putIntVolatile() argument 100 obj->SetField32Volatile<false>(MemberOffset(offset), newValue); in Unsafe_putIntVolatile() [all …]
|
/art/test/141-class-unload/src-ex/ |
D | IntHolder.java | 22 public static void setValue(int newValue) { in setValue() argument 23 value = newValue; in setValue()
|
/art/test/004-checker-UnsafeTest18/src/ |
D | Main.java | 53 private static int set32(Object o, long offset, int newValue) { in set32() argument 54 return unsafe.getAndSetInt(o, offset, newValue); in set32() 60 private static long set64(Object o, long offset, long newValue) { in set64() argument 61 return unsafe.getAndSetLong(o, offset, newValue); in set64() 67 private static Object setObj(Object o, long offset, Object newValue) { in setObj() argument 68 return unsafe.getAndSetObject(o, offset, newValue); in setObj()
|
/art/runtime/interpreter/ |
D | unstarted_runtime.cc | 1182 int64_t newValue = shadow_frame->GetVRegLong(arg_offset + 6); in UnstartedUnsafeCompareAndSwapLong() local 1201 newValue); in UnstartedUnsafeCompareAndSwapLong() 1205 newValue); in UnstartedUnsafeCompareAndSwapLong() 1220 mirror::Object* newValue = shadow_frame->GetVRegReference(arg_offset + 5); in UnstartedUnsafeCompareAndSwapObject() local 1239 newValue); in UnstartedUnsafeCompareAndSwapObject() 1243 newValue); in UnstartedUnsafeCompareAndSwapObject() 1290 mirror::Object* newValue = shadow_frame->GetVRegReference(arg_offset + 4); in UnstartedUnsafePutOrderedObject() local 1293 obj->SetFieldObject<true>(MemberOffset(offset), newValue); in UnstartedUnsafePutOrderedObject() 1295 obj->SetFieldObject<false>(MemberOffset(offset), newValue); in UnstartedUnsafePutOrderedObject() 1595 jint newValue = args[4]; in UnstartedJNIUnsafeCompareAndSwapInt() local [all …]
|