Searched refs:committed_size_ (Results 1 – 2 of 2) sorted by relevance
/external/perfetto/src/base/ |
D | paged_memory.cc | 89 ANNOTATE_NEW_BUFFER(p_, size_, committed_size_) in PagedMemory() 117 ANNOTATE_DELETE_BUFFER(p_, size_, committed_size_) in ~PagedMemory() 143 if (committed_size_ >= committed_size) in EnsureCommitted() 146 size_t delta = committed_size - committed_size_; in EnsureCommitted() 152 size_ - committed_size_); in EnsureCommitted() 153 void* res = VirtualAlloc(p_ + committed_size_, commit_size, MEM_COMMIT, in EnsureCommitted() 156 ANNOTATE_CHANGE_SIZE(p_, size_, committed_size_, in EnsureCommitted() 157 committed_size_ + commit_size) in EnsureCommitted() 158 committed_size_ += commit_size; in EnsureCommitted() 161 committed_size = std::max(committed_size_, committed_size); in EnsureCommitted() [all …]
|
/external/perfetto/include/perfetto/ext/base/ |
D | paged_memory.h | 97 size_t committed_size_ = 0u; variable
|