Home
last modified time | relevance | path

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

/art/test/980-redefine-object/
Dexpected.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/runtime/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/1900-track-alloc/
Dalloc.cc27 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()
Dinfo.txt1 Tests the jvmti-extension to get allocated memory snapshot.
/art/runtime/base/
Dscoped_arena_allocator.cc86 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/
Dinfo.txt2 be (re-)allocated with the right class loader allocator,
/art/runtime/gc/space/
Dregion_space-inl.h278 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/
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/test/
Dvalgrind-target-suppressions.txt20 # The VectorImpl class does not hold a pointer to the allocated SharedBuffer structure, but to the
/art/runtime/interpreter/mterp/
DREADME.txt26 each handler is allocated a fixed region, allowing transitions to
/art/runtime/gc/
Dheap.cc3831 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()