Searched defs: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() 44 jlong expectedValue, jlong newValue) { in Unsafe_compareAndSwapLong() 58 mirror::Object* newValue = soa.Decode<mirror::Object*>(javaNewValue); in Unsafe_compareAndSwapObject() local 88 static void Unsafe_putInt(JNIEnv* env, jobject, jobject javaObj, jlong offset, jint newValue) { in Unsafe_putInt() 96 jint newValue) { in Unsafe_putIntVolatile() 104 jint newValue) { in Unsafe_putOrderedInt() 124 static void Unsafe_putLong(JNIEnv* env, jobject, jobject javaObj, jlong offset, jlong newValue) { in Unsafe_putLong() 132 jlong newValue) { in Unsafe_putLongVolatile() 140 jlong newValue) { in Unsafe_putOrderedLong() 166 mirror::Object* newValue = soa.Decode<mirror::Object*>(javaNewValue); in Unsafe_putObject() local [all …]
|
/art/test/004-checker-UnsafeTest18/src/ |
D | Main.java | 53 private static int set32(Object o, long offset, int newValue) { in set32() 60 private static long set64(Object o, long offset, long newValue) { in set64() 67 private static Object setObj(Object o, long offset, Object newValue) { in setObj()
|
/art/test/141-class-unload/src-ex/ |
D | IntHolder.java | 22 public static void setValue(int newValue) { in setValue()
|
/art/runtime/interpreter/ |
D | unstarted_runtime.cc | 1182 int64_t newValue = shadow_frame->GetVRegLong(arg_offset + 6); in UnstartedUnsafeCompareAndSwapLong() local 1220 mirror::Object* newValue = shadow_frame->GetVRegReference(arg_offset + 5); in UnstartedUnsafeCompareAndSwapObject() local 1290 mirror::Object* newValue = shadow_frame->GetVRegReference(arg_offset + 4); in UnstartedUnsafePutOrderedObject() local 1595 jint newValue = args[4]; in UnstartedJNIUnsafeCompareAndSwapInt() local 1625 mirror::Object* newValue = reinterpret_cast<mirror::Object*>(args[3]); in UnstartedJNIUnsafePutObject() local
|