Home
last modified time | relevance | path

Searched refs:best_it (Results 1 – 5 of 5) sorted by relevance

/external/webrtc/webrtc/modules/remote_bitrate_estimator/
Dremote_bitrate_estimator_abs_send_time.cc157 std::list<Cluster>::const_iterator best_it = clusters.end(); in FindBestProbe() local
172 best_it = it; in FindBestProbe()
183 return best_it; in FindBestProbe()
197 std::list<Cluster>::const_iterator best_it = FindBestProbe(clusters); in ProcessClusters() local
198 if (best_it != clusters.end()) { in ProcessClusters()
200 std::min(best_it->GetSendBitrateBps(), best_it->GetRecvBitrateBps()); in ProcessClusters()
206 << best_it->GetSendBitrateBps() << " bps, received at " in ProcessClusters()
207 << best_it->GetRecvBitrateBps() in ProcessClusters()
208 << " bps. Mean send delta: " << best_it->send_mean_ms in ProcessClusters()
209 << " ms, mean recv delta: " << best_it->recv_mean_ms in ProcessClusters()
[all …]
/external/tensorflow/tensorflow/core/kernels/batching_util/
Dserial_device_batch_scheduler.h387 auto best_it = batches_.begin(); in ProcessBatches() local
389 (*best_it)->creation_time_micros() - in ProcessBatches()
390 options_.full_batch_scheduling_boost_micros * (*best_it)->size() / in ProcessBatches()
391 static_cast<double>((*best_it)->queue()->max_task_size()); in ProcessBatches()
399 best_it = it; in ProcessBatches()
402 const internal::SDBSBatch<TaskType>* batch = *best_it; in ProcessBatches()
403 batches_.erase(best_it); in ProcessBatches()
Dadaptive_shared_batch_scheduler.h418 auto best_it = batches_.end(); in MaybeScheduleNextBatch() local
427 if (best_it == batches_.end() || score < best_score) { in MaybeScheduleNextBatch()
429 best_it = it; in MaybeScheduleNextBatch()
433 if (best_it == batches_.end()) return; in MaybeScheduleNextBatch()
434 const internal::ASBSBatch<TaskType>* batch = *best_it; in MaybeScheduleNextBatch()
435 batches_.erase(best_it); in MaybeScheduleNextBatch()
/external/tensorflow/tensorflow/compiler/xla/service/
Dhlo_memory_scheduler.cc301 auto best_it = ready_queue.end(); in CreateSchedule() local
302 --best_it; in CreateSchedule()
303 HloInstruction* best = best_it->second.instruction; in CreateSchedule()
305 << " Bytes freed: " << best_it->first.first; in CreateSchedule()
306 ready_queue.erase(best_it); in CreateSchedule()
/external/webrtc/talk/app/webrtc/
Dvideosource.cc252 std::vector<cricket::VideoFormat>::const_iterator best_it = formats.begin(); in GetBestCaptureFormat() local
262 best_it = it; in GetBestCaptureFormat()
265 return *best_it; in GetBestCaptureFormat()