/art/runtime/entrypoints/quick/ |
D | quick_alloc_entrypoints.cc | 43 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/ |
D | array.cc | 35 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()
|
D | array-inl.h | 30 int32_t component_count = GetLength(); in SizeOf() local 32 size_t data_size = component_count * component_size; in SizeOf()
|
D | array.h | 29 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/ |
D | entrypoint_utils.h | 84 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,
|
D | entrypoint_utils.cc | 38 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/ |
D | quick_entrypoints_mips.S | 795 … # 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/ |
D | quick_entrypoints_arm.S | 735 @ artAllocArrayFromCode(uint32_t type_idx, Method* method, int32_t component_count, Thread*, SP) 756 @ artAllocArrayFromCodeWithAccessCheck(type_idx, method, component_count, Thread*, SP)
|