HomeSort by relevance Sort by last modified time
    Searched refs:bytes_allocated (Results 1 - 25 of 28) sorted by null

1 2

  /external/chromium_org/gpu/command_buffer/common/
gpu_memory_allocation.h 62 uint64 bytes_allocated; member in struct:gpu::ManagedMemoryStats
71 bytes_allocated(0),
77 uint64 bytes_allocated,
81 bytes_allocated(bytes_allocated),
88 bytes_allocated == other.bytes_allocated &&
  /art/runtime/gc/space/
dlmalloc_space-inl.h 27 size_t* bytes_allocated) {
31 obj = AllocWithoutGrowthLocked(num_bytes, bytes_allocated);
40 inline mirror::Object* DlMallocSpace::AllocWithoutGrowthLocked(size_t num_bytes, size_t* bytes_allocated) {
48 DCHECK(bytes_allocated != NULL);
49 *bytes_allocated = allocation_size;
dlmalloc_space.h 54 size_t* bytes_allocated) LOCKS_EXCLUDED(lock_);
57 virtual mirror::Object* Alloc(Thread* self, size_t num_bytes, size_t* bytes_allocated);
64 mirror::Object* AllocNonvirtual(Thread* self, size_t num_bytes, size_t* bytes_allocated);
155 mirror::Object* AllocWithoutGrowthLocked(size_t num_bytes, size_t* bytes_allocated)
space_test.cc 256 size_t bytes_allocated = 0; local
258 mirror::Object* obj = los->Alloc(Thread::Current(), 100 * MB, &bytes_allocated);
353 size_t bytes_allocated = 0; local
355 object = space->Alloc(self, alloc_size, &bytes_allocated);
357 object = space->AllocWithGrowth(self, alloc_size, &bytes_allocated);
364 EXPECT_EQ(bytes_allocated, allocation_size);
434 size_t bytes_allocated = 0; local
436 large_object = space->Alloc(self, three_quarters_space, &bytes_allocated);
438 large_object = space->AllocWithGrowth(self, three_quarters_space, &bytes_allocated);
large_object_space.cc 58 mirror::Object* LargeObjectMapSpace::Alloc(Thread* self, size_t num_bytes, size_t* bytes_allocated) {
69 DCHECK(bytes_allocated != NULL);
70 *bytes_allocated = allocation_size;
249 mirror::Object* FreeListSpace::Alloc(Thread* self, size_t num_bytes, size_t* bytes_allocated) {
282 DCHECK(bytes_allocated != NULL);
283 *bytes_allocated = allocation_size;
dlmalloc_space.cc 51 virtual mirror::Object* AllocWithGrowth(Thread* self, size_t num_bytes, size_t* bytes_allocated) {
53 bytes_allocated);
65 virtual mirror::Object* Alloc(Thread* self, size_t num_bytes, size_t* bytes_allocated) {
67 bytes_allocated);
247 mirror::Object* DlMallocSpace::Alloc(Thread* self, size_t num_bytes, size_t* bytes_allocated) {
248 return AllocNonvirtual(self, num_bytes, bytes_allocated);
251 mirror::Object* DlMallocSpace::AllocWithGrowth(Thread* self, size_t num_bytes, size_t* bytes_allocated) {
259 result = AllocWithoutGrowthLocked(num_bytes, bytes_allocated);
large_object_space.h 86 mirror::Object* Alloc(Thread* self, size_t num_bytes, size_t* bytes_allocated);
112 mirror::Object* Alloc(Thread* self, size_t num_bytes, size_t* bytes_allocated);
space.h 158 // succeeds, the output parameter bytes_allocated will be set to the
160 virtual mirror::Object* Alloc(Thread* self, size_t num_bytes, size_t* bytes_allocated) = 0;
  /external/chromium_org/cc/resources/
memory_history.h 25 bytes_allocated(0),
30 size_t bytes_allocated; member in struct:cc::MemoryHistory::Entry
34 return bytes_allocated + bytes_unreleasable + bytes_over;
tile_manager.cc 752 memory_stats_from_last_assign_.bytes_allocated =
    [all...]
  /external/chromium_org/content/public/common/
gpu_memory_stats.cc 10 : bytes_allocated(0),
gpu_memory_stats.h 41 size_t bytes_allocated; member in struct:content::GPUVideoMemoryUsageStats
  /art/compiler/dex/
arena_allocator.cc 176 const size_t bytes_allocated = BytesAllocated(); local
177 os << " MEM: used: " << bytes_allocated << ", allocated: " << malloc_bytes
181 << num_allocations_ << ", avg size: " << bytes_allocated / num_allocations_ << "\n";
  /external/chromium_org/cc/output/
delegating_renderer.cc 169 size_t bytes_allocated) {
179 stats.bytes_allocated = bytes_allocated;
delegating_renderer.h 52 size_t bytes_allocated) OVERRIDE;
renderer.h 87 size_t bytes_allocated) = 0;
software_renderer.h 45 size_t bytes_allocated) OVERRIDE {}
gl_renderer.h 77 size_t bytes_allocated) OVERRIDE;
  /art/runtime/gc/
heap.cc 564 size_t bytes_allocated = 0; local
577 obj = Allocate(self, large_object_space_, byte_count, &bytes_allocated);
584 obj = Allocate(self, alloc_space_, byte_count, &bytes_allocated);
594 RecordAllocation(bytes_allocated, obj);
1795 const size_t bytes_allocated = GetBytesAllocated(); local
    [all...]
heap.h 433 template <class T> mirror::Object* Allocate(Thread* self, T* space, size_t num_bytes, size_t* bytes_allocated)
440 size_t* bytes_allocated)
446 size_t* bytes_allocated)
452 size_t* bytes_allocated)
  /external/chromium_org/content/common/gpu/
gpu_messages.h 191 IPC_STRUCT_TRAITS_MEMBER(bytes_allocated)
210 IPC_STRUCT_TRAITS_MEMBER(bytes_allocated)
    [all...]
gpu_memory_manager.cc 386 video_memory_usage_stats->bytes_allocated = GetCurrentUsage();
  /external/e2fsprogs/lib/blkid/
probe.h 475 __u32 bytes_allocated; member in struct:master_file_table_record
  /external/v8/src/
spaces.cc 1207 int bytes_allocated = static_cast<int>(new_top - top_on_previous_step_); local
1214 int bytes_allocated = static_cast<int>(old_top - top_on_previous_step_); local
    [all...]
  /external/chromium_org/cc/layers/
heads_up_display_layer_impl.cc 486 memory_entry_.bytes_allocated) / megabyte);

Completed in 2241 milliseconds

1 2