Home
last modified time | relevance | path

Searched refs:in_use_ (Results 1 – 4 of 4) sorted by relevance

/external/tensorflow/tensorflow/core/framework/
Dtracking_allocator.cc60 in_use_.emplace(std::make_pair(ptr, chunk)); in AllocateRaw()
89 auto itr = in_use_.find(ptr); in DeallocateRaw()
90 if (itr != in_use_.end()) { in DeallocateRaw()
93 in_use_.erase(itr); in DeallocateRaw()
119 auto it = in_use_.find(ptr); in RequestedSize()
120 if (it != in_use_.end()) { in RequestedSize()
132 auto it = in_use_.find(ptr); in AllocatedSize()
133 if (it != in_use_.end()) { in AllocatedSize()
145 auto it = in_use_.find(ptr); in AllocationId()
146 if (it != in_use_.end()) { in AllocationId()
Dtracking_allocator.h127 std::unordered_map<const void*, Chunk> in_use_ GUARDED_BY(mu_);
/external/v8/src/
Dcounters.cc421 RuntimeCallStats::RuntimeCallStats() : in_use_(false) { in RuntimeCallStats()
522 in_use_ = true; in Reset()
529 in_use_ = false; in Dump()
Dcounters.h1055 bool InUse() { return in_use_; } in InUse()
1073 bool in_use_; variable