Searched refs:AllocArray (Results 1 – 15 of 15) sorted by relevance
/art/libartbase/base/ |
D | scoped_arena_allocator.h | 158 return AllocArray<T>(1, kind); 162 T* AllocArray(size_t length, ArenaAllocKind kind = kArenaAllocMisc) {
|
D | arena_allocator.h | 336 return AllocArray<T>(1, kind); 340 T* AllocArray(size_t length, ArenaAllocKind kind = kArenaAllocMisc) {
|
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()
|
D | arena_containers.h | 200 return allocator_->AllocArray<T>(n, ArenaAllocatorAdapterKind::Kind());
|
/art/runtime/ |
D | linear_alloc.h | 40 T* AllocArray(Thread* self, size_t elements) REQUIRES(!lock_) { in AllocArray() function
|
/art/compiler/utils/ |
D | assembler.cc | 31 contents_ = allocator_->AllocArray<uint8_t>(kInitialBufferCapacity, kArenaAllocAssembler); in AssemblerBuffer()
|
/art/compiler/optimizing/ |
D | gvn.cc | 43 buckets_(allocator->AllocArray<Node*>(num_buckets_, kArenaAllocGvn)), in ValueSet() 56 buckets_(allocator->AllocArray<Node*>(num_buckets_, kArenaAllocGvn)), in ValueSet()
|
D | register_allocator_test.cc | 473 register_allocator.registers_array_ = GetAllocator()->AllocArray<size_t>(1); in TEST_F() 928 register_allocator.registers_array_ = GetAllocator()->AllocArray<size_t>(1); in TEST_F()
|
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()
|
D | code_generator.h | 703 GetGraph()->GetAllocator()->AllocArray<LabelType>(size, kArenaAllocCodeGenerator); in CommonInitializeLabels()
|
D | code_generator.cc | 942 blocked_core_registers_(graph->GetAllocator()->AllocArray<bool>(number_of_core_registers, in CodeGenerator() 944 blocked_fpu_registers_(graph->GetAllocator()->AllocArray<bool>(number_of_fpu_registers, in CodeGenerator()
|
/art/runtime/mirror/ |
D | dex_cache.cc | 181 linear_alloc->AllocArray<GcRoot<mirror::String>>(self, num_strings); in AddPreResolvedStringsArray()
|
D | object_test.cc | 155 TEST_F(ObjectTest, AllocArray) { in TEST_F() argument
|
/art/runtime/verifier/ |
D | reg_type_cache.cc | 174 char* ptr = allocator_.AllocArray<char>(str.length()); in AddString()
|
D | method_verifier.cc | 888 insn_flags_.reset(allocator_.AllocArray<InstructionFlags>( in Verify()
|