statistics.hh (9554:406fbcf60223) | statistics.hh (9557:8666e81607a6) |
---|---|
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; --- 1313 unchanged lines hidden (view full) --- 1322 1323 private: 1324 /** The minimum value to track. */ 1325 Counter min_track; 1326 /** The maximum value to track. */ 1327 Counter max_track; 1328 /** The number of entries in each bucket. */ 1329 Counter bucket_size; | 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; --- 1313 unchanged lines hidden (view full) --- 1322 1323 private: 1324 /** The minimum value to track. */ 1325 Counter min_track; 1326 /** The maximum value to track. */ 1327 Counter max_track; 1328 /** The number of entries in each bucket. */ 1329 Counter bucket_size; |
1330 /** The number of buckets. Equal to (max-min)/bucket_size. */ 1331 size_type buckets; | |
1332 1333 /** The smallest value sampled. */ 1334 Counter min_val; 1335 /** The largest value sampled. */ 1336 Counter max_val; 1337 /** The number of values sampled less than min. */ 1338 Counter underflow; 1339 /** The number of values sampled more than max. */ --- 1840 unchanged lines hidden --- | 1330 1331 /** The smallest value sampled. */ 1332 Counter min_val; 1333 /** The largest value sampled. */ 1334 Counter max_val; 1335 /** The number of values sampled less than min. */ 1336 Counter underflow; 1337 /** The number of values sampled more than max. */ --- 1840 unchanged lines hidden --- |