AllocationStats.java | 39 private final int reps; field in class:AllocationStats 45 * number of {@code reps} passed to the benchmark method. 47 AllocationStats(int allocationCount, long allocationSize, int reps) { 48 this(allocationCount, allocationSize, reps, ImmutableMultiset.<Allocation>of()); 53 * {@code reps} passed to the benchmark method. 55 AllocationStats(Collection<Allocation> allocations, int reps) { 56 this(allocations.size(), Allocation.getTotalSize(allocations), reps, local 60 private AllocationStats(int allocationCount, long allocationSize, int reps, 66 checkArgument(reps >= 0, "reps (%s) was negative", reps) 181 private final int reps; field in class:AllocationStats.Delta [all...] |