Home
last modified time | relevance | path

Searched refs:max_bytes_ (Results 1 – 5 of 5) sorted by relevance

/external/webp/src/utils/
Dbit_writer.c207 if (bw->max_bytes_ > 0 && size_required <= bw->max_bytes_) return 1; in VP8LBitWriterResize()
208 allocated_size = (3 * bw->max_bytes_) >> 1; in VP8LBitWriterResize()
220 bw->max_bytes_ = allocated_size; in VP8LBitWriterResize()
270 if ((bw->bit_pos_ >> 3) > (bw->max_bytes_ - 8)) { in VP8LWriteBits()
271 const uint64_t extra_size = 32768ULL + bw->max_bytes_; in VP8LWriteBits()
Dbit_writer.h76 size_t max_bytes_; member
/external/chromium/net/http/
Dhttp_cache.h115 int max_bytes_; variable
Dhttp_cache.cc75 max_bytes_(max_bytes), in DefaultBackend()
89 DCHECK_GE(max_bytes_, 0); in CreateBackend()
90 return disk_cache::CreateCacheBackend(type_, path_, max_bytes_, true, in CreateBackend()
/external/chromium/net/disk_cache/
Dbackend_impl.cc194 : path_(path), force_(force), retry_(false), max_bytes_(max_bytes), in CacheCreator()
214 int max_bytes_; member in __anon07f1117a0111::CacheCreator
229 cache_->SetMaxSize(max_bytes_); in Run()