HomeSort by relevance Sort by last modified time
    Searched refs:estimate (Results 1 - 25 of 38) sorted by null

1 2

  /external/chromium_org/net/quic/congestion_control/
paced_sender.cc 19 PacedSender::PacedSender(QuicBandwidth estimate, QuicByteCount max_segment_size)
20 : leaky_bucket_(estimate),
21 pace_(estimate),
30 QuicBandwidth estimate) {
31 leaky_bucket_.SetDrainingRate(now, estimate);
32 pace_ = estimate;
channel_estimator_test.cc 44 QuicBandwidth estimate = QuicBandwidth::Zero(); local
46 channel_estimator_.GetChannelEstimate(&estimate));
47 EXPECT_TRUE(estimate.IsZero());
75 QuicBandwidth estimate = QuicBandwidth::Zero(); local
77 channel_estimator_.GetChannelEstimate(&estimate));
79 estimate); local
98 channel_estimator_.GetChannelEstimate(&estimate));
100 estimate); local
105 // receive side spreading. We expect the estimate to be good and that our
106 // mean receive side spreading is returned as the estimate
128 QuicBandwidth estimate = QuicBandwidth::Zero(); local
140 mean_received_delta), estimate); local
168 QuicBandwidth estimate = QuicBandwidth::Zero(); local
180 mean_received_delta), estimate); local
208 QuicBandwidth estimate = QuicBandwidth::Zero(); local
220 mean_received_delta), estimate); local
    [all...]
