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

  /external/webp/src/utils/
bit_writer.c 207 if (bw->max_bytes_ > 0 && size_required <= bw->max_bytes_) return 1;
208 allocated_size = (3 * bw->max_bytes_) >> 1;
220 bw->max_bytes_ = allocated_size;
270 if ((bw->bit_pos_ >> 3) > (bw->max_bytes_ - 8)) {
271 const uint64_t extra_size = 32768ULL + bw->max_bytes_;
bit_writer.h 76 size_t max_bytes_; member in struct:__anon18243
  /external/chromium/net/http/
http_cache.h 115 int max_bytes_; member in class:net::HttpCache::DefaultBackend
http_cache.cc 75 max_bytes_(max_bytes),
89 DCHECK_GE(max_bytes_, 0);
90 return disk_cache::CreateCacheBackend(type_, path_, max_bytes_, true,
    [all...]
  /external/chromium/net/disk_cache/
backend_impl.cc 194 : path_(path), force_(force), retry_(false), max_bytes_(max_bytes),
214 int max_bytes_; member in class:__anon4969::CacheCreator
229 cache_->SetMaxSize(max_bytes_);
    [all...]

Completed in 891 milliseconds