Home
last modified time | relevance | path

Searched refs:in_use_ (Results 1 – 6 of 6) 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.h126 std::unordered_map<const void*, Chunk> in_use_ GUARDED_BY(mu_);
/external/libgav1/libgav1/src/
Dbuffer_pool.cc138 if (buffer->in_use_) { in ~BufferPool()
168 if (!buffer->in_use_) { in GetFreeBuffer()
169 buffer->in_use_ = true; in GetFreeBuffer()
183 buffer->in_use_ = true; in GetFreeBuffer()
202 if (buffer->in_use_) { in Abort()
210 assert(buffer->in_use_); in ReturnUnusedBuffer()
211 buffer->in_use_ = false; in ReturnUnusedBuffer()
Dbuffer_pool.h289 bool in_use_ = false; // Only used by BufferPool. variable
/external/v8/src/logging/
Dcounters.cc438 : in_use_(false), thread_type_(thread_type) { in RuntimeCallStats()
594 in_use_ = true; in Reset()
601 in_use_ = false; in Dump()
Dcounters.h1158 bool InUse() { return in_use_; } in InUse()
1202 bool in_use_; variable