public int HdrHistogramLow() { int res = 0; for (int i = 0; i < _allocCount; i++) { var obj = new IntHistogram(Int32.MaxValue / 2, 0); obj.RecordValue(1L); obj.RecordValue(2L); res += obj.GetHashCode(); } return(res); }