Home
last modified time | relevance | path

Searched refs:committed_ (Results 1 – 3 of 3) sorted by relevance

/third_party/node/deps/v8/src/heap/
Dbase-space.h40 DCHECK_GE(committed_ + bytes, committed_); in AccountCommitted()
41 committed_ += bytes; in AccountCommitted()
42 if (committed_ > max_committed_) { in AccountCommitted()
43 max_committed_ = committed_; in AccountCommitted()
48 DCHECK_GE(committed_, committed_ - bytes); in AccountUncommitted()
49 committed_ -= bytes; in AccountUncommitted()
54 virtual size_t CommittedMemory() const { return committed_; } in CommittedMemory()
66 : heap_(heap), id_(id), committed_(0), max_committed_(0) {} in BaseSpace()
75 std::atomic<size_t> committed_; variable
/third_party/cef/libcef/browser/prefs/
Dpref_store.cc20 committed_(true) {} in CefPrefStore()
56 committed_ = false; in SetValue()
65 committed_ = false; in SetValueSilently()
70 committed_ = false; in RemoveValuesByPrefixSilently()
75 committed_ = false; in RemoveValue()
105 committed_ = true; in CommitPendingWrite()
Dpref_store.h85 bool committed() { return committed_; } in committed()
114 bool committed_; variable