info.hh (7811:a8fc35183c10) info.hh (7831:c1e158414648)
1/*
2 * Copyright (c) 2003-2005 The Regents of The University of Michigan
3 * All rights reserved.
4 *
5 * Redistribution and use in source and binary forms, with or without
6 * modification, are permitted provided that the following conditions are
7 * met: redistributions of source code must retain the above copyright
8 * notice, this list of conditions and the following disclaimer;

--- 150 unchanged lines hidden (view full) ---

159
160 public:
161 virtual size_type size() const = 0;
162 virtual const VCounter &value() const = 0;
163 virtual const VResult &result() const = 0;
164 virtual Result total() const = 0;
165};
166
1/*
2 * Copyright (c) 2003-2005 The Regents of The University of Michigan
3 * All rights reserved.
4 *
5 * Redistribution and use in source and binary forms, with or without
6 * modification, are permitted provided that the following conditions are
7 * met: redistributions of source code must retain the above copyright
8 * notice, this list of conditions and the following disclaimer;

--- 150 unchanged lines hidden (view full) ---

159
160 public:
161 virtual size_type size() const = 0;
162 virtual const VCounter &value() const = 0;
163 virtual const VResult &result() const = 0;
164 virtual Result total() const = 0;
165};
166
167enum DistType { Deviation, Dist };
167enum DistType { Deviation, Dist, Hist };
168
169struct DistData
170{
171 DistType type;
172 Counter min;
173 Counter max;
174 Counter bucket_size;
175

--- 62 unchanged lines hidden ---
168
169struct DistData
170{
171 DistType type;
172 Counter min;
173 Counter max;
174 Counter bucket_size;
175

--- 62 unchanged lines hidden ---