Home
last modified time | relevance | path

Searched refs:GetComponentSize (Results 1 – 13 of 13) sorted by relevance

/art/runtime/mirror/
Dobject_test.cc169 hs.NewHandle(Array::Alloc<true>(soa.Self(), c, 1, c->GetComponentSize(), in TEST_F()
175 a.Assign(Array::Alloc<true>(soa.Self(), c, 1, c->GetComponentSize(), in TEST_F()
181 a.Assign(Array::Alloc<true>(soa.Self(), c, 1, c->GetComponentSize(), in TEST_F()
192 hs.NewHandle(Array::Alloc<true>(soa.Self(), c, 1, c->GetComponentSize(), in TEST_F()
198 a.Assign(Array::Alloc<true>(soa.Self(), c, 2, c->GetComponentSize(), in TEST_F()
204 a.Assign(Array::Alloc<true>(soa.Self(), c, 2, c->GetComponentSize(), in TEST_F()
210 a.Assign(Array::Alloc<true>(soa.Self(), c, 2, c->GetComponentSize(), in TEST_F()
Darray.cc51 Array::Alloc<true>(self, array_class.Get(), array_length, array_class->GetComponentSize(), in RecursiveCreateMultiArray()
Darray-inl.h39 GetClass<kVerifyFlags, kReadBarrierOption>()->template GetComponentSize<kReadBarrierOption>(); in SizeOf()
157 CHECK_EQ(array_class->GetComponentSize(), component_size); in Alloc()
Dclass.h446 size_t GetComponentSize() SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) { in GetComponentSize() function
/art/runtime/entrypoints/
Dentrypoint_utils.cc93 return mirror::Array::Alloc<false>(self, klass, component_count, klass->GetComponentSize(), in CheckAndAllocArrayFromCode()
112 return mirror::Array::Alloc<true>(self, klass, component_count, klass->GetComponentSize(), in CheckAndAllocArrayFromCodeInstrumented()
Dentrypoint_utils-inl.h226 klass->GetComponentSize(), in AllocArrayFromCode()
230 klass->GetComponentSize(), allocator_type); in AllocArrayFromCode()
254 klass->GetComponentSize(), allocator_type); in AllocArrayFromCodeResolved()
/art/runtime/native/
Ddalvik_system_VMRuntime.cc79 array_class->GetComponentSize(), allocator); in VMRuntime_newNonMovableArray()
103 array_class->GetComponentSize(), allocator, in VMRuntime_newUnpaddedArray()
122 return reinterpret_cast<uintptr_t>(array->GetRawData(array->GetClass()->GetComponentSize(), 0)); in VMRuntime_addressOf()
/art/runtime/
Dtransaction_test.cc92 h_klass->GetComponentSize(), in TEST_F()
Dcheck_jni.cc1084 size_t component_size = a->GetClass()->GetComponentSize(); in CreateGuardedPACopy()
1105 memcpy(a->GetRawData(a->GetClass()->GetComponentSize(), 0), dataBuf, len); in ReleaseGuardedPACopy()
Djni_internal.cc2189 return array->GetRawData(array->GetClass()->GetComponentSize(), 0); in GetPrimitiveArrayCritical()
2202 const size_t component_size = array->GetClass()->GetComponentSize(); in ReleasePrimitiveArrayCritical()
2600 DCHECK_EQ(sizeof(ElementT), array->GetClass()->GetComponentSize()); in DecodeAndCheckArrayType()
Ddebugger.cc1427 c->GetComponentSize(), in CreateArrayObject()
4366 switch (c->GetComponentSize()) { in ExamineObject()
/art/runtime/interpreter/
Dinterpreter.cc40 array_class->GetComponentSize(), allocator, true)); in UnstartedRuntimeJni()
Dinterpreter_common.cc695 Object* newArray = Array::Alloc<true>(self, arrayClass, length, arrayClass->GetComponentSize(), in DoFilledNewArray()