HomeSort by relevance Sort by last modified time
    Searched refs:bytes_allocated_ (Results 1 - 9 of 9) sorted by null

  /external/chromium_org/base/memory/
discardable_memory_manager.cc 23 bytes_allocated_(0u),
27 BytesAllocatedChanged(bytes_allocated_);
32 DCHECK_EQ(0u, bytes_allocated_);
77 DCHECK_LE(bytes_purgable, bytes_allocated_);
78 bytes_allocated_ -= bytes_purgable;
79 BytesAllocatedChanged(bytes_allocated_);
109 if (std::numeric_limits<size_t>::max() - bytes_required < bytes_allocated_)
116 bytes_allocated_ += bytes_required;
117 BytesAllocatedChanged(bytes_allocated_);
160 return bytes_allocated_;
    [all...]
discardable_memory_manager.h 145 // Called when a change to |bytes_allocated_| has been made.
158 size_t bytes_allocated_; member in class:base::internal::DiscardableMemoryManager
  /art/runtime/gc/space/
bump_pointer_space-inl.h 53 bytes_allocated_.StoreRelaxed(bytes_allocated_.LoadRelaxed() + num_bytes);
79 bytes_allocated_.FetchAndAddSequentiallyConsistent(num_bytes);
bump_pointer_space.cc 49 objects_allocated_(0), bytes_allocated_(0),
59 objects_allocated_(0), bytes_allocated_(0),
75 bytes_allocated_.StoreRelaxed(0);
210 uint64_t total = static_cast<uint64_t>(bytes_allocated_.LoadRelaxed());
246 bytes_allocated_.FetchAndAddSequentiallyConsistent(thread->GetThreadLocalBytesAllocated());
bump_pointer_space.h 151 bytes_allocated_.FetchAndSubSequentiallyConsistent(bytes);
174 AtomicInteger bytes_allocated_; // Accumulated from revoked thread local regions. member in class:art::gc::space::FINAL
  /art/compiler/utils/
arena_allocator.cc 94 // may not have the bytes_allocated_ updated correctly.
115 : bytes_allocated_(0),
140 if (bytes_allocated_) {
142 memset(Begin(), 0, bytes_allocated_); local
146 bytes_allocated_ = 0;
192 VALGRIND_MAKE_MEM_UNDEFINED(arena->memory_, arena->bytes_allocated_);
224 arena_head_->bytes_allocated_ = ptr_ - begin_;
arena_allocator.h 124 return Size() - bytes_allocated_;
128 return bytes_allocated_;
132 size_t bytes_allocated_; member in class:art::Arena
scoped_arena_allocator.cc 88 if (top_arena_->bytes_allocated_ < allocated) {
89 top_arena_->bytes_allocated_ = allocated;
  /external/chromium_org/gpu/command_buffer/service/
gles2_cmd_decoder.cc 416 size_t bytes_allocated_; member in class:gpu::gles2::BackTexture
456 size_t bytes_allocated_; member in class:gpu::gles2::BackRenderbuffer
    [all...]

Completed in 1438 milliseconds