Home
last modified time | relevance | path

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

/aosp12/art/runtime/interpreter/mterp/
H A Dnterp.cc663 ObjPtr<mirror::Class> component_class = array_class->GetComponentType(); in DoFilledNewArray() local
664 const bool is_primitive_int_component = component_class->IsPrimitiveInt(); in DoFilledNewArray()
665 if (UNLIKELY(component_class->IsPrimitive() && !is_primitive_int_component)) { in DoFilledNewArray()
666 if (component_class->IsPrimitiveLong() || component_class->IsPrimitiveDouble()) { in DoFilledNewArray()
668 component_class->PrettyDescriptor().c_str()); in DoFilledNewArray()
673 component_class->PrettyDescriptor().c_str()); in DoFilledNewArray()
/aosp12/art/runtime/interpreter/
H A Dinterpreter_common.cc1464 ObjPtr<mirror::Class> component_class = array_class->GetComponentType(); in DoFilledNewArray() local
1465 const bool is_primitive_int_component = component_class->IsPrimitiveInt(); in DoFilledNewArray()
1466 if (UNLIKELY(component_class->IsPrimitive() && !is_primitive_int_component)) { in DoFilledNewArray()
1467 if (component_class->IsPrimitiveLong() || component_class->IsPrimitiveDouble()) { in DoFilledNewArray()
1469 component_class->PrettyDescriptor().c_str()); in DoFilledNewArray()
1473 component_class->PrettyDescriptor().c_str()); in DoFilledNewArray()
/aosp12/art/runtime/native/
H A 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()