OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:mstats
(Results
1 - 9
of
9
) sorted by null
/prebuilts/go/darwin-x86/src/runtime/debug/
garbage_test.go
18
var
mstats
runtime.MemStats
29
runtime.ReadMemStats(&
mstats
)
31
if stats.NumGC != int64(
mstats
.NumGC) {
32
t.Errorf("stats.NumGC = %d, but
mstats
.NumGC = %d", stats.NumGC,
mstats
.NumGC)
34
if stats.PauseTotal != time.Duration(
mstats
.PauseTotalNs) {
35
t.Errorf("stats.PauseTotal = %d, but
mstats
.PauseTotalNs = %d", stats.PauseTotal,
mstats
.PauseTotalNs)
37
if stats.LastGC.UnixNano() != int64(
mstats
.LastGC) {
38
t.Errorf("stats.LastGC.UnixNano = %d, but
mstats
.LastGC = %d", stats.LastGC.UnixNano(), mstats.LastGC
[
all
...]
/prebuilts/go/linux-x86/src/runtime/debug/
garbage_test.go
18
var
mstats
runtime.MemStats
29
runtime.ReadMemStats(&
mstats
)
31
if stats.NumGC != int64(
mstats
.NumGC) {
32
t.Errorf("stats.NumGC = %d, but
mstats
.NumGC = %d", stats.NumGC,
mstats
.NumGC)
34
if stats.PauseTotal != time.Duration(
mstats
.PauseTotalNs) {
35
t.Errorf("stats.PauseTotal = %d, but
mstats
.PauseTotalNs = %d", stats.PauseTotal,
mstats
.PauseTotalNs)
37
if stats.LastGC.UnixNano() != int64(
mstats
.LastGC) {
38
t.Errorf("stats.LastGC.UnixNano = %d, but
mstats
.LastGC = %d", stats.LastGC.UnixNano(), mstats.LastGC
[
all
...]
/external/e2fsprogs/e2fsck/
mtrace.h
215
struct
mstats
struct
225
extern struct
mstats
mstats
__P ((void));
/prebuilts/go/darwin-x86/src/runtime/internal/atomic/
atomic_test.go
53
// we actually do so is
mstats
.go, functions mSysStat{Inc,Dec}.
58
// mSysStat{Inc,Dec} in
mstats
.go have explicit checks for
/prebuilts/go/linux-x86/src/runtime/internal/atomic/
atomic_test.go
53
// we actually do so is
mstats
.go, functions mSysStat{Inc,Dec}.
58
// mSysStat{Inc,Dec} in
mstats
.go have explicit checks for
/prebuilts/go/darwin-x86/src/runtime/
mstats.go
24
type
mstats
struct {
type
36
// In
mstats
, heap_sys and heap_inuse includes stack memory,
63
stacks_sys uint64 // only counts newosproc0 stack in
mstats
; differs from MemStats.StackSys
142
var memstats
mstats
417
// Size of the trailing by_size array differs between
mstats
and MemStats,
420
// sizeof_C_MStats is the size of the prefix of
mstats
that
428
throw("
MStats
vs MemStatsType size mismatch")
457
//
mstats
and MemStats. NumSizeClasses was changed, but we
malloc.go
25
//
mstats
: allocation statistics.
/prebuilts/go/linux-x86/src/runtime/
mstats.go
24
type
mstats
struct {
type
36
// In
mstats
, heap_sys and heap_inuse includes stack memory,
63
stacks_sys uint64 // only counts newosproc0 stack in
mstats
; differs from MemStats.StackSys
142
var memstats
mstats
417
// Size of the trailing by_size array differs between
mstats
and MemStats,
420
// sizeof_C_MStats is the size of the prefix of
mstats
that
428
throw("
MStats
vs MemStatsType size mismatch")
457
//
mstats
and MemStats. NumSizeClasses was changed, but we
malloc.go
25
//
mstats
: allocation statistics.
Completed in 3837 milliseconds