Home
last modified time | relevance | path

Searched refs:estimate_ (Results 1 – 8 of 8) sorted by relevance

/external/grpc-grpc/src/core/lib/transport/
Dbdp_estimator.cc35 estimate_(65536), in BdpEstimator()
53 name_, accumulator_, estimate_, dt, bw / 125000.0, in CompletePing()
57 if (accumulator_ > 2 * estimate_ / 3 && bw > bw_est_) { in CompletePing()
58 estimate_ = GPR_MAX(accumulator_, estimate_ * 2); in CompletePing()
62 estimate_); in CompletePing()
Dbdp_estimator.h43 int64_t EstimateBdp() const { return estimate_; } in EstimateBdp()
54 accumulator_, estimate_); in SchedulePing()
67 accumulator_, estimate_); in StartPing()
83 int64_t estimate_; variable
/external/rust/crates/grpcio-sys/grpc/src/core/lib/transport/
Dbdp_estimator.cc35 estimate_(65536), in BdpEstimator()
53 name_, accumulator_, estimate_, dt, bw / 125000.0, in CompletePing()
57 if (accumulator_ > 2 * estimate_ / 3 && bw > bw_est_) { in CompletePing()
58 estimate_ = GPR_MAX(accumulator_, estimate_ * 2); in CompletePing()
62 estimate_); in CompletePing()
Dbdp_estimator.h43 int64_t EstimateBdp() const { return estimate_; } in EstimateBdp()
54 accumulator_, estimate_); in SchedulePing()
67 accumulator_, estimate_); in StartPing()
84 int64_t estimate_; variable
/external/webrtc/modules/rtp_rtcp/source/rtcp_packet/
Dremote_estimate.h49 NetworkStateEstimate estimate() const { return estimate_; } in estimate()
52 NetworkStateEstimate estimate_;
Dremote_estimate.cc138 return serializer_->Parse({data(), data_size()}, &estimate_); in ParseData()
142 estimate_ = estimate; in SetEstimate()
/external/webrtc/modules/congestion_controller/goog_cc/
Dgoog_cc_network_control.cc503 auto prev_estimate = estimate_; in OnTransportPacketsFeedback()
504 estimate_ = network_estimator_->GetCurrentEstimate(); in OnTransportPacketsFeedback()
507 if (estimate_ && (!prev_estimate || estimate_->last_feed_time != in OnTransportPacketsFeedback()
510 estimate_->link_capacity_lower, estimate_->link_capacity_upper)); in OnTransportPacketsFeedback()
516 estimate_ && *probe_bitrate < delay_based_bwe_->last_estimate() && in OnTransportPacketsFeedback()
517 *probe_bitrate < estimate_->link_capacity_lower) { in OnTransportPacketsFeedback()
541 report, acknowledged_bitrate, probe_bitrate, estimate_, in OnTransportPacketsFeedback()
589 estimate_ = msg; in OnNetworkStateEstimate()
Dgoog_cc_network_control.h116 absl::optional<NetworkStateEstimate> estimate_; variable