HomeSort by relevance Sort by last modified time
    Searched defs:allocationCount (Results 1 - 4 of 4) sorted by null

  /external/caliper/caliper/src/main/java/com/google/caliper/worker/
AggregateAllocationsRecorder.java 31 private final AtomicInteger allocationCount = new AtomicInteger();
39 allocationCount.getAndIncrement();
51 allocationCount.set(0);
59 return new AllocationStats(allocationCount.get(), allocationSize.get(), reps);
AllocationStats.java 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;
    [all...]
  /art/test/004-NativeAllocations/src-art/
Main.java 51 int allocationCount = 256;
57 for (int i = 0; !ref.isEnqueued() && i < allocationCount; ++i) {
64 Thread.sleep(maxExpectedGcDurationMs / allocationCount);
86 int allocationCount = 10;
89 for (int i = 0; i < allocationCount; ++i) {
  /external/conscrypt/benchmark-android/
vogar.jar 

Completed in 89 milliseconds