Home
last modified time | relevance | path

Searched refs:IsPrimitiveInt (Results 1 – 6 of 6) sorted by relevance

/art/runtime/entrypoints/
Dentrypoint_utils.cc60 if (UNLIKELY(klass->IsPrimitive() && !klass->IsPrimitiveInt())) { in CheckFilledNewArrayAlloc()
/art/runtime/native/
Dsun_misc_Unsafe.cc352 } else if (component_type->IsPrimitiveInt() || component_type->IsPrimitiveFloat()) { in Unsafe_copyMemoryToPrimitiveArray()
383 } else if (component_type->IsPrimitiveInt() || component_type->IsPrimitiveFloat()) { in Unsafe_copyMemoryFromPrimitiveArray()
/art/runtime/mirror/
Dclass.h418 bool IsPrimitiveInt() SHARED_REQUIRES(Locks::mutator_lock_) { in IsPrimitiveInt() function
516 return component_type != nullptr && component_type->template IsPrimitiveInt<kNewFlags>(); in IsIntArrayClass()
Dobject-inl.h350 return component_type != nullptr && component_type->template IsPrimitiveInt<kNewFlags>(); in IsIntArray()
/art/runtime/interpreter/
Dunstarted_runtime.cc622 if (trg_type->IsPrimitiveInt()) { in UnstartedSystemArraycopy()
660 } else if (src_type->IsPrimitiveInt()) { in UnstartedSystemArraycopy()
Dinterpreter_common.cc846 const bool is_primitive_int_component = component_class->IsPrimitiveInt(); in DoFilledNewArray()