Searched defs:component_count (Results 1 - 3 of 3) sorted by relevance

/art/runtime/mirror/
H A Darray-inl.h30 int32_t component_count = GetLength(); local
32 size_t data_size = component_count * component_size;
H A Darray.cc35 Array* Array::Alloc(Thread* self, Class* array_class, int32_t component_count, argument
38 DCHECK_GE(component_count, 0);
42 size_t data_size = component_count * component_size;
47 if (UNLIKELY(data_size >> component_shift != size_t(component_count) || size < data_size)) {
50 component_count).c_str());
58 array->SetLength(component_count);
63 Array* Array::Alloc(Thread* self, Class* array_class, int32_t component_count) { argument
65 return Alloc(self, array_class, component_count, array_class->GetComponentSize());
/art/runtime/entrypoints/
H A Dentrypoint_utils.cc38 int32_t component_count, Thread* self,
40 if (UNLIKELY(component_count < 0)) {
41 ThrowNegativeArraySizeException(component_count);
73 return mirror::Array::Alloc(self, klass, component_count);
37 CheckAndAllocArrayFromCode(uint32_t type_idx, mirror::ArtMethod* referrer, int32_t component_count, Thread* self, bool access_check) argument

Completed in 2213 milliseconds