Home
last modified time | relevance | path

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

/art/runtime/interpreter/mterp/
Dnterp.cc627 ObjPtr<mirror::Class> component_class = array_class->GetComponentType(); in DoFilledNewArray() local
628 const bool is_primitive_int_component = component_class->IsPrimitiveInt(); in DoFilledNewArray()
629 if (UNLIKELY(component_class->IsPrimitive() && !is_primitive_int_component)) { in DoFilledNewArray()
630 if (component_class->IsPrimitiveLong() || component_class->IsPrimitiveDouble()) { in DoFilledNewArray()
632 component_class->PrettyDescriptor().c_str()); in DoFilledNewArray()
637 component_class->PrettyDescriptor().c_str()); in DoFilledNewArray()
/art/runtime/native/
Djdk_internal_misc_Unsafe.cc250 static jint Unsafe_getArrayBaseOffsetForComponentType(JNIEnv* env, jclass, jclass component_class) { in Unsafe_getArrayBaseOffsetForComponentType() argument
252 ObjPtr<mirror::Class> component = soa.Decode<mirror::Class>(component_class); in Unsafe_getArrayBaseOffsetForComponentType()
257 static jint Unsafe_getArrayIndexScaleForComponentType(JNIEnv* env, jclass, jclass component_class) { in Unsafe_getArrayIndexScaleForComponentType() argument
259 ObjPtr<mirror::Class> component = soa.Decode<mirror::Class>(component_class); in Unsafe_getArrayIndexScaleForComponentType()
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()
/art/runtime/interpreter/
Dinterpreter_common.cc1479 ObjPtr<mirror::Class> component_class = array_class->GetComponentType(); in DoFilledNewArray() local
1480 const bool is_primitive_int_component = component_class->IsPrimitiveInt(); in DoFilledNewArray()
1481 if (UNLIKELY(component_class->IsPrimitive() && !is_primitive_int_component)) { in DoFilledNewArray()
1482 if (component_class->IsPrimitiveLong() || component_class->IsPrimitiveDouble()) { in DoFilledNewArray()
1484 component_class->PrettyDescriptor().c_str()); in DoFilledNewArray()
1488 component_class->PrettyDescriptor().c_str()); in DoFilledNewArray()