/aosp12/art/runtime/mirror/ |
H A D | dex_cache.cc | 39 static T* AllocArray(Thread* self, LinearAlloc* alloc, size_t num) { in AllocArray() function 67 AllocArray<StringDexCacheType>(self, linear_alloc, num_strings); in InitializeNativeFields() 69 AllocArray<TypeDexCacheType>(self, linear_alloc, num_types); in InitializeNativeFields() 71 AllocArray<MethodDexCacheType>(self, linear_alloc, num_methods); in InitializeNativeFields() 73 AllocArray<FieldDexCacheType>(self, linear_alloc, num_fields); in InitializeNativeFields() 75 AllocArray<MethodTypeDexCacheType>(self, linear_alloc, num_method_types); in InitializeNativeFields() 77 AllocArray<GcRoot<CallSite>>(self, linear_alloc, num_call_sites); in InitializeNativeFields() 194 linear_alloc->AllocArray<GcRoot<mirror::String>>(self, num_strings); in AddPreResolvedStringsArray()
|
H A D | object_test.cc | 155 TEST_F(ObjectTest, AllocArray) { in TEST_F() argument
|
/aosp12/art/libartbase/base/ |
H A D | scoped_arena_allocator.h | 160 return AllocArray<T>(1, kind); 164 T* AllocArray(size_t length, ArenaAllocKind kind = kArenaAllocMisc) {
|
H A D | arena_allocator.h | 337 return AllocArray<T>(1, kind); 341 T* AllocArray(size_t length, ArenaAllocKind kind = kArenaAllocMisc) {
|
H A D | arena_allocator_test.cc | 56 small_array = allocator.AllocArray<uint32_t>(kSmallArraySize); in TEST_F() 62 uint32_t* large_array = allocator.AllocArray<uint32_t>(kLargeArraySize); in TEST_F()
|
H A D | arena_containers.h | 200 return allocator_->AllocArray<T>(n, ArenaAllocatorAdapterKind::Kind());
|
/aosp12/art/runtime/ |
H A D | linear_alloc.h | 40 T* AllocArray(Thread* self, size_t elements) REQUIRES(!lock_) { in AllocArray() function
|
/aosp12/art/compiler/utils/ |
H A D | assembler.cc | 31 contents_ = allocator_->AllocArray<uint8_t>(kInitialBufferCapacity, kArenaAllocAssembler); in AssemblerBuffer()
|
/aosp12/art/compiler/optimizing/ |
H A D | gvn.cc | 43 buckets_(allocator->AllocArray<Node*>(num_buckets_, kArenaAllocGvn)), in ValueSet() 56 buckets_(allocator->AllocArray<Node*>(num_buckets_, kArenaAllocGvn)), in ValueSet()
|
H A D | register_allocator_test.cc | 475 register_allocator.registers_array_ = GetAllocator()->AllocArray<size_t>(1); in TEST_F() 930 register_allocator.registers_array_ = GetAllocator()->AllocArray<size_t>(1); in TEST_F()
|
H A D | register_allocator_linear_scan.cc | 188 registers_array_ = allocator_->AllocArray<size_t>(number_of_registers_, in AllocateRegistersInternal() 208 registers_array_ = allocator_->AllocArray<size_t>(number_of_registers_, in AllocateRegistersInternal()
|
H A D | code_generator.cc | 1048 blocked_core_registers_(graph->GetAllocator()->AllocArray<bool>(number_of_core_registers, in CodeGenerator() 1050 blocked_fpu_registers_(graph->GetAllocator()->AllocArray<bool>(number_of_fpu_registers, in CodeGenerator()
|
H A D | code_generator.h | 768 GetGraph()->GetAllocator()->AllocArray<LabelType>(size, kArenaAllocCodeGenerator); in CommonInitializeLabels()
|
/aosp12/frameworks/compile/slang/tests/F_reduce_general_bad_result/ |
H A D | reduce_general_bad_result.rscript | 219 typedef rs_allocation AllocArray[10]; 224 static void OutAllocArray(AllocArray *out, const int *val) { }
|
/aosp12/art/runtime/verifier/ |
H A D | reg_type_cache.cc | 179 char* ptr = allocator_.AllocArray<char>(str.length()); in AddString()
|
H A D | method_verifier.cc | 1064 insn_flags_.reset(allocator_.AllocArray<InstructionFlags>( in Verify()
|