Home
last modified time | relevance | path

Searched refs:component_count (Results 1 – 8 of 8) sorted by relevance

/art/runtime/entrypoints/quick/
Dquick_alloc_entrypoints.cc43 int32_t component_count, Thread* self, in artAllocArrayFromCode() argument
47 return AllocArrayFromCode(type_idx, method, component_count, self, false); in artAllocArrayFromCode()
52 int32_t component_count, in artAllocArrayFromCodeWithAccessCheck() argument
57 return AllocArrayFromCode(type_idx, method, component_count, self, true); in artAllocArrayFromCodeWithAccessCheck()
62 int32_t component_count, Thread* self, in artCheckAndAllocArrayFromCode() argument
66 return CheckAndAllocArrayFromCode(type_idx, method, component_count, self, false); in artCheckAndAllocArrayFromCode()
71 int32_t component_count, in artCheckAndAllocArrayFromCodeWithAccessCheck() argument
76 return CheckAndAllocArrayFromCode(type_idx, method, component_count, self, true); in artCheckAndAllocArrayFromCodeWithAccessCheck()
/art/runtime/mirror/
Darray.cc35 Array* Array::Alloc(Thread* self, Class* array_class, int32_t component_count, in Alloc() argument
38 DCHECK_GE(component_count, 0); in Alloc()
42 size_t data_size = component_count * component_size; in Alloc()
47 if (UNLIKELY(data_size >> component_shift != size_t(component_count) || size < data_size)) { in Alloc()
50 component_count).c_str()); in Alloc()
58 array->SetLength(component_count); in Alloc()
63 Array* Array::Alloc(Thread* self, Class* array_class, int32_t component_count) { in Alloc() argument
65 return Alloc(self, array_class, component_count, array_class->GetComponentSize()); in Alloc()
Darray-inl.h30 int32_t component_count = GetLength(); in SizeOf() local
32 size_t data_size = component_count * component_size; in SizeOf()
Darray.h29 static Array* Alloc(Thread* self, Class* array_class, int32_t component_count)
32 static Array* Alloc(Thread* self, Class* array_class, int32_t component_count,
/art/runtime/entrypoints/
Dentrypoint_utils.h84 int32_t component_count, in AllocArrayFromCode() argument
87 if (UNLIKELY(component_count < 0)) { in AllocArrayFromCode()
88 ThrowNegativeArraySizeException(component_count); in AllocArrayFromCode()
107 return mirror::Array::Alloc(self, klass, component_count); in AllocArrayFromCode()
111 int32_t component_count,
Dentrypoint_utils.cc38 int32_t component_count, Thread* self, in CheckAndAllocArrayFromCode() argument
40 if (UNLIKELY(component_count < 0)) { in CheckAndAllocArrayFromCode()
41 ThrowNegativeArraySizeException(component_count); in CheckAndAllocArrayFromCode()
73 return mirror::Array::Alloc(self, klass, component_count); in CheckAndAllocArrayFromCode()
/art/runtime/arch/mips/
Dquick_entrypoints_mips.S795 … # artAllocArrayFromCode(uint32_t type_idx, Method* method, int32_t component_count, Thread*, $sp)
810 # artAllocArrayFromCodeWithAccessCheck(type_idx, method, component_count, Thread*, $sp)
/art/runtime/arch/arm/
Dquick_entrypoints_arm.S735 @ artAllocArrayFromCode(uint32_t type_idx, Method* method, int32_t component_count, Thread*, SP)
756 @ artAllocArrayFromCodeWithAccessCheck(type_idx, method, component_count, Thread*, SP)