/third_party/boost/boost/histogram/ |
D | unsafe_access.hpp | 33 template <class Histogram> 34 static auto& axes(Histogram& hist) { in axes() 39 template <class Histogram> 40 static const auto& axes(const Histogram& hist) { in axes() 49 template <class Histogram, unsigned I = 0> 50 static decltype(auto) axis(Histogram& hist, std::integral_constant<unsigned, I> = {}) { in axis() 60 template <class Histogram> 61 static decltype(auto) axis(Histogram& hist, unsigned i) { in axis() 70 template <class Histogram> 71 static auto& storage(Histogram& hist) { in storage() [all …]
|
D | indexed.hpp | 39 template <class Histogram> 42 using histogram_type = Histogram; 363 template <class Histogram> 364 auto indexed(Histogram&& hist, coverage cov = coverage::inner) { in indexed() 365 return indexed_range<std::remove_reference_t<Histogram>>{std::forward<Histogram>(hist), in indexed()
|
D | ostream.hpp | 195 template <class OStream, class Histogram> 196 void ascii_plot(OStream&, const Histogram&, int, std::false_type) {} // LCOV_EXCL_LINE in ascii_plot() argument 198 template <class OStream, class Histogram> 199 void ascii_plot(OStream& os, const Histogram& h, int w_total, std::true_type) { in ascii_plot() 245 template <class OStream, class Histogram> 246 void ostream(OStream& os, const Histogram& h, const bool show_values = true) { in ostream()
|
/third_party/grpc/src/csharp/Grpc.IntegrationTesting/CoreStats/ |
D | Stats.cs | 37 …new pbr::GeneratedClrTypeInfo(typeof(global::Grpc.Core.Histogram), global::Grpc.Core.Histogram.Par… in StatsReflection() 254 public sealed partial class Histogram : pb::IMessage<Histogram> class 259 …ivate static readonly pb::MessageParser<Histogram> _parser = new pb::MessageParser<Histogram>(() =… 262 public static pb::MessageParser<Histogram> Parser { get { return _parser; } } 275 public Histogram() { in Histogram() method in Grpc.Core.Histogram 282 public Histogram(Histogram other) : this() { in Histogram() method in Grpc.Core.Histogram 288 public Histogram Clone() { in Clone() 289 return new Histogram(this); in Clone() 304 return Equals(other as Histogram); in Equals() 308 public bool Equals(Histogram other) { in Equals() [all …]
|
/third_party/grpc/test/cpp/qps/ |
D | histogram.h | 28 class Histogram { 31 Histogram() in Histogram() function 34 ~Histogram() { in ~Histogram() 42 Histogram(Histogram&& other) : impl_(other.impl_) { other.impl_ = nullptr; } in Histogram() function 44 void Merge(const Histogram& h) { grpc_histogram_merge(impl_, h.impl_); } in Merge() 50 void Swap(Histogram* other) { std::swap(impl_, other->impl_); } in Swap() 73 Histogram(const Histogram&); 74 Histogram& operator=(const Histogram&);
|
D | client.h | 154 Histogram latencies; in Mark() 163 std::vector<Histogram> to_merge(threads_.size()); in Mark() 261 void BeginSwap(Histogram* n, StatusHistogram* s) { in BeginSwap() 267 void MergeStatsInto(Histogram* hist, StatusHistogram* s) { in MergeStatsInto() 320 Histogram histogram_; 327 Histogram histogram_per_interval_;
|
/third_party/node/src/ |
D | histogram-inl.h | 12 void Histogram::Reset() { in Reset() 19 int64_t Histogram::Min() { in Min() 24 int64_t Histogram::Max() { in Max() 29 double Histogram::Mean() { in Mean() 34 double Histogram::Stddev() { in Stddev() 39 double Histogram::Percentile(double percentile) { in Percentile() 48 void Histogram::Percentiles(Iterator&& fn) { in Percentiles() 59 bool Histogram::Record(int64_t value) { in Record() 64 uint64_t Histogram::RecordDelta() { in RecordDelta() 79 size_t Histogram::GetMemorySize() const { in GetMemorySize()
|
D | histogram.h | 23 class Histogram : public MemoryRetainer { 25 Histogram( 29 virtual ~Histogram() = default; 50 SET_MEMORY_INFO_NAME(Histogram) 51 SET_SELF_SIZE(Histogram) 65 explicit HistogramImpl(std::shared_ptr<Histogram> histogram); 67 Histogram* operator->() { return histogram_.get(); } 70 const std::shared_ptr<Histogram>& histogram() const { return histogram_; } in histogram() 73 std::shared_ptr<Histogram> histogram_; 90 std::shared_ptr<Histogram> histogram); [all …]
|
D | histogram.cc | 18 Histogram::Histogram(int64_t lowest, int64_t highest, int figures) { in Histogram() function in node::Histogram 24 void Histogram::MemoryInfo(MemoryTracker* tracker) const { in MemoryInfo() 29 : histogram_(new Histogram(lowest, highest, figures)) {} in HistogramImpl() 31 HistogramImpl::HistogramImpl(std::shared_ptr<Histogram> histogram) in HistogramImpl() 48 std::shared_ptr<Histogram> histogram) in HistogramBase() 157 std::shared_ptr<Histogram> histogram) { in Create()
|
/third_party/skia/third_party/externals/brotli/c/enc/ |
D | histogram_inc.h | 12 typedef struct FN(Histogram) { 16 } FN(Histogram); 18 static BROTLI_INLINE void FN(HistogramClear)(FN(Histogram)* self) { in FN() 25 FN(Histogram)* array, size_t length) { in FN() 30 static BROTLI_INLINE void FN(HistogramAdd)(FN(Histogram)* self, size_t val) { in FN() 35 static BROTLI_INLINE void FN(HistogramAddVector)(FN(Histogram)* self, in FN() 42 static BROTLI_INLINE void FN(HistogramAddHistogram)(FN(Histogram)* self, in FN() 43 const FN(Histogram)* v) { in FN()
|
/third_party/node/deps/brotli/c/enc/ |
D | histogram_inc.h | 12 typedef struct FN(Histogram) { 16 } FN(Histogram); 18 static BROTLI_INLINE void FN(HistogramClear)(FN(Histogram)* self) { in FN() 25 FN(Histogram)* array, size_t length) { in FN() 30 static BROTLI_INLINE void FN(HistogramAdd)(FN(Histogram)* self, size_t val) { in FN() 35 static BROTLI_INLINE void FN(HistogramAddVector)(FN(Histogram)* self, in FN() 42 static BROTLI_INLINE void FN(HistogramAddHistogram)(FN(Histogram)* self, in FN() 43 const FN(Histogram)* v) { in FN()
|
/third_party/node/lib/internal/ |
D | histogram.js | 14 Histogram: _Histogram 41 class Histogram extends JSTransferable { class 124 class RecordableHistogram extends Histogram { 174 InternalHistogram.prototype.constructor = Histogram; 177 Histogram.prototype); 189 Histogram, property
|
/third_party/giflib/ |
D | gifhisto.c | 58 long Histogram[256]; in main() local 99 for (i = 0; i < 256; i++) Histogram[i] = 0; /* Reset counters. */ in main() 135 Histogram[Line[j]]++; in main() 171 if (BackGroundFlag) Histogram[GifFileIn->SBackGroundColor] = 0; in main() 183 printf("%12ld %3d\n", Histogram[i], i); in main() 208 for (Scaler = 0, i = 0; i < NumColors; i++) if (Histogram[i] > Scaler) in main() 209 Scaler = Histogram[i]; in main() 216 if ((Size = Histogram[i] / Scaler) > ImageWidth) Size = ImageWidth; in main()
|
/third_party/grpc/src/csharp/Grpc.IntegrationTesting/ |
D | HistogramTest.cs | 37 var hist = new Histogram(0.01, 60e9); in Simple() 59 var hist = new Histogram(0.01, 60e9); in ExtremeObservations() 73 var hist1 = new Histogram(0.01, 60e9); in MergeSnapshots() 78 var hist2 = new Histogram(0.01, 60e9); in MergeSnapshots() 95 var hist = new Histogram(0.01, 60e9); in Reset()
|
D | StressTestClient.cs | 68 Histogram histogram = new Histogram(0.01, 60 * SecondsToNanos); 245 readonly Histogram histogram; 248 public MetricsServiceImpl(Histogram histogram) in MetricsServiceImpl()
|
D | Histogram.cs | 38 public class Histogram class 52 public Histogram(double resolution, double maxPossible) in Histogram() method in Grpc.IntegrationTesting.Histogram
|
/third_party/boost/boost/histogram/algorithm/ |
D | reduce.hpp | 331 template <class Histogram, class Iterable, class = detail::requires_iterable<Iterable>> 332 Histogram reduce(const Histogram& hist, const Iterable& options) { 391 Histogram(std::move(axes), detail::make_default(unsafe_access::storage(hist))); 443 template <class Histogram, class... Ts> 444 Histogram reduce(const Histogram& hist, const reduce_command& opt, const Ts&... opts) { in reduce()
|
/third_party/boost/libs/histogram/doc/ |
D | benchmarks.qbk | 10 …ibraries on the market. If you find a library that is faster than Boost.Histogram, please submit a… 14 …mizations`. Adding `-fno-exceptions -fno-rtti` would increase the Boost.Histogram performance by a… 18 The fill performance of different configurations of Boost.Histogram are compared with histogram cla… 29 [[boost-sta] [Histogram with `std::tuple<axis::regular<>>` and `std::vector<int>` storage]] 31 …[[boost-dyn] [Histogram with `std::vector<axis::variant<axis::regular<>>>` and `std::vector<int>` … 34 Boost.Histogram is faster than other libraries. Simultaneously, it is much more flexible, since the… 40 Boost.Histogram provides the [funcref boost::histogram::indexed] range generator for convenient ite…
|
D | histogram.qbk | 8 [library Boost.Histogram 11 [purpose Histogram library] 24 Boost.Histogram provides an easy-to-use, fast, and extensible multi-dimensional histograms and prof…
|
/third_party/boost/libs/histogram/ |
D | CONTRIBUTING.md | 1 # Contributing to Boost.Histogram 5 If you like Boost.Histogram, please star the project on Github! We want Boost.Histogram to be the b… 47 …Histogram maintains 100% line coverage. Coverage is automatically checked by CI. To generate a rep… 53 …(https://www.boost.org/development/requirements.html) and the established style in Boost.Histogram.
|
/third_party/boost/libs/histogram/examples/ |
D | guide_parallel_filling.cpp | 17 template <typename Histogram> 18 void fill(Histogram& h) { in fill()
|
/third_party/grpc/src/python/grpcio_tests/tests_aio/benchmark/ |
D | benchmark_client.py | 46 hist: histogram.Histogram): argument 103 hist: histogram.Histogram): argument 133 hist: histogram.Histogram): argument 163 hist: histogram.Histogram): argument
|
/third_party/grpc/tools/run_tests/performance/ |
D | massage_qps_stats_helpers.py | 51 Histogram = collections.namedtuple('Histogram', 'buckets boundaries') variable 62 return Histogram(buckets=buckets, boundaries=boundaries)
|
/third_party/grpc/src/proto/grpc/core/ |
D | stats.proto | 24 message Histogram { message 32 Histogram histogram = 11;
|
/third_party/grpc/src/cpp/util/ |
D | core_stats.cc | 24 using grpc::core::Histogram; 39 Histogram* h = m->mutable_histogram(); in CoreStatsToProto()
|