Home
last modified time | relevance | path

Searched refs:ShortArray (Results 1 – 10 of 10) sorted by relevance

/art/runtime/native/
Djava_lang_System.cc112 ObjPtr<mirror::ShortArray>::DownCast(dstArray)->Memmove( in System_arraycopy()
113 dstPos, ObjPtr<mirror::ShortArray>::DownCast(srcArray), srcPos, count); in System_arraycopy()
203 System_arraycopyTUnchecked<mirror::ShortArray, Primitive::kPrimShort>(env, javaSrc, srcPos, in System_arraycopyShortUnchecked()
Dsun_misc_Unsafe.cc373 copyToArray(srcAddr, ObjPtr<mirror::ShortArray>::DownCast(dst), dst_offset, sz); in Unsafe_copyMemoryToPrimitiveArray()
408 copyFromArray(dstAddr, ObjPtr<mirror::ShortArray>::DownCast(src), src_offset, sz); in Unsafe_copyMemoryFromPrimitiveArray()
/art/runtime/
Dreference_table_test.cc113 Handle<mirror::ShortArray> o2 = hs.NewHandle(mirror::ShortArray::Alloc(soa.Self(), 0)); in TEST_F()
Dtransaction_test.cc405 Handle<mirror::ShortArray> shortArray = in TEST_F()
Dclass_linker_test.cc1109 Handle<mirror::ShortArray> short_array(hs.NewHandle(mirror::ShortArray::Alloc(soa.Self(), 0))); in TEST_F()
/art/runtime/mirror/
Dobject_test.cc253 TestPrimitiveArray<ShortArray>(class_linker_); in TEST_F()
857 Handle<mirror::ShortArray> a(hs.NewHandle(mirror::ShortArray::Alloc(soa.Self(), 2))); in TEST_F()
Dobject.h59 using ShortArray = PrimitiveArray<int16_t>; variable
223 ObjPtr<ShortArray> AsShortArray() REQUIRES_SHARED(Locks::mutator_lock_);
Dobject-inl.h246 inline ObjPtr<ShortArray> Object::AsShortArray() { in AsShortArray()
248 return ObjPtr<ShortArray>::DownCast(this); in AsShortArray()
/art/runtime/interpreter/
Dinterpreter_switch_impl-inl.h847 return HandleAGet<mirror::ShortArray>(&InstructionHandler::SetVReg); in AGET_SHORT()
875 return HandleAPut<mirror::ShortArray>(GetVReg(A())); in APUT_SHORT()
/art/runtime/jni/
Djni_internal.cc2355 return NewPrimitiveArray<jshortArray, mirror::ShortArray>(env, length); in NewShortArray()
2428 return GetPrimitiveArray<jshortArray, jshort, mirror::ShortArray>(env, array, is_copy); in GetShortArrayElements()
2465 ReleasePrimitiveArray<jshortArray, jshort, mirror::ShortArray>(env, array, elements, mode); in ReleaseShortArrayElements()
2508 GetPrimitiveArrayRegion<jshortArray, jshort, mirror::ShortArray>(env, array, start, length, in GetShortArrayRegion()
2552 SetPrimitiveArrayRegion<jshortArray, jshort, mirror::ShortArray>(env, array, start, length, in SetShortArrayRegion()