Home
last modified time | relevance | path

Searched refs:accumulator_ (Results 1 – 3 of 3) sorted by relevance

/third_party/grpc/src/core/lib/transport/
Dbdp_estimator.h46 void AddIncomingBytes(int64_t num_bytes) { accumulator_ += num_bytes; } in AddIncomingBytes()
54 accumulator_, estimate_); in SchedulePing()
58 accumulator_ = 0; in SchedulePing()
67 accumulator_, estimate_); in StartPing()
77 int64_t accumulator() { return accumulator_; } in accumulator()
83 int64_t accumulator_; variable
Dbdp_estimator.cc34 accumulator_(0), in BdpEstimator()
47 double bw = dt > 0 ? (static_cast<double>(accumulator_) / dt) : 0; in CompletePing()
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()
83 accumulator_ = 0; in CompletePing()
/third_party/boost/boost/spirit/home/support/detail/lexer/parser/tokeniser/
Dre_tokeniser_helper.hpp315 std::size_t accumulator_ = 0; in decode_octal() local
322 accumulator_ *= 8; in decode_octal()
323 accumulator_ += ch_ - '0'; in decode_octal()
339 return static_cast<CharT> (accumulator_); in decode_octal()