Lines Matching refs:args

27 static void Dalvik_sun_misc_Unsafe_objectFieldOffset0(const u4* args,
30 Object* fieldObject = (Object*) args[0];
40 static void Dalvik_sun_misc_Unsafe_arrayBaseOffset0(const u4* args,
44 UNUSED_PARAMETER(args);
51 static void Dalvik_sun_misc_Unsafe_arrayIndexScale0(const u4* args,
54 ClassObject* clazz = (ClassObject*) args[0];
62 static void Dalvik_sun_misc_Unsafe_compareAndSwapInt(const u4* args,
65 // We ignore the this pointer in args[0].
66 Object* obj = (Object*) args[1];
67 s8 offset = GET_ARG_LONG(args, 2);
68 s4 expectedValue = args[4];
69 s4 newValue = args[5];
82 static void Dalvik_sun_misc_Unsafe_compareAndSwapLong(const u4* args,
85 // We ignore the this pointer in args[0].
86 Object* obj = (Object*) args[1];
87 s8 offset = GET_ARG_LONG(args, 2);
88 s8 expectedValue = GET_ARG_LONG(args, 4);
89 s8 newValue = GET_ARG_LONG(args, 6);
103 static void Dalvik_sun_misc_Unsafe_compareAndSwapObject(const u4* args,
106 // We ignore the this pointer in args[0].
107 Object* obj = (Object*) args[1];
108 s8 offset = GET_ARG_LONG(args, 2);
109 Object* expectedValue = (Object*) args[4];
110 Object* newValue = (Object*) args[5];
123 static void Dalvik_sun_misc_Unsafe_getIntVolatile(const u4* args,
126 // We ignore the this pointer in args[0].
127 Object* obj = (Object*) args[1];
128 s8 offset = GET_ARG_LONG(args, 2);
138 static void Dalvik_sun_misc_Unsafe_putIntVolatile(const u4* args,
141 // We ignore the this pointer in args[0].
142 Object* obj = (Object*) args[1];
143 s8 offset = GET_ARG_LONG(args, 2);
144 s4 value = (s4) args[4];
154 static void Dalvik_sun_misc_Unsafe_getLongVolatile(const u4* args,
157 // We ignore the this pointer in args[0].
158 Object* obj = (Object*) args[1];
159 s8 offset = GET_ARG_LONG(args, 2);
169 static void Dalvik_sun_misc_Unsafe_putLongVolatile(const u4* args,
172 // We ignore the this pointer in args[0].
173 Object* obj = (Object*) args[1];
174 s8 offset = GET_ARG_LONG(args, 2);
175 s8 value = GET_ARG_LONG(args, 4);
186 static void Dalvik_sun_misc_Unsafe_getObjectVolatile(const u4* args,
189 // We ignore the this pointer in args[0].
190 Object* obj = (Object*) args[1];
191 s8 offset = GET_ARG_LONG(args, 2);
201 static void Dalvik_sun_misc_Unsafe_putObjectVolatile(const u4* args,
204 // We ignore the this pointer in args[0].
205 Object* obj = (Object*) args[1];
206 s8 offset = GET_ARG_LONG(args, 2);
207 Object* value = (Object*) args[4];
218 static void Dalvik_sun_misc_Unsafe_getInt(const u4* args, JValue* pResult)
220 // We ignore the this pointer in args[0].
221 Object* obj = (Object*) args[1];
222 s8 offset = GET_ARG_LONG(args, 2);
231 static void Dalvik_sun_misc_Unsafe_putInt(const u4* args, JValue* pResult)
233 // We ignore the this pointer in args[0].
234 Object* obj = (Object*) args[1];
235 s8 offset = GET_ARG_LONG(args, 2);
236 s4 value = (s4) args[4];
246 static void Dalvik_sun_misc_Unsafe_putOrderedInt(const u4* args,
249 // We ignore the this pointer in args[0].
250 Object* obj = (Object*) args[1];
251 s8 offset = GET_ARG_LONG(args, 2);
252 s4 value = (s4) args[4];
263 static void Dalvik_sun_misc_Unsafe_getLong(const u4* args, JValue* pResult)
265 // We ignore the this pointer in args[0].
266 Object* obj = (Object*) args[1];
267 s8 offset = GET_ARG_LONG(args, 2);
276 static void Dalvik_sun_misc_Unsafe_putLong(const u4* args, JValue* pResult)
278 // We ignore the this pointer in args[0].
279 Object* obj = (Object*) args[1];
280 s8 offset = GET_ARG_LONG(args, 2);
281 s8 value = GET_ARG_LONG(args, 4);
291 static void Dalvik_sun_misc_Unsafe_putOrderedLong(const u4* args,
294 // We ignore the this pointer in args[0].
295 Object* obj = (Object*) args[1];
296 s8 offset = GET_ARG_LONG(args, 2);
297 s8 value = GET_ARG_LONG(args, 4);
308 static void Dalvik_sun_misc_Unsafe_getObject(const u4* args, JValue* pResult)
310 // We ignore the this pointer in args[0].
311 Object* obj = (Object*) args[1];
312 s8 offset = GET_ARG_LONG(args, 2);
321 static void Dalvik_sun_misc_Unsafe_putObject(const u4* args, JValue* pResult)
323 // We ignore the this pointer in args[0].
324 Object* obj = (Object*) args[1];
325 s8 offset = GET_ARG_LONG(args, 2);
326 Object* value = (Object*) args[4];
338 static void Dalvik_sun_misc_Unsafe_putOrderedObject(const u4* args,
341 // We ignore the this pointer in args[0].
342 Object* obj = (Object*) args[1];
343 s8 offset = GET_ARG_LONG(args, 2);
344 Object* value = (Object*) args[4];