Searched refs:allocated (Results 1 – 13 of 13) sorted by relevance
/art/test/980-redefine-object/ |
D | expected.txt | 6 Object allocated of type 'java.lang.Object' 8 Object allocated of type 'Transform' 11 Object allocated of type 'java.util.ArrayList' 13 Object allocated of type 'java.lang.Object' 14 Object allocated of type 'java.lang.Object' 15 Object allocated of type 'Transform' 17 Object allocated of type 'java.util.LinkedList' 19 Object allocated of type 'java.lang.Object' 20 Object allocated of type 'java.util.LinkedList$Node' 21 Object allocated of type 'java.lang.Object' [all …]
|
/art/runtime/openjdkjvmti/ |
D | ti_allocator.cc | 48 std::atomic<jlong> AllocUtil::allocated; member in openjdkjvmti::AllocUtil 55 *allocated_ptr = allocated.load(); in GetGlobalJvmtiAllocationState() 78 allocated += malloc_usable_size(ret); in AllocateImpl() 90 allocated -= malloc_usable_size(mem); in DeallocateImpl()
|
D | ti_allocator.h | 56 static std::atomic<jlong> allocated; variable
|
/art/test/1900-track-alloc/ |
D | alloc.cc | 27 typedef jvmtiError (*GetGlobalState)(jvmtiEnv* env, jlong* allocated); 76 jlong allocated = -1; in Java_art_Test1900_getAmountAllocated() local 77 JvmtiErrorToException(env, jvmti_env, data->get_global_state(jvmti_env, &allocated)); in Java_art_Test1900_getAmountAllocated() 78 return allocated; in Java_art_Test1900_getAmountAllocated()
|
D | info.txt | 1 Tests the jvmti-extension to get allocated memory snapshot.
|
/art/runtime/base/ |
D | scoped_arena_allocator.cc | 86 size_t allocated = static_cast<size_t>(top_ptr_ - top_arena_->Begin()); in UpdateBytesAllocated() local 87 if (top_arena_->bytes_allocated_ < allocated) { in UpdateBytesAllocated() 88 top_arena_->bytes_allocated_ = allocated; in UpdateBytesAllocated()
|
/art/test/661-classloader-allocator/ |
D | info.txt | 2 be (re-)allocated with the right class loader allocator,
|
/art/runtime/gc/space/ |
D | region_space-inl.h | 278 size_t allocated = num_regs * kRegionSize; in AllocLarge() local 281 first_reg->SetTop(first_reg->Begin() + allocated); in AllocLarge() 288 *bytes_allocated = allocated; in AllocLarge() 290 *usable_size = allocated; in AllocLarge() 292 *bytes_tl_bulk_allocated = allocated; in AllocLarge()
|
/art/test/510-checker-try-catch/smali/ |
D | RegisterAllocator.smali | 19 # Test that catch phis are allocated to a stack slot, and that equivalent catch 20 # phis are allocated to the same stack slot. 58 # Test that wide catch phis are allocated to two stack slots.
|
D | Runtime.smali | 61 # that both vregs allocated correctly.
|
/art/test/ |
D | valgrind-target-suppressions.txt | 20 # The VectorImpl class does not hold a pointer to the allocated SharedBuffer structure, but to the
|
/art/runtime/interpreter/mterp/ |
D | README.txt | 26 each handler is allocated a fixed region, allowing transitions to
|
/art/runtime/gc/ |
D | heap.cc | 3831 size_t allocated; in RegisterNativeFree() local 3834 allocated = new_native_bytes_allocated_.LoadRelaxed(); in RegisterNativeFree() 3835 new_freed_bytes = std::min(allocated, bytes); in RegisterNativeFree() 3836 } while (!new_native_bytes_allocated_.CompareExchangeWeakRelaxed(allocated, in RegisterNativeFree() 3837 allocated - new_freed_bytes)); in RegisterNativeFree()
|