Lines Matching full:int64
51 int64 ParseSystemPropertyBytes(const base::StringPiece& str) {
52 const int64 KB = 1024;
53 const int64 MB = 1024 * KB;
54 const int64 GB = 1024 * MB;
57 int64 unit_multiplier = 1;
69 int64 result = 0;
72 bool overflow = result >= std::numeric_limits<int64>::max() / unit_multiplier;
84 const int64 MB = 1024 * 1024;
85 int64 result = ParseSystemPropertyBytes(heap_size_str);
91 result = std::min<int64>(std::max<int64>(32 * MB, result), 1024 * MB) / MB;
101 const int64 MB = 1024 * 1024;
102 int64 result = ParseSystemPropertyBytes(heap_size_str);
108 result = std::min<int64>(std::max<int64>(16 * MB, result), 512 * MB) / MB;