Home
last modified time | relevance | path

Searched refs:component_class (Results 1 – 3 of 3) sorted by relevance

/art/runtime/interpreter/mterp/
Dnterp.cc547 ObjPtr<mirror::Class> component_class = array_class->GetComponentType(); in DoFilledNewArray() local
548 const bool is_primitive_int_component = component_class->IsPrimitiveInt(); in DoFilledNewArray()
549 if (UNLIKELY(component_class->IsPrimitive() && !is_primitive_int_component)) { in DoFilledNewArray()
550 if (component_class->IsPrimitiveLong() || component_class->IsPrimitiveDouble()) { in DoFilledNewArray()
552 component_class->PrettyDescriptor().c_str()); in DoFilledNewArray()
557 component_class->PrettyDescriptor().c_str()); in DoFilledNewArray()
/art/runtime/interpreter/
Dinterpreter_common.cc1468 ObjPtr<mirror::Class> component_class = array_class->GetComponentType(); in DoFilledNewArray() local
1469 const bool is_primitive_int_component = component_class->IsPrimitiveInt(); in DoFilledNewArray()
1470 if (UNLIKELY(component_class->IsPrimitive() && !is_primitive_int_component)) { in DoFilledNewArray()
1471 if (component_class->IsPrimitiveLong() || component_class->IsPrimitiveDouble()) { in DoFilledNewArray()
1473 component_class->PrettyDescriptor().c_str()); in DoFilledNewArray()
1477 component_class->PrettyDescriptor().c_str()); in DoFilledNewArray()
/art/runtime/native/
Dsun_misc_Unsafe.cc208 static jint Unsafe_getArrayBaseOffsetForComponentType(JNIEnv* env, jclass, jclass component_class) { in Unsafe_getArrayBaseOffsetForComponentType() argument
210 ObjPtr<mirror::Class> component = soa.Decode<mirror::Class>(component_class); in Unsafe_getArrayBaseOffsetForComponentType()
215 static jint Unsafe_getArrayIndexScaleForComponentType(JNIEnv* env, jclass, jclass component_class) { in Unsafe_getArrayIndexScaleForComponentType() argument
217 ObjPtr<mirror::Class> component = soa.Decode<mirror::Class>(component_class); in Unsafe_getArrayIndexScaleForComponentType()