Lines Matching refs:value

169   ObjPtr<mirror::Object> value = obj->GetFieldObjectVolatile<mirror::Object>(MemberOffset(offset));  in Unsafe_getObjectVolatile()  local
170 return soa.AddLocalReference<jobject>(value); in Unsafe_getObjectVolatile()
176 ObjPtr<mirror::Object> value = obj->GetFieldObject<mirror::Object>(MemberOffset(offset)); in Unsafe_getObject() local
177 return soa.AddLocalReference<jobject>(value); in Unsafe_getObject()
249 … Unsafe_setMemory(JNIEnv* env ATTRIBUTE_UNUSED, jobject, jlong address, jlong bytes, jbyte value) { in Unsafe_setMemory() argument
250 memset(reinterpret_cast<void*>(static_cast<uintptr_t>(address)), value, bytes); in Unsafe_setMemory()
257 static void Unsafe_putByteJB(JNIEnv* env ATTRIBUTE_UNUSED, jobject, jlong address, jbyte value) { in Unsafe_putByteJB() argument
258 *reinterpret_cast<jbyte*>(address) = value; in Unsafe_putByteJB()
265 static void Unsafe_putShortJS(JNIEnv* env ATTRIBUTE_UNUSED, jobject, jlong address, jshort value) { in Unsafe_putShortJS() argument
266 *reinterpret_cast<jshort*>(address) = value; in Unsafe_putShortJS()
273 static void Unsafe_putCharJC(JNIEnv* env ATTRIBUTE_UNUSED, jobject, jlong address, jchar value) { in Unsafe_putCharJC() argument
274 *reinterpret_cast<jchar*>(address) = value; in Unsafe_putCharJC()
281 static void Unsafe_putIntJI(JNIEnv* env ATTRIBUTE_UNUSED, jobject, jlong address, jint value) { in Unsafe_putIntJI() argument
282 *reinterpret_cast<jint*>(address) = value; in Unsafe_putIntJI()
289 static void Unsafe_putLongJJ(JNIEnv* env ATTRIBUTE_UNUSED, jobject, jlong address, jlong value) { in Unsafe_putLongJJ() argument
290 *reinterpret_cast<jlong*>(address) = value; in Unsafe_putLongJJ()
297 static void Unsafe_putFloatJF(JNIEnv* env ATTRIBUTE_UNUSED, jobject, jlong address, jfloat value) { in Unsafe_putFloatJF() argument
298 *reinterpret_cast<jfloat*>(address) = value; in Unsafe_putFloatJF()
304 static void Unsafe_putDoubleJD(JNIEnv* env ATTRIBUTE_UNUSED, jobject, jlong address, jdouble value)… in Unsafe_putDoubleJD() argument
305 *reinterpret_cast<jdouble*>(address) = value; in Unsafe_putDoubleJD()