Home | History | Annotate | Download | only in worker

Lines Matching defs:allocationCount

37   private final int allocationCount;
44 * ({@code allocationCount}), cumulative size of the allocations ({@code allocationSize}) and the
47 AllocationStats(int allocationCount, long allocationSize, int reps) {
48 this(allocationCount, allocationSize, reps, ImmutableMultiset.<Allocation>of());
60 private AllocationStats(int allocationCount, long allocationSize, int reps,
62 checkArgument(allocationCount >= 0, "allocationCount (%s) was negative", allocationCount);
63 this.allocationCount = allocationCount;
72 return allocationCount;
98 return new AllocationStats(allocationCount - baseline.allocationCount,
118 allocationCount - baseline.allocationCount,
135 .value(Value.create(allocationCount, ""))
152 return allocationCount == that.allocationCount
163 return Objects.hashCode(allocationCount, allocationSize, reps, allocations);
168 .add("allocationCount", allocationCount)