Home
last modified time | relevance | path

Searched defs:newValue (Results 1 – 6 of 6) sorted by relevance

/art/runtime/native/
Dsun_misc_Unsafe.cc42 jint expectedValue, jint newValue) { in Unsafe_compareAndSwapInt()
55 jlong expectedValue, jlong newValue) { in Unsafe_compareAndSwapLong()
70 ObjPtr<mirror::Object> newValue = soa.Decode<mirror::Object>(javaNewValue); in Unsafe_compareAndSwapObject() local
105 static void Unsafe_putInt(JNIEnv* env, jobject, jobject javaObj, jlong offset, jint newValue) { in Unsafe_putInt()
113 jint newValue) { in Unsafe_putIntVolatile()
121 jint newValue) { in Unsafe_putOrderedInt()
142 static void Unsafe_putLong(JNIEnv* env, jobject, jobject javaObj, jlong offset, jlong newValue) { in Unsafe_putLong()
150 jlong newValue) { in Unsafe_putLongVolatile()
158 jlong newValue) { in Unsafe_putOrderedLong()
184 ObjPtr<mirror::Object> newValue = soa.Decode<mirror::Object>(javaNewValue); in Unsafe_putObject() local
[all …]
/art/test/004-checker-UnsafeTest18/src/
DMain.java53 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/
DIntHolder.java22 public static void setValue(int newValue) { in setValue()
/art/test/712-varhandle-invocations/src/
DVarHandleTypeConversionTests.java76 Boolean newValue = null; in doTest() local
104 Byte newValue = null; in doTest() local
131 Character newValue = null; in doTest() local
160 Short newValue = null; in doTest() local
188 Integer newValue = null; in doTest() local
217 Long newValue = null; in doTest() local
246 Float newValue = null; in doTest() local
277 Double newValue = null; in doTest() local
/art/runtime/interpreter/
Dunstarted_runtime.cc1457 int64_t newValue = shadow_frame->GetVRegLong(arg_offset + 6); in UnstartedUnsafeCompareAndSwapLong() local
1482 mirror::Object* newValue = shadow_frame->GetVRegReference(arg_offset + 5); in UnstartedUnsafeCompareAndSwapObject() local
1560 mirror::Object* newValue = shadow_frame->GetVRegReference(arg_offset + 4); in UnstartedUnsafePutOrderedObject() local
1891 jint newValue = args[4]; in UnstartedJNIUnsafeCompareAndSwapInt() local
1935 ObjPtr<mirror::Object> newValue = reinterpret_cast32<mirror::Object*>(args[3]); in UnstartedJNIUnsafePutObject() local
/art/test/959-invoke-polymorphic-accessors/src/
DMain.java964 int newValue = savedValue + 1; in main() local