Home
last modified time | relevance | path

Searched refs:total_memory (Results 1 – 3 of 3) sorted by relevance

/external/chromium/net/disk_cache/
Dmem_backend_impl.cc60 int64 total_memory = base::SysInfo::AmountOfPhysicalMemory(); in Init() local
62 if (total_memory <= 0) { in Init()
69 total_memory = total_memory * 2 / 100; in Init()
70 if (total_memory > kDefaultCacheSize * 5) in Init()
73 max_size_ = static_cast<int32>(total_memory); in Init()
Dbackend_impl.cc2109 static int64 total_memory = base::SysInfo::AmountOfPhysicalMemory(); in MaxBuffersSize() local
2116 total_memory = total_memory * 2 / 100; in MaxBuffersSize()
2117 if (total_memory > kMaxBuffersSize || total_memory <= 0) in MaxBuffersSize()
2118 total_memory = kMaxBuffersSize; in MaxBuffersSize()
2123 return static_cast<int>(total_memory); in MaxBuffersSize()
/external/grub/stage2/
Dshared.h437 unsigned short total_memory; member