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

  /external/caliper/caliper/src/test/java/com/google/caliper/memory/
ObjectGraphMeasurerTest.java 19 import com.google.caliper.memory.ObjectGraphMeasurer.Footprint;
42 ObjectGraphMeasurer.Footprint footprint = ObjectGraphMeasurer.measure(oneEnumField); local
43 assertEquals(new Footprint(1, 1, 0, NO_PRIMITIVES), footprint);
52 ObjectGraphMeasurer.Footprint footprint = ObjectGraphMeasurer.measure(oneClassField); local
53 assertEquals(new ObjectGraphMeasurer.Footprint(1, 1, 0, NO_PRIMITIVES), footprint);
61 ObjectGraphMeasurer.Footprint footprint = ObjectGraphMeasurer.measure(oneObjectField) local
73 ObjectGraphMeasurer.Footprint footprint = ObjectGraphMeasurer.measure(withCycle); local
84 ObjectGraphMeasurer.Footprint footprint = ObjectGraphMeasurer.measure(multiplePathsToObject); local
95 ObjectGraphMeasurer.Footprint footprint = ObjectGraphMeasurer.measure(multiplePathsToClass); local
104 ObjectGraphMeasurer.Footprint footprint = ObjectGraphMeasurer.measure(new WithStaticField()); local
118 ObjectGraphMeasurer.Footprint footprint = ObjectGraphMeasurer.measure(oneNullOneNonNull); local
    [all...]
  /external/caliper/caliper/src/main/java/com/google/caliper/api/
Footprint.java 26 * Annotates a method whose return value is an object whose total memory footprint is to be
31 public @interface Footprint {
34 * example, {@code @Footprint(ignore = Element.class) public Set<Element> set() {...}} would
  /external/caliper/caliper/src/main/java/com/google/caliper/memory/
ObjectGraphMeasurer.java 34 * A tool that can qualitatively measure the footprint
40 * The footprint of an object graph.
42 public final static class Footprint {
53 * Constructs a Footprint, by specifying the number of objects,
62 public Footprint(int objects, int nonNullRefs, int nullRefs,
76 * Returns the number of objects of this footprint.
83 * Returns the number of non-null references of this footprint.
90 * Returns the number of null references of this footprint.
97 * Returns the number of all references (null and non-null) of this footprint.
104 * Returns the number of primitives of this footprint
    [all...]
  /external/guava/guava-tests/benchmark/com/google/common/util/concurrent/
StripedBenchmark.java 25 import com.google.caliper.api.Footprint;
89 @Footprint Object sizeOfStriped() {
96 @Footprint Object sizeOfPopulatedStriped() {
MoreExecutorsDirectExecutorBenchmark.java 26 import com.google.caliper.api.Footprint;
91 @Footprint Object measureSize() {
ExecutionListBenchmark.java 25 import com.google.caliper.api.Footprint;
55 /** Returns the underlying implementation, useful for the Footprint benchmark. */
186 @Footprint(exclude = {Runnable.class, Executor.class})
  /art/runtime/gc/space/
rosalloc_space.cc 109 // will ask for this memory from sys_alloc which will fail as the footprint (this value plus the
110 // size of the large allocation) will be greater than the footprint limit.
138 // with a footprint of morecore_start. When morecore_start bytes of
167 size_t footprint = rosalloc_->Footprint(); local
168 rosalloc_->SetFootprintLimit(footprint);
268 return rosalloc_->Footprint();
279 // Compare against the actual footprint, rather than the Size(), because the heap may not have
281 size_t current_space_size = rosalloc_->Footprint();
380 // Callback from rosalloc when it needs to increase the footprint
    [all...]
  /art/runtime/gc/allocator/
rosalloc.h 698 // The footprint in bytes of the currently allocated portion of the
702 // The maximum footprint. The address, base_ + capacity_, indicates
753 // and the footprint.
    [all...]
rosalloc.cc 167 // Failed to allocate pages. Grow the footprint, if possible.
219 LOG(INFO) << "RosAlloc::AllocPages() : increased the footprint from "
    [all...]
  /external/owasp/sanitizer/tools/findbugs/lib/
findbugs.jar 
  /prebuilts/tools/common/m2/repository/com/google/code/findbugs/findbugs/2.0.1/
findbugs-2.0.1.jar 
  /prebuilts/tools/common/m2/repository/com/google/code/findbugs/findbugs/2.0.3/
findbugs-2.0.3.jar 
  /prebuilts/tools/common/m2/repository/com/google/code/findbugs/findbugs/3.0.0/
findbugs-3.0.0.jar 

Completed in 917 milliseconds