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

1 2

  /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;
  /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
  /external/chromium_org/content/common/gpu/
gpu_memory_allocation.h 123 uint64 bytes_allocated; member in struct:content::GpuManagedMemoryStats
132 bytes_allocated(0),
138 uint64 bytes_allocated,
142 bytes_allocated(bytes_allocated),
149 bytes_allocated == other.bytes_allocated &&
gpu_memory_manager.cc 294 TrackValueChanged(0, client_state->managed_memory_stats_.bytes_allocated,
306 TrackValueChanged(client_state->managed_memory_stats_.bytes_allocated, 0,
323 TrackValueChanged(client_state->managed_memory_stats_.bytes_allocated, 0,
327 TrackValueChanged(0, client_state->managed_memory_stats_.bytes_allocated,
338 TrackValueChanged(client_state->managed_memory_stats_.bytes_allocated,
339 stats.bytes_allocated,
397 video_memory_usage_stats->bytes_allocated = GetCurrentUsage();
    [all...]
gpu_messages.h 171 IPC_STRUCT_TRAITS_MEMBER(bytes_allocated)
193 IPC_STRUCT_TRAITS_MEMBER(bytes_allocated)
  /external/chromium_org/cc/output/
delegating_renderer.h 46 size_t bytes_allocated) OVERRIDE;
renderer.h 78 size_t bytes_allocated) = 0;
delegating_renderer.cc 203 size_t bytes_allocated) {
213 stats.bytesAllocated = bytes_allocated;
software_renderer.h 44 size_t bytes_allocated) OVERRIDE {}
gl_renderer.h 70 size_t bytes_allocated) OVERRIDE;
  /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";
  /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/browser/gpu/
gpu_memory_test.cc 43 bytes_allocated_ = video_memory_usage_stats.bytes_allocated;
  /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 479 memory_entry_.bytes_allocated) / megabyte);

Completed in 409 milliseconds

1 2