Searched refs:estimator_ (Results 1 – 8 of 8) sorted by relevance
/external/webrtc/webrtc/modules/remote_bitrate_estimator/test/estimators/ |
D | remb.cc | 72 estimator_(new RemoteBitrateEstimatorAbsSendTime(this, &clock_)) { in RembReceiver() 77 estimator_->OnRttUpdate(50, 50); in RembReceiver() 78 estimator_->SetMinBitrate(kRemoteBitrateEstimatorMinBitrateBps); in RembReceiver() 91 int64_t step_ms = std::max<int64_t>(estimator_->TimeUntilNextProcess(), 0); in ReceivePacket() 94 estimator_->Process(); in ReceivePacket() 95 step_ms = std::max<int64_t>(estimator_->TimeUntilNextProcess(), 0); in ReceivePacket() 97 estimator_->IncomingPacket(arrival_time_ms, media_packet.payload_size(), in ReceivePacket() 153 if (!estimator_->LatestEstimate(&ssrcs, &bps)) { in LatestEstimate()
|
D | remb.h | 74 rtc::scoped_ptr<RemoteBitrateEstimator> estimator_; variable
|
/external/webrtc/webrtc/modules/rtp_rtcp/source/ |
D | remote_ntp_time_estimator_unittest.cc | 34 estimator_(&local_clock_) {} in RemoteNtpTimeEstimatorTest() 60 estimator_.UpdateRtcpTimestamp(rtt, ntp_secs, ntp_frac, in UpdateRtcpTimestamp() 73 RemoteNtpTimeEstimator estimator_; member in webrtc::RemoteNtpTimeEstimatorTest 91 EXPECT_EQ(kNotEnoughRtcpSr, estimator_.Estimate(rtp_timestamp)); in TEST_F() 98 EXPECT_EQ(capture_ntp_time_ms, estimator_.Estimate(rtp_timestamp)); in TEST_F()
|
/external/tensorflow/tensorflow/core/grappler/clusters/ |
D | virtual_cluster.cc | 41 estimator_ = absl::make_unique<AnalyticalCostEstimator>( in VirtualCluster() 84 TF_RETURN_IF_ERROR(estimator_->Initialize(item)); in Run() 87 estimator_->PredictCosts(item.graph, metadata, &ignored_costs)); in Run() 91 estimator_->GetScheduler()->GetPeakMemoryUsage(); in Run()
|
D | virtual_cluster.h | 54 std::unique_ptr<AnalyticalCostEstimator> estimator_;
|
/external/webrtc/webrtc/modules/remote_bitrate_estimator/ |
D | remote_bitrate_estimator_abs_send_time.cc | 109 estimator_(OverUseDetectorOptions()), in RemoteBitrateEstimatorAbsSendTime() 310 estimator_.Update(t_delta, ts_delta_ms, size_delta, detector_.State()); in IncomingPacketInfo() 311 detector_.Detect(estimator_.offset(), ts_delta_ms, in IncomingPacketInfo() 312 estimator_.num_of_deltas(), arrival_time_ms); in IncomingPacketInfo() 372 estimator_.var_noise()); in UpdateEstimate()
|
D | remote_bitrate_estimator_abs_send_time.h | 135 OveruseEstimator estimator_ GUARDED_BY(crit_sect_.get());
|
/external/tensorflow/tensorflow/core/grappler/costs/ |
D | op_level_cost_estimator_test.cc | 454 return estimator_.PredictCosts(op_context); in PredictCosts() 459 return estimator_.CountMatMulOperations(op_info, found_unknown_shapes); in CountMatMulOperations() 464 return estimator_.CountBatchMatMulOperations(op_info, found_unknown_shapes); in CountBatchMatMulOperations() 468 estimator_.compute_memory_overlap_ = value; in SetComputeMemoryOverlap() 515 OpLevelCostEstimator estimator_; member in tensorflow::grappler::OpLevelCostEstimatorTest 528 auto cost = estimator_.PredictCosts(op_context); in TEST_F() 548 auto cost = estimator_.PredictCosts(op_context); in TEST_F() 566 auto cost = estimator_.PredictCosts(op_context); in TEST_F() 586 auto cost = estimator_.PredictCosts(op_context); in TEST_F() 1015 return estimator_.PredictCosts(op_context); in TEST_F() [all …]
|