HomeSort by relevance Sort by last modified time
    Searched defs:bytes_allocated (Results 1 - 18 of 18) sorted by null

  /art/runtime/gc/allocator/
dlmalloc.cc 86 size_t* bytes_allocated = reinterpret_cast<size_t*>(arg); local
87 *bytes_allocated += used_bytes + sizeof(size_t);
rosalloc.cc 466 void* RosAlloc::AllocLargeObject(Thread* self, size_t size, size_t* bytes_allocated,
468 DCHECK(bytes_allocated != nullptr);
484 *bytes_allocated = total_bytes;
638 void* RosAlloc::AllocFromRunThreadUnsafe(Thread* self, size_t size, size_t* bytes_allocated,
641 DCHECK(bytes_allocated != nullptr);
650 *bytes_allocated = bracket_size;
658 void* RosAlloc::AllocFromRun(Thread* self, size_t size, size_t* bytes_allocated,
660 DCHECK(bytes_allocated != nullptr);
741 *bytes_allocated = bracket_size;
754 *bytes_allocated = bracket_size
1733 size_t* bytes_allocated = reinterpret_cast<size_t*>(arg); local
    [all...]
  /art/runtime/gc/
heap-inl.h 70 size_t bytes_allocated; local
88 bytes_allocated = byte_count;
89 usable_size = bytes_allocated;
93 (obj = rosalloc_space_->AllocThreadLocal(self, byte_count, &bytes_allocated)) &&
103 usable_size = bytes_allocated;
109 obj = TryToAllocate<kInstrumented, false>(self, allocator, byte_count, &bytes_allocated,
118 &bytes_allocated,
135 DCHECK_GT(bytes_allocated, 0u);
169 thread_stats->allocated_bytes += bytes_allocated;
172 global_stats->allocated_bytes += bytes_allocated;
    [all...]
heap.cc 2378 size_t bytes_allocated, dummy; local
3553 const uint64_t bytes_allocated = GetBytesAllocated(); local
    [all...]
  /art/runtime/gc/space/
memory_tool_malloc_space-inl.h 32 size_t bytes_allocated, size_t usable_size,
37 *bytes_allocated_out = bytes_allocated;
63 // Right redzone. Assumes that if bytes_allocated > usable_size, then the difference is
90 size_t bytes_allocated; local
94 &bytes_allocated, &usable_size,
102 bytes_allocated, usable_size,
119 size_t bytes_allocated; local
123 &bytes_allocated, &usable_size, &bytes_tl_bulk_allocated);
130 bytes_allocated, usable_size,
147 size_t bytes_allocated; local
    [all...]
large_object_space_test.cc 103 size_t bytes_allocated = 0, bytes_tl_bulk_allocated; local
105 mirror::Object* obj = los->Alloc(self, 100 * MB, &bytes_allocated, nullptr,
dlmalloc_space.cc 129 size_t* bytes_allocated, size_t* usable_size,
138 result = AllocWithoutGrowthLocked(self, num_bytes, bytes_allocated, usable_size,
266 size_t bytes_allocated = 0; local
267 mspace_inspect_all(mspace_, DlmallocBytesAllocatedCallback, &bytes_allocated);
268 return bytes_allocated;
rosalloc_space.cc 155 size_t* bytes_allocated, size_t* usable_size,
164 result = AllocCommon(self, num_bytes, bytes_allocated, usable_size,
290 size_t bytes_allocated = 0; local
291 InspectAllRosAlloc(art::gc::allocator::RosAlloc::BytesAllocatedCallback, &bytes_allocated, false);
292 return bytes_allocated;
space_test.h 71 size_t* bytes_allocated,
79 bytes_allocated,
91 size_t* bytes_allocated,
97 mirror::Object* obj = alloc_space->AllocWithGrowth(self, bytes, bytes_allocated, usable_size,
195 size_t bytes_allocated = 0; local
198 object.Assign(Alloc(space, self, alloc_size, &bytes_allocated, nullptr,
201 object.Assign(AllocWithGrowth(space, self, alloc_size, &bytes_allocated, nullptr,
209 EXPECT_EQ(bytes_allocated, allocation_size);
293 size_t bytes_allocated = 0; local
296 large_object.Assign(Alloc(space, self, three_quarters_space, &bytes_allocated, nullptr
    [all...]
region_space.h 44 mirror::Object* Alloc(Thread* self, size_t num_bytes, size_t* bytes_allocated,
48 mirror::Object* AllocThreadUnsafe(Thread* self, size_t num_bytes, size_t* bytes_allocated,
53 ALWAYS_INLINE mirror::Object* AllocNonvirtual(size_t num_bytes, size_t* bytes_allocated,
59 mirror::Object* AllocLarge(size_t num_bytes, size_t* bytes_allocated, size_t* usable_size,
61 void FreeLarge(mirror::Object* large_obj, size_t bytes_allocated) REQUIRES(!region_lock_);
275 ALWAYS_INLINE mirror::Object* Alloc(size_t num_bytes, size_t* bytes_allocated,
394 size_t bytes_allocated = RoundUp(BytesAllocated(), kRegionSize); local
395 DCHECK_GE(bytes_allocated, 0U);
396 uint result = (live_bytes_ * 100U) / bytes_allocated;
  /art/runtime/base/
arena_allocator.cc 130 const size_t bytes_allocated = BytesAllocated(); local
131 os << " MEM: used: " << bytes_allocated << ", allocated: " << malloc_bytes
136 << num_allocations << ", avg size: " << bytes_allocated / num_allocations << "\n";
  /art/runtime/gc/accounting/
mod_union_table_test.cc 53 size_t bytes_allocated = 0, bytes_tl_bulk_allocated; local
55 space->Alloc(self, size, &bytes_allocated, nullptr, &bytes_tl_bulk_allocated));
60 EXPECT_GE(bytes_allocated, size);
82 size_t bytes_allocated = 0, bytes_tl_bulk_allocated; local
83 auto* klass = down_cast<mirror::Class*>(space->Alloc(self, class_size, &bytes_allocated,
  /art/test/099-vmdebug/src/
Main.java 183 String bytes_allocated = VMDebug.getRuntimeStat("art.gc.bytes-allocated"); local
192 checkNumber(bytes_allocated);
210 String bytes_allocated = map.get("art.gc.bytes-allocated"); local
219 checkNumber(bytes_allocated);
  /art/runtime/gc/collector/
semi_space.cc 527 size_t bytes_allocated, dummy; local
533 forward_address = promo_dest_space_->AllocThreadUnsafe(self_, object_size, &bytes_allocated,
537 forward_address = to_space_->AllocThreadUnsafe(self_, object_size, &bytes_allocated, nullptr,
542 bytes_promoted_ += bytes_allocated;
583 forward_address = to_space_->AllocThreadUnsafe(self_, object_size, &bytes_allocated, nullptr,
591 forward_address = fallback_space_->AllocThreadUnsafe(self_, object_size, &bytes_allocated,
600 bytes_moved_ += bytes_allocated;
    [all...]
concurrent_copying.cc 1795 size_t bytes_allocated = 0U; local
    [all...]
  /cts/tests/tests/os/src/android/os/cts/
DebugTest.java 260 String bytes_allocated = Debug.getRuntimeStat("art.gc.bytes-allocated"); local
269 checkNumber(bytes_allocated);
287 String bytes_allocated = map.get("art.gc.bytes-allocated"); local
296 checkNumber(bytes_allocated);
  /external/v8/src/heap/
spaces.cc 1706 int bytes_allocated = static_cast<int>(top - top_on_previous_step_); local
    [all...]
  /external/e2fsprogs/lib/blkid/
probe.h 476 __u32 bytes_allocated; member in struct:master_file_table_record

Completed in 363 milliseconds