HomeSort by relevance Sort by last modified time
    Searched refs:max_bytes (Results 26 - 50 of 73) sorted by null

12 3

  /external/webp/src/utils/
bit_writer.c 212 const size_t max_bytes = bw->end_ - bw->buf_; local
220 if (max_bytes > 0 && size_required <= max_bytes) return 1;
221 allocated_size = (3 * max_bytes) >> 1;
  /external/chromium_org/chrome/browser/extensions/activity_log/
activity_log_browsertest.cc 87 prerender_manager->mutable_config().max_bytes = 1000 * 1024 * 1024;
  /external/chromium_org/components/sessions/
serialized_navigation_entry.cc 161 // |pickle|, if and only if |str| fits within (|max_bytes| -
169 int max_bytes,
172 if (*bytes_written + num_bytes < max_bytes) {
185 int max_bytes,
188 if (*bytes_written + num_bytes < max_bytes) {
  /external/chromium_org/net/disk_cache/blockfile/
disk_format_v3.h 76 int32 max_bytes; // Total maximum size of the stored data. member in struct:disk_cache::IndexHeaderV3
backend_impl_v3.h 59 bool SetMaxSize(int max_bytes);
backend_impl_v3.cc 93 bool BackendImplV3::SetMaxSize(int max_bytes) {
94 COMPILE_ASSERT(sizeof(max_bytes) == sizeof(max_size_), unsupported_int_model);
95 if (max_bytes < 0)
99 if (!max_bytes)
103 if (max_bytes >= kint32max - kint32max / 10)
104 max_bytes = kint32max - kint32max / 10 - 1;
107 max_size_ = max_bytes;
    [all...]
backend_impl.h 87 bool SetMaxSize(int max_bytes);
  /external/chromium_org/net/disk_cache/
disk_cache.h 42 // files will be deleted and a new set will be created. |max_bytes| is the
43 // maximum size the cache can grow to. If zero is passed in as |max_bytes|, the
56 int max_bytes,
  /external/chromium_org/net/disk_cache/simple/
simple_index.cc 188 bool SimpleIndex::SetMaxSize(int max_bytes) {
189 if (max_bytes < 0)
193 if (!max_bytes)
196 max_size_ = max_bytes;
simple_index.h 89 bool SetMaxSize(int max_bytes);
simple_backend_impl.cc 228 int max_bytes,
235 orig_max_size_(max_bytes),
273 bool SimpleBackendImpl::SetMaxSize(int max_bytes) {
274 orig_max_size_ = max_bytes;
275 return index_->SetMaxSize(max_bytes);
  /external/chromium_org/third_party/freetype/src/psaux/
psobjs.h 114 FT_Offset max_bytes,
  /external/freetype/src/psaux/
psobjs.h 114 FT_Offset max_bytes,
  /external/pdfium/core/src/fxge/fx_freetype/fxft2.5.01/src/psaux/
psobjs.h 114 FT_Offset max_bytes,
  /external/qemu/hw/core/
loader.c 515 size_t max_bytes; local
519 max_bytes = UBOOT_MAX_GUNZIP_BYTES;
520 data = g_malloc(max_bytes);
522 bytes = gunzip(data, max_bytes, compressed_data, hdr->ih_size);
  /external/chromium_org/chrome/browser/sessions/
base_session_service.cc 30 // |pickle|, if and only if |str| fits within (|max_bytes| - |*bytes_written|).
32 void WriteStringToPickle(Pickle& pickle, int* bytes_written, int max_bytes,
35 if (*bytes_written + num_bytes < max_bytes) {
  /external/chromium_org/net/http/
http_cache.h 104 // |max_bytes| is zero, a default value will be calculated automatically.
108 int max_bytes,
113 static BackendFactory* InMemory(int max_bytes);
  /external/chromium_org/net/quic/congestion_control/
send_algorithm_simulator.h 162 // Transfers bytes through the connection until |max_bytes| are reached,
163 // |max_time| is reached, or all senders have finished sending. If max_bytes
165 void TransferBytes(QuicByteCount max_bytes, QuicTime::Delta max_time);
send_algorithm_simulator.cc 76 void SendAlgorithmSimulator::TransferBytes(QuicByteCount max_bytes,
84 bytes_sent < max_bytes) {
  /external/chromium_org/third_party/freetype/include/freetype/
ftcache.h 290 /* max_bytes :: Maximum number of bytes to use for cached data nodes. */
311 FT_ULong max_bytes,
    [all...]
  /external/freetype/include/
ftcache.h 290 /* max_bytes :: Maximum number of bytes to use for cached data nodes. */
311 FT_ULong max_bytes,
    [all...]
  /external/pdfium/core/include/thirdparties/freetype/freetype/
ftcache.h 290 /* max_bytes :: Maximum number of bytes to use for cached data nodes. */
311 FT_ULong max_bytes,
    [all...]
  /external/pdfium/core/src/fxge/fx_freetype/fxft2.5.01/include/freetype/
ftcache.h 290 /* max_bytes :: Maximum number of bytes to use for cached data nodes. */
311 FT_ULong max_bytes,
    [all...]
  /packages/experimental/procstatlog/
procstatreport.py 390 max_bytes = 0
403 max_bytes = max(max_bytes, rx, tx)
434 "valueRange": [0, max_bytes * 11 / 10],
  /art/runtime/verifier/
register_line.cc 491 void RegisterLine::WriteReferenceBitMap(std::vector<uint8_t>& data, size_t max_bytes) {
500 if ((i / 8) >= max_bytes) {
504 DCHECK_LT(i / 8, max_bytes) << "val=" << static_cast<uint32_t>(val);

Completed in 875 milliseconds

12 3