Searched refs:max_bytes_ (Results 1 – 5 of 5) sorted by relevance
/external/webp/src/utils/ |
D | bit_writer.c | 207 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()
|
D | bit_writer.h | 76 size_t max_bytes_; member
|
/external/chromium/net/http/ |
D | http_cache.h | 115 int max_bytes_; variable
|
D | http_cache.cc | 75 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/ |
D | backend_impl.cc | 194 : 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()
|