/external/grpc-grpc/src/core/lib/gprpp/ |
D | thd_posix.cc | 56 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
|
D | thd_windows.cc | 61 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/ |
D | gradients.cc | 186 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()
|
D | graph_constructor.cc | 290 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/ |
D | task_runner_thread.cc | 47 ready_.wait_for(lock, std::chrono::seconds(10), in Start() 98 ready_.notify_one(); in Run()
|
D | task_runner_thread.h | 60 std::condition_variable ready_; variable
|
/external/webp/src/dec/ |
D | vp8_dec.c | 62 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()
|
D | vp8i_dec.h | 184 int ready_; // true if ready to decode a picture with VP8Decode() member
|
D | idec_dec.c | 452 if (!dec->ready_) { in DecodeRemaining() 503 dec->ready_ = 0; in DecodeRemaining()
|
/external/webrtc/webrtc/p2p/base/ |
D | relayport.h | 69 bool IsReady() { return ready_; } in IsReady() 110 bool ready_; variable
|
D | stunport.cc | 180 ready_(false), in UDPPort() 208 ready_(false), in UDPPort() 472 if (ready_) in MaybeSetPortCompleteOrError() 483 ready_ = true; in MaybeSetPortCompleteOrError()
|
D | relayport.cc | 198 ready_(false), in RelayPort() 237 if (!ready_) { in SetReady() 249 ready_ = true; in SetReady() 275 ready_ = false; in PrepareAddress()
|
D | stunport.h | 218 bool ready_; variable
|
/external/tensorflow/tensorflow/cc/framework/ |
D | gradients.cc | 125 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/ |
D | activity_tracker_unittest.cc | 399 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/ |
D | executor.cc | 1209 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/ |
D | observer_list_unittest.cc | 121 ready_(ready), in AddRemoveThread() 131 ready_->Signal(); in ThreadMain() 194 WaitableEvent* ready_; member in base::__anone249295e0111::AddRemoveThread
|