HomeSort by relevance Sort by last modified time
    Searched refs:samples_ (Results 1 - 22 of 22) sorted by null

  /external/webrtc/webrtc/modules/video_coding/utility/
moving_average.h 30 std::list<T> samples_; member in class:webrtc::MovingAverage
39 samples_.push_back(sample);
45 if (num_samples > samples_.size())
49 while (num_samples < samples_.size()) {
50 sum_ -= samples_.front();
51 samples_.pop_front();
61 samples_.clear();
66 return samples_.size();
  /external/webrtc/webrtc/base/
rollingaccumulator.h 29 : samples_(max_count) {
36 return samples_.size();
57 T sample_to_remove = samples_[next_index_];
71 samples_[next_index_] = sample;
101 max_ = samples_[next_index_];
103 max_ = std::max(max_, samples_[(next_index_ + i) % max_count()]);
114 min_ = samples_[next_index_];
116 min_ = std::min(min_, samples_[(next_index_ + i) % max_count()]);
139 weighted_mean += current_weight * samples_[index];
166 std::vector<T> samples_; member in class:rtc::RollingAccumulator
    [all...]
  /external/libchrome/base/metrics/
sparse_histogram.cc 88 return samples_->id();
114 samples_->Accumulate(value, count);
124 snapshot->Add(*samples_);
133 snapshot->Add(*samples_);
147 snapshot->Add(*samples_);
156 samples_->Add(samples);
161 return samples_->AddFromPickle(iter);
180 samples_(new SampleMap(HashMetricName(name))),
181 logged_samples_(new SampleMap(samples_->id())) {}
198 samples_(new PersistentSampleMap(HashMetricName(name), allocator, meta))
    [all...]
sparse_histogram.h 94 // Protects access to |samples_|.
100 std::unique_ptr<HistogramSamples> samples_; member in class:base::SparseHistogram
histogram.cc 401 return samples_->id();
432 samples_->Accumulate(value, count);
471 samples_->Add(samples);
475 return samples_->AddFromPickle(iter);
509 samples_.reset(new SampleVector(HashMetricName(name), ranges));
526 samples_.reset(new SampleVector(HashMetricName(name),
528 logged_samples_.reset(new SampleVector(samples_->id(), logged_counts,
588 new SampleVector(samples_->id(), bucket_ranges()));
589 samples->Add(*samples_);
    [all...]
histogram.h 307 std::unique_ptr<SampleVector> samples_; member in class:base::Histogram
  /external/deqp/external/openglcts/modules/common/
glcConfigList.hpp 97 deInt32 blueBits_, deInt32 alphaBits_, deInt32 depthBits_, deInt32 stencilBits_, deInt32 samples_)
107 , samples(samples_)
  /external/v8/src/profiler/
sampling-heap-profiler.cc 64 samples_(),
88 for (auto sample : samples_) {
92 samples_.swap(empty);
113 samples_.insert(sample);
136 sample->profiler->samples_.erase(sample);
profile-generator.cc 413 samples_.Add(top_frame_node);
417 if (samples_.length() - streaming_next_sample_ >= kSamplesFlushCount ||
454 if (pending_nodes.empty() && !samples_.length()) return;
457 if (!pending_nodes.empty() || streaming_next_sample_ != samples_.length()) {
468 if (streaming_next_sample_ != samples_.length()) {
470 for (int i = streaming_next_sample_; i < samples_.length(); ++i) {
471 value->AppendInteger(samples_[i]->id());
477 if (streaming_next_sample_ != samples_.length()) {
488 DCHECK(samples_.length() == timestamps_.length());
489 streaming_next_sample_ = samples_.length()
    [all...]
profile-generator.h 281 int samples_count() const { return samples_.length(); }
282 ProfileNode* sample(int index) const { return samples_.at(index); }
302 List<ProfileNode*> samples_; member in class:v8::internal::CpuProfile
sampling-heap-profiler.h 149 std::set<Sample*> samples_; member in class:v8::internal::SamplingHeapProfiler
  /external/webrtc/webrtc/video/
video_quality_test.cc 485 samples_.push_back(
522 std::sort(samples_.begin(), samples_.end(),
528 fprintf(out, "%" PRIuS "\n", samples_.size());
540 for (const Sample& sample : samples_) {
567 std::vector<Sample> samples_ GUARDED_BY(comparison_lock_);
    [all...]
  /external/tensorflow/tensorflow/core/profiler/internal/
tfprof_code.cc 266 samples_(new Samples(&string_table_, opts)) {}
283 samples_->Add(leaf, reversed_call_ids);
363 for (const auto& sample_it : samples_->samples()) {
379 std::unique_ptr<Samples> samples_; member in class:tensorflow::tfprof::__anon40112::PprofProfileImpl
  /external/deqp/external/vulkancts/modules/vulkan/shaderrender/
vktShaderRender.hpp 102 vk::VkSampleCountFlagBits samples_ = vk::VK_SAMPLE_COUNT_1_BIT,
106 , samples (samples_)
  /external/deqp/modules/gles31/functional/
es31fFboNoAttachmentTests.cpp 320 FboSpec(int width_, int height_, int samples_) : width(width_), height(height_), samples(samples_){}
  /external/tensorflow/tensorflow/contrib/bayesflow/python/kernel_tests/
hmc_test.py 227 acceptance_probs_, samples_, expected_x_ = sess.run(
231 actual_x = samples_.mean()
232 actual_exp_x = np.exp(samples_).mean()
    [all...]
  /external/deqp/modules/gles3/functional/
es3fFragmentOutputTests.cpp 79 BufferSpec (deUint32 format_, int width_, int height_, int samples_)
83 , samples (samples_)
    [all...]
es3fFboRenderTest.cpp 69 FboConfig (deUint32 buffers_, deUint32 colorType_, deUint32 colorFormat_, deUint32 depthStencilType_, deUint32 depthStencilFormat_, int width_ = 0, int height_ = 0, int samples_ = 0)
77 , samples (samples_)
    [all...]
  /external/deqp/external/vulkancts/modules/vulkan/api/
vktApiObjectManagementTests.cpp 897 VkSampleCountFlagBits samples_,
907 , samples (samples_)
    [all...]
  /prebuilts/ndk/r16/sources/third_party/vulkan/src/include/vulkan/
vulkan.hpp     [all...]
  /external/vulkan-validation-layers/include/vulkan/
vulkan.hpp     [all...]
  /prebuilts/gradle-plugin/com/android/tools/analytics-library/protos/26.2.0-alpha16/
protos-26.2.0-alpha16.jar 

Completed in 958 milliseconds