channel_estimator.cc 12 // get an estimate of bandwidth from that interarrival time. The following
57 QuicBandwidth* estimate) const {
59 // Not enough data to make an estimate.
90 *estimate = median_bitrate;
91 DVLOG(1) << "Channel estimate is:"
94 // 25% of the median bitrate we consider the estimate to be uncertain.
105 QuicBandwidth estimate = local
107 sorted_bitrate_estimates_.Insert(estimate, sequence_number);
channel_estimator.h 6 // those packets where sent we can estimate the max capacity of the channel.
37 // receive times, and may use that to update the channel bandwidth estimate.
44 // Note: estimate will not be valid when kChannelEstimateUnknown is returned.
45 ChannelEstimateState GetChannelEstimate(QuicBandwidth* estimate) const;
  /external/chromium_org/third_party/skia/include/core/
SkFloatingPoint.h 119 // Get initial estimate.
121 float32x2_t estimate = vrsqrte_f32(xx);
124 const float32x2_t estimate_sq = vmul_f32(estimate, estimate);
125 estimate = vmul_f32(estimate, vrsqrts_f32(xx, estimate_sq));
126 return vget_lane_f32(estimate, 0); // 1 will work fine too; the answer's in both places.
128 // Get initial estimate.
131 float estimate = *SkTCast<float*>(&i);
134 const float estimate_sq = estimate*estimate
    [all...]
  /external/skia/include/core/
SkFloatingPoint.h 119 // Get initial estimate.
121 float32x2_t estimate = vrsqrte_f32(xx);
124 const float32x2_t estimate_sq = vmul_f32(estimate, estimate);
125 estimate = vmul_f32(estimate, vrsqrts_f32(xx, estimate_sq));
126 return vget_lane_f32(estimate, 0); // 1 will work fine too; the answer's in both places.
128 // Get initial estimate.
131 float estimate = *SkTCast<float*>(&i);
134 const float estimate_sq = estimate*estimate
    [all...]
  /frameworks/base/core/java/android/view/
VelocityTracker.java 256 * Gets an estimate of the X position of the pointer at the specified time point.
261 return estimate(time, xCoeff);
265 * Gets an estimate of the Y position of the pointer at the specified time point.
270 return estimate(time, yCoeff);
291 private float estimate(float time, float[] c) { method in class:VelocityTracker.Estimator
  /frameworks/base/services/common_time/
common_clock_service.h 43 virtual status_t getEstimatedError(int32_t* estimate);
common_clock_service.cpp 75 status_t CommonClockService::getEstimatedError(int32_t* estimate) {
76 *estimate = mTimeServer.getEstimatedError();
  /prebuilts/gcc/darwin-x86/host/i686-apple-darwin-4.2.1/include/gcc/darwin/4.2/
ppc_intrinsics.h 82 * __fres - Floating Reciprocal Estimate
84 * __frsqrte - Floating Reciprocal Square Root Estimate
85 * __frsqrtes - Floating Reciprocal Square Root Estimate Single
723 * __fres - Floating Reciprocal Estimate
734 float estimate; local
736 /* outputs: */ : "=f" (estimate)
738 return estimate;
756 * __frsqrte - Floating Reciprocal Square Root Estimate
764 double estimate; local
767 /* outputs: */ : "=f" (estimate)
    [all...]
  /frameworks/av/include/common_time/
ICommonClock.h 51 // a reserved invalid error estimate
81 virtual status_t getEstimatedError(int32_t* estimate) = 0;
  /external/chromium_org/net/dns/
dns_session.cc 176 base::TimeDelta& estimate = server_stats_[server_index]->rtt_estimate; local
178 base::TimeDelta current_error = rtt - estimate;
179 estimate += current_error / 8; // * alpha
  /external/v8/src/
handles.cc 182 static int ExpectedNofPropertiesFromEstimate(int estimate) {
185 if (estimate == 0) estimate = 2;
188 // the estimate conservatively.
189 if (Serializer::enabled()) return estimate + 2;
192 // so we can afford to adjust the estimate generously.
194 return estimate + 8;
196 return estimate + 3;
202 int estimate) {
207 ExpectedNofPropertiesFromEstimate(estimate));
    [all...]
bignum-dtoa.cc 397 double estimate = ceil((exponent + kSignificandSize - 1) * k1Log10 - 1e-10); local
398 return static_cast<int>(estimate);
handles.h 265 // Sets the expected number of properties based on estimate from compiler.
267 int estimate);
  /external/chromium_org/third_party/WebKit/Source/wtf/dtoa/
bignum-dtoa.cc 396 double estimate = ceil((exponent + kSignificandSize - 1) * k1Log10 - 1e-10); local
397 return static_cast<int>(estimate);
    [all...]
  /external/chromium_org/v8/src/
bignum-dtoa.cc 397 double estimate = ceil((exponent + kSignificandSize - 1) * k1Log10 - 1e-10); local
398 return static_cast<int>(estimate);
compiler.cc 608 // Sets the expected number of properties based on estimate from compiler.
610 int estimate) {
616 if (estimate == 0) estimate = 2;
620 // the estimate conservatively.
622 estimate += 2;
625 // so we can afford to adjust the estimate generously.
626 estimate += 8;
628 estimate += 3;
631 shared->set_expected_nof_properties(estimate);
    [all...]
  /frameworks/av/media/common_time/
ICommonClock.cpp 154 virtual status_t getEstimatedError(int32_t* estimate) {
161 *estimate = reply.readInt32();
  /external/openfst/src/include/fst/
queue.h 731 // An A* estimate is a function object that maps from a state ID to a
732 // an estimate of the shortest distance to the final states.
733 // The trivial A* estimate is always One().
742 // function object between weights, and an estimate E of the
753 const E &estimate)
754 : weights_(weights), less_(less), estimate_(estimate) {}
770 // estimate E of the shortest distance to the final states, is specialized
778 NaturalAStarQueue(const vector<W> &distance, const E &estimate) :
779 ShortestFirstQueue<S, C>(C(distance, less_, estimate)) {}
  /external/flac/libFLAC/
stream_encoder.c 3487 unsigned estimate; local
3521 unsigned i, residual_bits, estimate; local
3586 unsigned i, residual_bits, estimate; local
3658 unsigned estimate; local
    [all...]
  /external/valgrind/main/none/tests/ppc32/
test_isa_2_06_part3.c 393 * estimate instructions.
400 * valgrind can easily differ from the estimate in the lower bits (within the 14 bits of
401 * precision) and the estimate may still be within expected tolerances. On top of that,
1071 Bool estimate = (test_group.type == VX_ESTIMATE); local
    [all...]
  /external/valgrind/main/none/tests/ppc64/
test_isa_2_06_part3.c 393 * estimate instructions.
400 * valgrind can easily differ from the estimate in the lower bits (within the 14 bits of
401 * precision) and the estimate may still be within expected tolerances. On top of that,
1071 Bool estimate = (test_group.type == VX_ESTIMATE); local
    [all...]
  /external/mdnsresponder/mDNSCore/
DNSCommon.h 169 extern mDNSu16 GetRDLength(const ResourceRecord *const rr, mDNSBool estimate);
  /external/gcc-demangle/
cp-demangle.c     [all...]

Completed in 2581 milliseconds

1 2