HomeSort by relevance Sort by last modified time
    Searched refs:AllocationStats (Results 1 - 7 of 7) sorted by null

  /external/caliper/caliper/src/main/java/com/google/caliper/worker/
AllocationRecorder.java 39 AllocationStats stats = stopRecording(1);
56 * to {@link #startRecording()} to an {@link AllocationStats} object.
60 abstract AllocationStats stopRecording(int reps);
MicrobenchmarkAllocationWorker.java 88 List<AllocationStats> history = new ArrayList<AllocationStats>();
91 AllocationStats baseline = null;
94 AllocationStats stats = measureAllocations(benchmark, benchmarkMethod, 0);
110 AllocationStats previous = null;
111 for (AllocationStats allocationStats : history) {
113 builder.append(LINE_SEPARATOR).append(" ").append(allocationStats);
115 AllocationStats.Delta delta = allocationStats.delta(previous)
    [all...]
AllocationStats.java 36 final class AllocationStats {
43 * Constructs a new {@link AllocationStats} with the given number of allocations
47 AllocationStats(int allocationCount, long allocationSize, int reps) {
52 * Constructs a new {@link AllocationStats} with the given allocations and the number of
55 AllocationStats(Collection<Allocation> allocations, int reps) {
60 private AllocationStats(int allocationCount, long allocationSize, int reps,
84 AllocationStats minus(AllocationStats baseline) {
98 return new AllocationStats(allocationCount - baseline.allocationCount,
113 * {@code baseline} measurement. Unlike {@link #minus(AllocationStats)} this does not have t
    [all...]
AggregateAllocationsRecorder.java 56 @Override public AllocationStats stopRecording(int reps) {
59 return new AllocationStats(allocationCount.get(), allocationSize.get(), reps);
MacrobenchmarkAllocationWorker.java 51 private AllocationStats measureAllocations(Object benchmark, Method method) throws Exception {
AllAllocationsRecorder.java 85 @Override public AllocationStats stopRecording(int reps) {
88 return new AllocationStats(allocations, reps);
  /external/v8/src/heap/
spaces.h     [all...]

Completed in 96 milliseconds