Home
last modified time | relevance | path

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

/art/runtime/native/
Dsun_misc_Unsafe.cc357 } else if (component_type->IsPrimitiveInt() || component_type->IsPrimitiveFloat()) { in Unsafe_copyMemoryToPrimitiveArray()
388 } else if (component_type->IsPrimitiveInt() || component_type->IsPrimitiveFloat()) { in Unsafe_copyMemoryFromPrimitiveArray()
/art/runtime/mirror/
Dclass.h444 bool IsPrimitiveInt() REQUIRES_SHARED(Locks::mutator_lock_) { in IsPrimitiveInt() function
539 return component_type != nullptr && component_type->template IsPrimitiveInt<kNewFlags>(); in IsIntArrayClass()
Dobject-inl.h273 return component_type != nullptr && component_type->template IsPrimitiveInt<kNewFlags>(); in IsIntArray()
/art/runtime/interpreter/
Dunstarted_runtime.cc805 if (trg_type->IsPrimitiveInt()) { in UnstartedSystemArraycopy()
845 } else if (src_type->IsPrimitiveInt()) { in UnstartedSystemArraycopy()
Dinterpreter_common.cc1140 const bool is_primitive_int_component = component_class->IsPrimitiveInt(); in DoFilledNewArray()