Home | History | Annotate | Download | only in endpointer

Lines Matching defs:decision

56   void Insert(int64 time_us, bool decision);
61 // Returns the sum of all intervals during which 'decision' is true within
69 bool decision;
85 void EnergyEndpointer::HistoryRing::Insert(int64 time_us, bool decision) {
87 decision_points_[insertion_index_].decision = decision;
107 bool is_on = decision_points_[ind].decision;
119 is_on = decision_points_[ind].decision;
244 bool decision = false;
247 decision = false;
248 DVLOG(1) << "decision: forced to false, time: " << endpointer_time_us_;
250 decision = (rms > decision_threshold_);
253 history_->Insert(endpointer_time_us_, decision);
305 if ((!decision) && (status_ == EP_PRE_SPEECH)) {
309 // If this is in a speech region, adapt the decision threshold to
314 if ((status_ == EP_SPEECH_PRESENT) && decision) {