Home
last modified time | relevance | path

Searched refs:physical_memory (Results 1 – 4 of 4) sorted by relevance

/openbsd/gnu/llvm/lldb/tools/debugserver/source/MacOSX/
H A DMachVMMemory.cpp155 static uint64_t physical_memory = 0; in GetPhysicalMemory() local
158 return physical_memory; in GetPhysicalMemory()
160 size_t len = sizeof(physical_memory); in GetPhysicalMemory()
161 sysctlbyname("hw.memsize", &physical_memory, &len, NULL, 0); in GetPhysicalMemory()
164 return physical_memory; in GetPhysicalMemory()
170 uint64_t &physical_memory, uint64_t &anonymous, in GetMemoryProfile() argument
174 physical_memory = GetPhysicalMemory(); in GetMemoryProfile()
H A DMachVMMemory.h34 uint64_t &physical_memory, uint64_t &anonymous,
H A DMachTask.mm366 uint64_t physical_memory = 0;
372 physical_memory, anonymous,
419 profile_data_stream << "total:" << physical_memory << ';';
426 (physical_memory / pagesize) -
/openbsd/gnu/lib/libiberty/src/
H A Dphysmem.c99 double pages = pss.physical_memory; in physmem_total()