Home | History | Annotate | Download | only in base

Lines Matching defs:memory

162 // Returns the amount of installed physical memory in Bytes.  Cacheable.
165 int64_t memory = -1;
172 memory = status.ullTotalPhys;
178 size_t len = sizeof(memory);
179 int error = sysctlbyname("hw.memsize", &memory, &len, NULL, 0);
180 if (error || memory == 0)
181 memory = -1;
183 memory = static_cast<int64_t>(sysconf(_SC_PHYS_PAGES)) *
185 if (memory < 0) {
189 memory = -1;
193 return memory;