Home
last modified time | relevance | path

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

/external/gemmlowp/internal/
Dallocator.h75 : committed_(false),
83 assert(!committed_);
96 assert(!committed_);
105 committed_ = true;
109 assert(committed_);
110 committed_ = false;
135 assert(!committed_ && "can't reserve blocks while committed");
158 assert(committed_ && "can't get block pointers unless committed");
171 assert(!committed_);
177 bool committed_;
/external/tensorflow/tensorflow/lite/
Dsimple_memory_arena.cc127 committed_ = true; in Commit()
134 TF_LITE_ENSURE(context, committed_); in ResolveAlloc()
145 committed_ = false; in Clear()
Dsimple_memory_arena.h47 : committed_(false), in SimpleMemoryArena()
77 bool committed_;
/external/v8/src/heap/
Dspaces.h935 committed_(0), in Space()
972 virtual size_t CommittedMemory() { return committed_; } in CommittedMemory()
1006 DCHECK_GE(committed_ + bytes, committed_); in AccountCommitted()
1007 committed_ += bytes; in AccountCommitted()
1008 if (committed_ > max_committed_) { in AccountCommitted()
1009 max_committed_ = committed_; in AccountCommitted()
1014 DCHECK_GE(committed_, committed_ - bytes); in AccountUncommitted()
1015 committed_ -= bytes; in AccountUncommitted()
1059 size_t committed_; variable
2421 committed_(false), in SemiSpace()
[all …]
Dspaces.cc2552 committed_ = false; in AllocateChunk()
2583 committed_ = true; in AllocateChunk()
2597 committed_ = false; in AllocateChunk()
2734 std::swap(from->committed_, to->committed_); in AllocateChunk()