HomeSort by relevance Sort by last modified time
    Searched refs:footprint (Results 1 - 25 of 30) sorted by null

1 2

  /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/
space_test.h 151 // The space's footprint equals amount of resources requested from system
152 size_t footprint = space->GetFootprint(); local
155 EXPECT_GT(footprint, 0u);
158 EXPECT_LE(footprint, growth_limit);
165 EXPECT_GE(space->Size(), footprint);
201 footprint = space->GetFootprint();
202 EXPECT_GE(space->Size(), footprint); // invariant
228 EXPECT_LE(footprint, growth_limit);
231 // footprint and size should agree with amount allocated
232 EXPECT_GE(footprint, amount_allocated)
    [all...]
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...]
  /prebuilts/go/darwin-x86/test/chan/
select2.go 44 // second time shouldn't increase footprint by much
  /prebuilts/go/linux-x86/test/chan/
select2.go 44 // second time shouldn't increase footprint by much
  /external/parameter-framework/support/android/asio/
asio_shrinker.sh 126 This version of ASIO has been minified for lower disk footprint for Android
  /external/dlmalloc/
malloc.c 2592 size_t footprint; member in struct:malloc_state
    [all...]
  /external/swiftshader/third_party/LLVM/
Makefile 228 show-footprint:
  /device/linaro/bootloader/edk2/StdLib/BsdSocketLib/
ns_print.c 506 u_int type, algorithm, labels, footprint; local
535 /* Signature Footprint. */
536 footprint = ns_get16(rdata); rdata += NS_INT16SZ;
537 len = SPRINTF((tmp, "%u ", (unsigned int)footprint));
  /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);
  /prebuilts/go/darwin-x86/src/runtime/
lock_sema.go 175 // This reduces the nosplit footprint of notetsleep_internal.
os_dragonfly.go 209 // Estimate our VM footprint excluding the heap.
os_freebsd.go 198 // Estimate our VM footprint excluding the heap.
os3_solaris.go 232 // Estimate our VM footprint excluding the heap.
os_linux.go 336 // Estimate our VM footprint excluding the heap.
select.go 279 // simple heap sort, to guarantee n log n time and constant stack footprint.
  /prebuilts/go/linux-x86/src/runtime/
lock_sema.go 175 // This reduces the nosplit footprint of notetsleep_internal.
os_dragonfly.go 209 // Estimate our VM footprint excluding the heap.
os_freebsd.go 198 // Estimate our VM footprint excluding the heap.
os3_solaris.go 232 // Estimate our VM footprint excluding the heap.
os_linux.go 336 // Estimate our VM footprint excluding the heap.
select.go 279 // simple heap sort, to guarantee n log n time and constant stack footprint.
  /prebuilts/go/darwin-x86/src/cmd/compile/internal/gc/
typecheck.go     [all...]
  /prebuilts/go/linux-x86/src/cmd/compile/internal/gc/
typecheck.go     [all...]

Completed in 596 milliseconds

1 2