Home
last modified time | relevance | path

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

/art/runtime/mirror/
Darray-inl.h46 int32_t component_count = in SizeOf() local
49 size_t data_size = component_count << component_size_shift; in SizeOf()
71 static inline size_t ComputeArraySize(int32_t component_count, size_t component_size_shift) { in ComputeArraySize() argument
72 DCHECK_GE(component_count, 0); in ComputeArraySize()
76 size_t data_size = static_cast<size_t>(component_count) << component_size_shift; in ComputeArraySize()
91 if (UNLIKELY(length_limit <= static_cast<size_t>(component_count))) { in ComputeArraySize()
156 int32_t component_count, in Alloc() argument
164 size_t size = ComputeArraySize(component_count, component_size_shift); in Alloc()
173 component_count).c_str()); in Alloc()
180 SetLengthVisitor visitor(component_count); in Alloc()
[all …]
Darray.h43 int32_t component_count,
/art/runtime/entrypoints/
Dentrypoint_utils.h77 int32_t component_count,
89 int32_t component_count,
98 int32_t component_count,
Dentrypoint_utils-inl.h236 int32_t component_count, in CheckArrayAlloc() argument
239 if (UNLIKELY(component_count < 0)) { in CheckArrayAlloc()
240 ThrowNegativeArraySizeException(component_count); in CheckArrayAlloc()
273 int32_t component_count, in AllocArrayFromCode() argument
278 mirror::Class* klass = CheckArrayAlloc<kAccessCheck>(type_idx, component_count, method, in AllocArrayFromCode()
288 component_count, in AllocArrayFromCode()
292 return mirror::Array::Alloc<kInstrumented>(self, klass, component_count, in AllocArrayFromCode()
299 int32_t component_count, in AllocArrayFromCodeResolved() argument
303 if (UNLIKELY(component_count < 0)) { in AllocArrayFromCodeResolved()
304 ThrowNegativeArraySizeException(component_count); in AllocArrayFromCodeResolved()
[all …]
/art/runtime/gc/accounting/
Dmod_union_table_test.cc49 Thread* self, space::ContinuousMemMapAllocSpace* space, size_t component_count) in AllocObjectArray() argument
52 const size_t size = mirror::ComputeArraySize(component_count, 2); in AllocObjectArray()
58 obj->SetLength(static_cast<int32_t>(component_count)); in AllocObjectArray()
/art/runtime/entrypoints/quick/
Dquick_alloc_entrypoints.cc87 mirror::Class* klass, int32_t component_count, Thread* self) \
90 return AllocArrayFromCodeResolved<instrumented_bool>(klass, component_count, self, \
/art/runtime/arch/mips64/
Dquick_entrypoints_mips64.S1856 # a1: int32_t component_count
1858 dext $a4, $a1, 0, 32 # Create zero-extended component_count. Value
1864 # a1: int32_t component_count
/art/runtime/arch/mips/
Dquick_entrypoints_mips.S1929 # a1: int32_t component_count
1935 # a1: int32_t component_count
/art/runtime/arch/arm/
Dquick_entrypoints_arm.S990 @ (uint32_t type_idx, Method* method, int32_t component_count, Thread*)