HomeSort by relevance Sort by last modified time
    Searched refs:kDefaultCacheSize (Results 1 - 7 of 7) sorted by null

  /external/chromium_org/net/disk_cache/
cache_util.cc 53 using disk_cache::kDefaultCacheSize;
55 // kDefaultCacheSize.
56 if (available < kDefaultCacheSize * 10 / 8)
59 // Return kDefaultCacheSize if it uses 10% to 80% of the available space.
60 if (available < kDefaultCacheSize * 10)
61 return kDefaultCacheSize;
64 // (2.5 * kDefaultCacheSize) is more than 10%.
65 if (available < static_cast<int64>(kDefaultCacheSize) * 25)
68 // Return the target size (2.5 * kDefaultCacheSize) if it uses 10% to 1%
70 if (available < static_cast<int64>(kDefaultCacheSize) * 250
    [all...]
cache_util.h 44 NET_EXPORT_PRIVATE extern const int kDefaultCacheSize;
backend_unittest.cc     [all...]
  /external/chromium_org/net/disk_cache/blockfile/
backend_worker_v3.cc 36 const int kDefaultCacheSize = 80 * 1024 * 1024;
400 (max_size_ < kint32max - kDefaultCacheSize &&
401 data_->header.num_bytes > max_size_ + kDefaultCacheSize)) {
backend_impl_v3.cc 44 const int kDefaultCacheSize = 80 * 1024 * 1024;
744 max_size_ = kDefaultCacheSize;
755 if (max_size_ > kDefaultCacheSize * 4)
756 max_size_ = kDefaultCacheSize * 4;
    [all...]
backend_impl.cc     [all...]
  /external/chromium_org/third_party/skia/src/core/
SkImageFilter.cpp 26 enum { kDefaultCacheSize = 128 * 1024 * 1024 };
490 return SkImageFilter::Cache::Create(kDefaultCacheSize);

Completed in 209 milliseconds