Home
last modified time | relevance | path

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

/art/runtime/native/
Dsun_misc_Unsafe.cc361 } else if (component_type->IsPrimitiveInt() || component_type->IsPrimitiveFloat()) { in Unsafe_copyMemoryToPrimitiveArray()
392 } else if (component_type->IsPrimitiveInt() || component_type->IsPrimitiveFloat()) { in Unsafe_copyMemoryFromPrimitiveArray()
/art/runtime/mirror/
Dclass.h445 bool IsPrimitiveInt() REQUIRES_SHARED(Locks::mutator_lock_) { in IsPrimitiveInt() function
540 return component_type != nullptr && component_type->template IsPrimitiveInt<kNewFlags>(); in IsIntArrayClass()
Dobject-inl.h272 return component_type != nullptr && component_type->template IsPrimitiveInt<kNewFlags>(); in IsIntArray()
/art/runtime/interpreter/
Dunstarted_runtime.cc804 if (trg_type->IsPrimitiveInt()) { in UnstartedSystemArraycopy()
844 } else if (src_type->IsPrimitiveInt()) { in UnstartedSystemArraycopy()
Dinterpreter_common.cc1190 const bool is_primitive_int_component = component_class->IsPrimitiveInt(); in DoFilledNewArray()