statistics.hh (6212:64c3b989238c) statistics.hh (6213:2f07b47d95a1)
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;

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

1383 {
1384 const Params *params = safe_cast<const Params *>(info->storageParams);
1385 min_track = params->min;
1386 max_track = params->max;
1387 bucket_size = params->bucket_size;
1388
1389 min_val = CounterLimits::max();
1390 max_val = CounterLimits::min();
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;

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

1383 {
1384 const Params *params = safe_cast<const Params *>(info->storageParams);
1385 min_track = params->min;
1386 max_track = params->max;
1387 bucket_size = params->bucket_size;
1388
1389 min_val = CounterLimits::max();
1390 max_val = CounterLimits::min();
1391 underflow = 0;
1392 overflow = 0;
1391 underflow = Counter();
1392 overflow = Counter();
1393
1394 size_type size = cvec.size();
1395 for (off_type i = 0; i < size; ++i)
1396 cvec[i] = Counter();
1397
1398 sum = Counter();
1399 squares = Counter();
1400 samples = Counter();

--- 1354 unchanged lines hidden ---
1393
1394 size_type size = cvec.size();
1395 for (off_type i = 0; i < size; ++i)
1396 cvec[i] = Counter();
1397
1398 sum = Counter();
1399 squares = Counter();
1400 samples = Counter();

--- 1354 unchanged lines hidden ---