Searched refs:committed_size_ (Results 1 – 2 of 2) sorted by relevance
/external/perfetto/src/base/ |
D | paged_memory.cc | 79 ANNOTATE_NEW_BUFFER(p_, size_, committed_size_); in PagedMemory() 106 ANNOTATE_DELETE_BUFFER(p_, size_, committed_size_); in ~PagedMemory() 130 if (committed_size_ >= committed_size) in EnsureCommitted() 133 size_t delta = committed_size - committed_size_; in EnsureCommitted() 139 size_ - committed_size_); in EnsureCommitted() 140 void* res = VirtualAlloc(p_ + committed_size_, commit_size, MEM_COMMIT, in EnsureCommitted() 143 ANNOTATE_CHANGE_SIZE(p_, size_, committed_size_, in EnsureCommitted() 144 committed_size_ + commit_size); in EnsureCommitted() 145 committed_size_ += commit_size; in EnsureCommitted() 148 committed_size = std::max(committed_size_, committed_size); in EnsureCommitted() [all …]
|
/external/perfetto/include/perfetto/base/ |
D | paged_memory.h | 94 size_t committed_size_ = 0u; variable
|