Home
last modified time | relevance | path

Searched refs:ComponentSize (Results 1 – 10 of 10) sorted by relevance

/art/test/004-UnsafeTest/
Dunsafe_test.cc31 Primitive::ComponentSize(klass->GetComponentType()->GetPrimitiveType())).Int32Value(); in Java_Main_vmArrayBaseOffset()
37 return Primitive::ComponentSize(klass->GetComponentType()->GetPrimitiveType()); in Java_Main_vmArrayIndexScale()
/art/runtime/
Dprimitive.h71 static size_t ComponentSize(Type type) { in ComponentSize() function
90 return ComponentSize(type) <= 4 ? 4 : 8; in FieldSize()
/art/runtime/native/
Djava_lang_System.cc99 DCHECK_EQ(Primitive::ComponentSize(dstComponentPrimitiveType), 1U); in System_arraycopy()
104 DCHECK_EQ(Primitive::ComponentSize(dstComponentPrimitiveType), 2U); in System_arraycopy()
109 DCHECK_EQ(Primitive::ComponentSize(dstComponentPrimitiveType), 4U); in System_arraycopy()
114 DCHECK_EQ(Primitive::ComponentSize(dstComponentPrimitiveType), 8U); in System_arraycopy()
Dsun_misc_Unsafe.cc176 return mirror::Array::DataOffset(Primitive::ComponentSize(primitive_type)).Int32Value(); in Unsafe_getArrayBaseOffsetForComponentType()
183 return Primitive::ComponentSize(primitive_type); in Unsafe_getArrayIndexScaleForComponentType()
/art/compiler/jni/quick/
Dcalling_convention.h38 size_t result = Primitive::ComponentSize(Primitive::GetType(shorty_[0])); in SizeOfReturnValue()
176 size_t result = Primitive::ComponentSize(Primitive::GetType(shorty_[param])); in ParamSize()
Djni_compiler.cc319 Primitive::ComponentSize(main_jni_conv->GetReturnType())); in ArtJniCompileMethodInternal()
323 Primitive::ComponentSize(main_jni_conv->GetReturnType())); in ArtJniCompileMethodInternal()
/art/runtime/interpreter/
Dinterpreter.cc117 result->SetI(mirror::Array::DataOffset(Primitive::ComponentSize(primitive_type)).Int32Value()); in UnstartedRuntimeJni()
121 result->SetI(Primitive::ComponentSize(primitive_type)); in UnstartedRuntimeJni()
/art/runtime/gc/space/
Dspace_test.h109 return mirror::Array::DataOffset(Primitive::ComponentSize(Primitive::kPrimByte)).Uint32Value(); in SizeOfZeroLengthByteArray()
/art/runtime/mirror/
Dclass.h442 return Primitive::ComponentSize( in GetComponentSize()
/art/runtime/verifier/
Dmethod_verifier.cc1896 size_t elem_width = Primitive::ComponentSize(component_type.GetPrimitiveType()); in CodeFlowVerifyInstruction()