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

1 2 3

  /prebuilts/go/darwin-x86/test/
gc2.go 23 st := new(runtime.MemStats)
24 memstats := new(runtime.MemStats)
39 runtime.ReadMemStats(memstats)
40 obj := int64(memstats.HeapObjects - st.HeapObjects)
init1.go 28 memstats := new(runtime.MemStats)
29 runtime.ReadMemStats(memstats)
30 sys, numGC := memstats.Sys, memstats.NumGC
39 runtime.ReadMemStats(memstats)
40 sys1, numGC1 := memstats.Sys, memstats.NumGC
closure.go 98 memstats := new(runtime.MemStats)
99 runtime.ReadMemStats(memstats)
100 n0 := memstats.Mallocs
108 runtime.ReadMemStats(memstats)
109 if n0 != memstats.Mallocs {
  /prebuilts/go/linux-x86/test/
gc2.go 23 st := new(runtime.MemStats)
24 memstats := new(runtime.MemStats)
39 runtime.ReadMemStats(memstats)
40 obj := int64(memstats.HeapObjects - st.HeapObjects)
init1.go 28 memstats := new(runtime.MemStats)
29 runtime.ReadMemStats(memstats)
30 sys, numGC := memstats.Sys, memstats.NumGC
39 runtime.ReadMemStats(memstats)
40 sys1, numGC1 := memstats.Sys, memstats.NumGC
  /prebuilts/go/darwin-x86/test/fixedbugs/
issue15277.go 37 var st runtime.MemStats
issue15281.go 61 var st runtime.MemStats
issue9110.go 23 var stats, stats1, stats2 runtime.MemStats
  /prebuilts/go/linux-x86/test/fixedbugs/
issue15277.go 37 var st runtime.MemStats
issue15281.go 61 var st runtime.MemStats
  /art/runtime/base/
scoped_arena_allocator.cc 49 MemStats ArenaStack::GetPeakStats() const {
51 return MemStats("ArenaStack peak", static_cast<const TaggedStats<Peak>*>(&stats_and_pool_),
arena_allocator.h 37 class MemStats;
370 MemStats GetMemStats() const;
410 class MemStats {
412 MemStats(const char* name,
423 }; // MemStats
arena_allocator.cc 507 MemStats::MemStats(const char* name,
517 void MemStats::Dump(std::ostream& os) const {
523 MemStats ArenaAllocator::GetMemStats() const {
526 return MemStats("ArenaAllocator", this, arena_head_, lost_bytes_adjustment);
  /prebuilts/go/darwin-x86/test/chan/
select2.go 40 memstats := new(runtime.MemStats)
41 runtime.ReadMemStats(memstats)
42 alloc := memstats.Alloc
48 runtime.ReadMemStats(memstats)
51 if memstats.Alloc > alloc && memstats.Alloc-alloc > 1.1e5 {
52 println("BUG: too much memory for 100,000 selects:", memstats.Alloc-alloc)
  /prebuilts/go/linux-x86/test/chan/
select2.go 40 memstats := new(runtime.MemStats)
41 runtime.ReadMemStats(memstats)
42 alloc := memstats.Alloc
48 runtime.ReadMemStats(memstats)
51 if memstats.Alloc > alloc && memstats.Alloc-alloc > 1.1e5 {
52 println("BUG: too much memory for 100,000 selects:", memstats.Alloc-alloc)
  /prebuilts/go/darwin-x86/src/runtime/debug/
garbage_test.go 18 var mstats runtime.MemStats
92 var ms1, ms2 runtime.MemStats
  /prebuilts/go/linux-x86/src/runtime/debug/
garbage_test.go 18 var mstats runtime.MemStats
92 var ms1, ms2 runtime.MemStats
  /prebuilts/go/darwin-x86/src/runtime/
mstats.go 16 // If you edit this structure, also edit type MemStats below.
19 // For detailed descriptions see the documentation for MemStats.
20 // Fields that differ from MemStats are further documented here.
37 // while in MemStats stack memory is separated out from the
62 stacks_inuse uint64 // this number is included in heap_inuse above; differs from MemStats.StackInuse
63 stacks_sys uint64 // only counts newosproc0 stack in mstats; differs from MemStats.StackSys
93 // Statistics below here are not exported to MemStats directly.
142 var memstats mstats var
144 // A MemStats records statistics about the memory allocator.
145 type MemStats struct
    [all...]
  /prebuilts/go/linux-x86/src/runtime/
mstats.go 16 // If you edit this structure, also edit type MemStats below.
19 // For detailed descriptions see the documentation for MemStats.
20 // Fields that differ from MemStats are further documented here.
37 // while in MemStats stack memory is separated out from the
62 stacks_inuse uint64 // this number is included in heap_inuse above; differs from MemStats.StackInuse
63 stacks_sys uint64 // only counts newosproc0 stack in mstats; differs from MemStats.StackSys
93 // Statistics below here are not exported to MemStats directly.
142 var memstats mstats var
144 // A MemStats records statistics about the memory allocator.
145 type MemStats struct
    [all...]
  /prebuilts/go/darwin-x86/src/testing/
allocs.go 27 var memstats runtime.MemStats
28 runtime.ReadMemStats(&memstats)
29 mallocs := 0 - memstats.Mallocs
37 runtime.ReadMemStats(&memstats)
38 mallocs += memstats.Mallocs
  /prebuilts/go/darwin-x86/test/bench/garbage/
stats.go 15 st := new(runtime.MemStats)
tree2.go 34 memstats runtime.MemStats
60 runtime.ReadMemStats(&memstats)
61 pause := memstats.PauseTotalNs
62 inuse := memstats.Alloc
63 free := memstats.TotalAlloc - inuse
76 runtime.ReadMemStats(&memstats)
77 lastPauseNs = memstats.PauseTotalNs
78 lastFree = memstats.TotalAlloc - memstats.Allo
33 memstats runtime.MemStats var
    [all...]
  /prebuilts/go/linux-x86/src/testing/
allocs.go 27 var memstats runtime.MemStats
28 runtime.ReadMemStats(&memstats)
29 mallocs := 0 - memstats.Mallocs
37 runtime.ReadMemStats(&memstats)
38 mallocs += memstats.Mallocs
  /prebuilts/go/linux-x86/test/bench/garbage/
stats.go 15 st := new(runtime.MemStats)
tree2.go 34 memstats runtime.MemStats
60 runtime.ReadMemStats(&memstats)
61 pause := memstats.PauseTotalNs
62 inuse := memstats.Alloc
63 free := memstats.TotalAlloc - inuse
76 runtime.ReadMemStats(&memstats)
77 lastPauseNs = memstats.PauseTotalNs
78 lastFree = memstats.TotalAlloc - memstats.Allo
33 memstats runtime.MemStats var
    [all...]

Completed in 385 milliseconds

1 2 3