Home
last modified time | relevance | path

Searched refs:allocated (Results 1 – 14 of 14) sorted by relevance

/art/test/980-redefine-object/
Dexpected-stdout.txt6 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/openjdkjvmti/
Dti_allocator.cc48 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()
Dti_allocator.h56 static std::atomic<jlong> allocated; variable
/art/test/1000-non-moving-space-stress/
Dinfo.txt3 newly allocated object in the non-moving space with a dangling
4 reference to an object cleared or moved from a newly allocated region
/art/test/1900-track-alloc/
Dalloc.cc27 using GetGlobalState = jvmtiError(*)(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()
Dinfo.txt1 Tests the jvmti-extension to get allocated memory snapshot.
/art/test/1940-ddms-ext/
Dinfo.txt1 Tests the jvmti-extension to get allocated memory snapshot.
/art/test/661-classloader-allocator/
Dinfo.txt2 be (re-)allocated with the right class loader allocator,
/art/libartbase/base/
Dscoped_arena_allocator.cc85 size_t allocated = static_cast<size_t>(top_ptr_ - top_arena_->Begin()); in UpdateBytesAllocated() local
86 if (top_arena_->bytes_allocated_ < allocated) { in UpdateBytesAllocated()
87 top_arena_->bytes_allocated_ = allocated; in UpdateBytesAllocated()
/art/test/510-checker-try-catch/smali/
DRegisterAllocator.smali19 # 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.
DRuntime.smali61 # that both vregs allocated correctly.
/art/runtime/gc/space/
Dregion_space-inl.h418 size_t allocated = num_regs_in_large_region * kRegionSize; in AllocLargeInRange() local
421 first_reg->SetTop(first_reg->Begin() + allocated); in AllocLargeInRange()
440 *bytes_allocated = allocated; in AllocLargeInRange()
442 *usable_size = allocated; in AllocLargeInRange()
444 *bytes_tl_bulk_allocated = allocated; in AllocLargeInRange()
/art/runtime/gc/
Dheap.cc4030 size_t allocated; in RegisterNativeFree() local
4033 allocated = native_bytes_registered_.load(std::memory_order_relaxed); in RegisterNativeFree()
4034 new_freed_bytes = std::min(allocated, bytes); in RegisterNativeFree()
4038 } while (!native_bytes_registered_.CompareAndSetWeakRelaxed(allocated, in RegisterNativeFree()
4039 allocated - new_freed_bytes)); in RegisterNativeFree()
/art/build/boot/
Dpreloaded-classes18 # Classes in this file will be allocated into the boot image, and forcibly initialized in