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

  /art/runtime/gc/allocator/
dlmalloc.cc 92 size_t* bytes_allocated = reinterpret_cast<size_t*>(arg); local
93 *bytes_allocated += used_bytes + sizeof(size_t);
rosalloc.cc 460 void* RosAlloc::AllocLargeObject(Thread* self, size_t size, size_t* bytes_allocated,
462 DCHECK(bytes_allocated != nullptr);
478 *bytes_allocated = total_bytes;
632 void* RosAlloc::AllocFromRunThreadUnsafe(Thread* self, size_t size, size_t* bytes_allocated,
635 DCHECK(bytes_allocated != nullptr);
644 *bytes_allocated = bracket_size;
652 void* RosAlloc::AllocFromRun(Thread* self, size_t size, size_t* bytes_allocated,
654 DCHECK(bytes_allocated != nullptr);
735 *bytes_allocated = bracket_size;
748 *bytes_allocated = bracket_size
1727 size_t* bytes_allocated = reinterpret_cast<size_t*>(arg); local
    [all...]
  /external/tensorflow/tensorflow/core/common_runtime/sycl/
sycl_allocator.cc 47 const std::size_t bytes_allocated = allocated_buffer.get_range().size(); local
50 stats_.bytes_in_use += bytes_allocated;
54 std::max<int64>(stats_.max_alloc_size, bytes_allocated);
  /art/runtime/gc/
heap-inl.h 79 size_t bytes_allocated; local
93 bytes_allocated = byte_count;
94 usable_size = bytes_allocated;
99 (obj = rosalloc_space_->AllocThreadLocal(self, byte_count, &bytes_allocated)) != nullptr &&
106 usable_size = bytes_allocated;
112 obj = TryToAllocate<kInstrumented, false>(self, allocator, byte_count, &bytes_allocated,
121 &bytes_allocated,
138 DCHECK_GT(bytes_allocated, 0u);
175 thread_stats->allocated_bytes += bytes_allocated;
178 global_stats->allocated_bytes += bytes_allocated;
    [all...]
heap.cc 2240 size_t bytes_allocated, dummy; local
3444 const uint64_t bytes_allocated = GetBytesAllocated(); local
    [all...]
  /art/runtime/gc/space/
memory_tool_malloc_space-inl.h 34 size_t bytes_allocated, size_t usable_size,
39 *bytes_allocated_out = bytes_allocated;
65 // Right redzone. Assumes that if bytes_allocated > usable_size, then the difference is
92 size_t bytes_allocated; local
96 &bytes_allocated, &usable_size,
104 bytes_allocated, usable_size,
121 size_t bytes_allocated; local
125 &bytes_allocated, &usable_size, &bytes_tl_bulk_allocated);
132 bytes_allocated, usable_size,
149 size_t bytes_allocated; local
    [all...]
large_object_space_test.cc 113 size_t bytes_allocated = 0, bytes_tl_bulk_allocated; local
115 mirror::Object* obj = los->Alloc(self, 100 * MB, &bytes_allocated, nullptr,
dlmalloc_space.cc 131 size_t* bytes_allocated, size_t* usable_size,
140 result = AllocWithoutGrowthLocked(self, num_bytes, bytes_allocated, usable_size,
268 size_t bytes_allocated = 0; local
269 mspace_inspect_all(mspace_, DlmallocBytesAllocatedCallback, &bytes_allocated);
270 return bytes_allocated;
rosalloc_space.cc 157 size_t* bytes_allocated, size_t* usable_size,
166 result = AllocCommon(self, num_bytes, bytes_allocated, usable_size,
292 size_t bytes_allocated = 0; local
293 InspectAllRosAlloc(art::gc::allocator::RosAlloc::BytesAllocatedCallback, &bytes_allocated, false);
294 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,
192 size_t bytes_allocated = 0; local
195 object.Assign(Alloc(space, self, alloc_size, &bytes_allocated, nullptr,
198 object.Assign(AllocWithGrowth(space, self, alloc_size, &bytes_allocated, nullptr,
206 EXPECT_EQ(bytes_allocated, allocation_size);
290 size_t bytes_allocated = 0; local
293 large_object.Assign(Alloc(space, self, three_quarters_space, &bytes_allocated, nullptr
    [all...]
region_space.cc 174 const size_t bytes_allocated = RoundUp(BytesAllocated(), kRegionSize); local
175 DCHECK_LE(live_bytes_, bytes_allocated);
180 result = (live_bytes_ * 100U < kEvacuateLivePercentThreshold * bytes_allocated);
  /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/runtime/base/
arena_allocator.cc 144 const size_t bytes_allocated = BytesAllocated(); local
145 os << " MEM: used: " << bytes_allocated << ", allocated: " << malloc_bytes
150 << num_allocations << ", avg size: " << bytes_allocated / num_allocations << "\n";
  /art/test/099-vmdebug/src/
Main.java 184 String bytes_allocated = VMDebug.getRuntimeStat("art.gc.bytes-allocated"); local
193 checkNumber(bytes_allocated);
211 String bytes_allocated = map.get("art.gc.bytes-allocated"); local
220 checkNumber(bytes_allocated);
  /art/runtime/gc/collector/
semi_space.cc 515 size_t bytes_allocated, dummy; local
521 forward_address = promo_dest_space_->AllocThreadUnsafe(self_, object_size, &bytes_allocated,
525 forward_address = to_space_->AllocThreadUnsafe(self_, object_size, &bytes_allocated, nullptr,
530 bytes_promoted_ += bytes_allocated;
571 forward_address = to_space_->AllocThreadUnsafe(self_, object_size, &bytes_allocated, nullptr,
579 forward_address = fallback_space_->AllocThreadUnsafe(self_, object_size, &bytes_allocated,
588 bytes_moved_ += bytes_allocated;
    [all...]
concurrent_copying.cc 2357 size_t bytes_allocated = 0U; local
    [all...]
  /cts/tests/tests/os/src/android/os/cts/
DebugTest.java 262 String bytes_allocated = Debug.getRuntimeStat("art.gc.bytes-allocated"); local
271 checkNumber(bytes_allocated);
289 String bytes_allocated = map.get("art.gc.bytes-allocated"); local
298 checkNumber(bytes_allocated);
  /external/syslinux/core/fs/ntfs/
ntfs.h 240 uint32_t bytes_allocated; member in struct:ntfs_mft_record
258 uint32_t bytes_allocated; member in struct:ntfs_mft_record_old
  /external/v8/src/heap/
spaces.cc 1830 int bytes_allocated = static_cast<int>(top - top_on_previous_step_); local
    [all...]
  /external/e2fsprogs/lib/blkid/
probe.h 479 __u32 bytes_allocated; member in struct:master_file_table_record
  /external/protobuf/php/ext/google/protobuf/
upb.h 5214 size_t bytes_allocated; member in class:upb::HandlerAttributes::upb::BufferHandle::upb::Handlers::upb::BytesHandler::upb::Environment
    [all...]
  /external/protobuf/ruby/ext/google/protobuf_c/
upb.h 633 size_t bytes_allocated; member in class:upb::Arena
    [all...]

Completed in 1346 milliseconds