Home
last modified time | relevance | path

Searched refs:ready_ (Results 1 – 17 of 17) sorted by relevance

/external/grpc-grpc/src/core/lib/gprpp/
Dthd_posix.cc56 gpr_cv_init(&ready_); in ThreadInternalsPosix()
95 gpr_cv_wait(&arg.thread->ready_, &arg.thread->mu_, in ThreadInternalsPosix()
117 gpr_cv_destroy(&ready_); in ~ThreadInternalsPosix()
123 gpr_cv_signal(&ready_); in Start()
131 gpr_cv ready_; member in grpc_core::__anon573c6e610111::ThreadInternalsPosix
Dthd_windows.cc61 gpr_cv_init(&ready_); in ThreadInternalsWindows()
80 gpr_cv_wait(&g_thd_info->thread->ready_, &g_thd_info->thread->mu_, in ThreadInternalsWindows()
102 gpr_cv_destroy(&ready_); in ~ThreadInternalsWindows()
108 gpr_cv_signal(&ready_); in Start()
125 gpr_cv ready_; member in __anon4b7705390111::ThreadInternalsWindows
/external/tensorflow/tensorflow/core/graph/
Dgradients.cc186 std::deque<Node*> ready_; member in tensorflow::SymbolicGradientBuilder
233 ready_.push_back(src.node); in BackpropAlongEdge()
243 ready_.push_back(src.node); in BackpropZerosAlongEdge()
291 CHECK(!ready_.empty()); in InitBackprop()
339 while (!ready_.empty()) { in Compute()
341 Node* n = ready_.front(); in Compute()
342 ready_.pop_front(); in Compute()
Dgraph_constructor.cc290 std::set<int> ready_; member in tensorflow::__anone0324be20111::GraphConstructor
338 ready_.insert(output); in UpdatePendingCountAndReady()
550 ready_.insert(n); in InitFromEdges()
926 while (!ready_.empty()) { in Convert()
927 int o = *ready_.begin(); in Convert()
928 ready_.erase(ready_.begin()); in Convert()
/external/perfetto/test/
Dtask_runner_thread.cc47 ready_.wait_for(lock, std::chrono::seconds(10), in Start()
98 ready_.notify_one(); in Run()
Dtask_runner_thread.h60 std::condition_variable ready_; variable
/external/webp/src/dec/
Dvp8_dec.c62 dec->ready_ = 0; in VP8New()
93 dec->ready_ = 0; in VP8SetError()
386 dec->ready_ = 1; in VP8GetHeaders()
679 if (!dec->ready_) { in VP8Decode()
684 assert(dec->ready_); in VP8Decode()
704 dec->ready_ = 0; in VP8Decode()
718 dec->ready_ = 0; in VP8Clear()
Dvp8i_dec.h184 int ready_; // true if ready to decode a picture with VP8Decode() member
Didec_dec.c452 if (!dec->ready_) { in DecodeRemaining()
503 dec->ready_ = 0; in DecodeRemaining()
/external/webrtc/webrtc/p2p/base/
Drelayport.h69 bool IsReady() { return ready_; } in IsReady()
110 bool ready_; variable
Dstunport.cc180 ready_(false), in UDPPort()
208 ready_(false), in UDPPort()
472 if (ready_) in MaybeSetPortCompleteOrError()
483 ready_ = true; in MaybeSetPortCompleteOrError()
Drelayport.cc198 ready_(false), in RelayPort()
237 if (!ready_) { in SetReady()
249 ready_ = true; in SetReady()
275 ready_ = false; in PrepareAddress()
Dstunport.h218 bool ready_; variable
/external/tensorflow/tensorflow/cc/framework/
Dgradients.cc125 std::deque<Node*> ready_; member in tensorflow::__anon2882cf250111::SymbolicGradientBuilder
161 ready_.push_back(src.node()); in BackpropAlongEdge()
443 while (!ready_.empty()) { in AddGradients()
445 Node* n = ready_.front(); in AddGradients()
446 ready_.pop_front(); in AddGradients()
/external/libchrome/base/debug/
Dactivity_tracker_unittest.cc399 ready_(false), in SimpleActivityThread()
413 ready_.store(true, std::memory_order_release); in Run()
428 SPIN_FOR_1_SECOND_OR_UNTIL_TRUE(ready_.load(std::memory_order_acquire)); in WaitReady()
436 std::atomic<bool> ready_; member in base::debug::__anonf6ef5f290311::SimpleActivityThread
/external/tensorflow/tensorflow/core/common_runtime/
Dexecutor.cc1209 void push_back(TaggedNode node) { ready_.push_back(node); } in push_back()
1211 DCHECK_LT(front_index_, ready_.size()); in front()
1212 return ready_[front_index_]; in front()
1215 DCHECK_LT(front_index_, ready_.size()); in pop_front()
1217 if ((front_index_ == ready_.size()) || (front_index_ > 16384)) { in pop_front()
1218 if (front_index_ == ready_.size()) { in pop_front()
1219 ready_.clear(); in pop_front()
1223 ready_.erase(ready_.begin(), ready_.begin() + front_index_); in pop_front()
1228 bool empty() const { return ready_.empty(); } in empty()
1229 const TaggedNode* begin() const { return ready_.begin() + front_index_; } in begin()
[all …]
/external/libchrome/base/
Dobserver_list_unittest.cc121 ready_(ready), in AddRemoveThread()
131 ready_->Signal(); in ThreadMain()
194 WaitableEvent* ready_; member in base::__anone249295e0111::AddRemoveThread