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.cc377 copyToArray(srcAddr, ObjPtr<mirror::ShortArray>::DownCast(dst), dst_offset, sz); in Unsafe_copyMemoryToPrimitiveArray()
412 copyFromArray(dstAddr, ObjPtr<mirror::ShortArray>::DownCast(src), src_offset, sz); in Unsafe_copyMemoryFromPrimitiveArray()
/art/runtime/
Dreference_table_test.cc118 Handle<mirror::ShortArray> o2 = hs.NewHandle(mirror::ShortArray::Alloc(soa.Self(), 0)); in TEST_F()
Dclass_linker_test.cc1133 Handle<mirror::ShortArray> short_array(hs.NewHandle(mirror::ShortArray::Alloc(soa.Self(), 0))); in TEST_F()
Dtransaction_test.cc457 Handle<mirror::ShortArray> shortArray = in TEST_F()
/art/runtime/mirror/
Dobject_test.cc257 TestPrimitiveArray<ShortArray>(class_linker_); in TEST_F()
863 Handle<mirror::ShortArray> a(hs.NewHandle(mirror::ShortArray::Alloc(soa.Self(), 2))); in TEST_F()
Dobject.h60 using ShortArray = PrimitiveArray<int16_t>; variable
230 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.h1033 return HandleAGet<mirror::ShortArray>(&InstructionHandler::SetVReg); in AGET_SHORT()
1061 return HandleAPut<mirror::ShortArray>(GetVReg(A())); in APUT_SHORT()
/art/runtime/jni/
Djni_internal.cc2359 return NewPrimitiveArray<jshortArray, mirror::ShortArray>(env, length); in NewShortArray()
2434 return GetPrimitiveArray<jshortArray, jshort, mirror::ShortArray>(env, array, is_copy); in GetShortArrayElements()
2471 ReleasePrimitiveArray<jshortArray, jshort, mirror::ShortArray>(env, array, elements, mode); in ReleaseShortArrayElements()
2514 GetPrimitiveArrayRegion<jshortArray, jshort, mirror::ShortArray>(env, array, start, length, in GetShortArrayRegion()
2558 SetPrimitiveArrayRegion<jshortArray, jshort, mirror::ShortArray>(env, array, start, length, in SetShortArrayRegion()