Home
last modified time | relevance | path

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

/art/runtime/native/
Dsun_misc_Unsafe.cc174 static jint Unsafe_getArrayBaseOffsetForComponentType(JNIEnv* env, jclass, jobject component_class)… in Unsafe_getArrayBaseOffsetForComponentType() argument
176 mirror::Class* component = soa.Decode<mirror::Class*>(component_class); in Unsafe_getArrayBaseOffsetForComponentType()
181 static jint Unsafe_getArrayIndexScaleForComponentType(JNIEnv* env, jclass, jobject component_class)… in Unsafe_getArrayIndexScaleForComponentType() argument
183 mirror::Class* component = soa.Decode<mirror::Class*>(component_class); in Unsafe_getArrayIndexScaleForComponentType()
/art/runtime/interpreter/
Dinterpreter_common.cc714 Class* component_class = array_class->GetComponentType(); in DoFilledNewArray() local
715 const bool is_primitive_int_component = component_class->IsPrimitiveInt(); in DoFilledNewArray()
716 if (UNLIKELY(component_class->IsPrimitive() && !is_primitive_int_component)) { in DoFilledNewArray()
717 if (component_class->IsPrimitiveLong() || component_class->IsPrimitiveDouble()) { in DoFilledNewArray()
719 PrettyDescriptor(component_class).c_str()); in DoFilledNewArray()
723 PrettyDescriptor(component_class).c_str()); in DoFilledNewArray()