HomeSort by relevance Sort by last modified time
    Searched defs:footprint (Results 1 - 6 of 6) 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...]
  /art/runtime/gc/space/
dlmalloc_space.cc 92 // will ask for this memory from sys_alloc which will fail as the footprint (this value plus the
93 // size of the large allocation) will be greater than the footprint limit.
115 // create mspace using our backing storage starting at begin and with a footprint of
141 size_t footprint = mspace_footprint(mspace_); local
142 mspace_set_footprint_limit(mspace_, footprint);
254 // Compare against the actual footprint, rather than the Size(), because the heap may not have
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...]
space_test.h 154 // The space's footprint equals amount of resources requested from system
155 size_t footprint = space->GetFootprint(); local
158 EXPECT_GT(footprint, 0u);
161 EXPECT_LE(footprint, growth_limit);
168 EXPECT_GE(space->Size(), footprint);
204 footprint = space->GetFootprint();
205 EXPECT_GE(space->Size(), footprint); // invariant
231 EXPECT_LE(footprint, growth_limit);
234 // footprint and size should agree with amount allocated
235 EXPECT_GE(footprint, amount_allocated)
    [all...]
  /bionic/libc/dns/nameser/
ns_print.c 508 u_int typ, algorithm, labels, footprint; local
537 /* Signature Footprint. */
538 footprint = ns_get16(rdata); rdata += NS_INT16SZ;
539 len = snprintf(tmp, sizeof(tmp), "%u ", footprint);
  /external/dlmalloc/
malloc.c 2592 size_t footprint; member in struct:malloc_state
    [all...]

Completed in 575 milliseconds