HomeSort by relevance Sort by last modified time
    Searched refs:max_bytes (Results 1 - 25 of 60) sorted by null

1 2 3

  /external/chromium_org/chrome/browser/prerender/
prerender_config.cc 9 Config::Config() : max_bytes(150 * 1024 * 1024),
prerender_config.h 20 size_t max_bytes; member in struct:prerender::Config
  /external/chromium_org/net/disk_cache/
cache_creator.cc 26 int max_bytes,
64 int max_bytes,
75 max_bytes_(max_bytes),
166 int max_bytes,
174 *backend = disk_cache::MemBackendImpl::CreateBackend(max_bytes, net_log);
180 max_bytes,
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/third_party/webrtc/modules/audio_coding/codecs/isac/fix/test/
isac_speed_test.cc 29 int max_bytes, int* encoded_bytes);
64 int max_bytes, int* encoded_bytes) {
78 assert(value <= max_bytes);
  /external/chromium_org/net/disk_cache/memory/
mem_backend_impl.cc 45 scoped_ptr<Backend> MemBackendImpl::CreateBackend(int max_bytes,
48 cache->SetMaxSize(max_bytes);
78 bool MemBackendImpl::SetMaxSize(int max_bytes) {
79 COMPILE_ASSERT(sizeof(max_bytes) == sizeof(max_size_), unsupported_int_model);
80 if (max_bytes < 0)
84 if (!max_bytes)
87 max_size_ = max_bytes;
mem_backend_impl.h 32 // object should be deleted when not needed anymore. max_bytes is the maximum
33 // size the cache can grow to. If zero is passed in as max_bytes, the cache
36 static scoped_ptr<Backend> CreateBackend(int max_bytes, net::NetLog* net_log);
42 bool SetMaxSize(int max_bytes);
  /external/chromium_org/third_party/webrtc/modules/audio_coding/codecs/opus/
opus_speed_test.cc 27 int max_bytes, int* encoded_bytes);
59 int max_bytes, int* encoded_bytes) {
62 input_length_sample_, max_bytes,
  /external/chromium_org/third_party/webrtc/modules/audio_coding/neteq/test/
neteq_opus_fec_quality_test.cc 120 uint8_t* payload, int max_bytes);
165 uint8_t* payload, int max_bytes) {
167 block_size_samples, max_bytes,
neteq_isac_quality_test.cc 94 uint8_t* payload, int max_bytes);
130 uint8_t* payload, int max_bytes) {
  /external/chromium_org/net/quic/
iovector.h 74 // Appends at most max_bytes from iovec to the IOVector.
77 size_t max_bytes) {
79 for (size_t i = 0; i < iovcnt && max_bytes > 0; ++i) {
80 const size_t length = std::min(max_bytes, iov[i].iov_len);
82 max_bytes -= length;
  /external/chromium_org/third_party/webrtc/modules/audio_coding/codecs/tools/
audio_codec_speed_test.h 35 // 2. save the bit stream to |bit_stream| of |max_bytes| bytes in size,
39 int max_bytes, int* encoded_bytes) = 0;
  /external/chromium_org/content/test/net/
url_request_abort_on_end_job.cc 101 const int max_bytes,
104 *bytes_read = std::min(size_t(max_bytes), sizeof(kPageContent));
  /external/chromium_org/sdch/open-vcdiff/src/
blockhash.h 428 // Will not examine more than max_bytes bytes, which is to say that
429 // the return value will be in the range [0, max_bytes] inclusive.
432 int max_bytes);
436 // Will not examine more than max_bytes bytes, which is to say that
437 // the return value will be in the range [0, max_bytes] inclusive.
440 int max_bytes);
blockhash.cc 348 // Will not examine more than max_bytes bytes, which is to say that
349 // the return value will be in the range [0, max_bytes] inclusive.
352 int max_bytes) {
356 while (bytes_found < max_bytes) {
369 // Will not examine more than max_bytes bytes, which is to say that
370 // the return value will be in the range [0, max_bytes] inclusive.
373 int max_bytes) {
377 while ((bytes_found < max_bytes) && (*source_ptr == *target_ptr)) {
blockhash_test.cc 63 int max_bytes) {
66 max_bytes);
71 int max_bytes) {
74 max_bytes);
393 // characters -- in fact, they're the same string -- but since max_bytes is zero
452 const int max_bytes = expected_length - 1;
453 EXPECT_EQ(max_bytes, MatchingBytesToLeft(
456 max_bytes));
463 const int max_bytes = expected_length + 1;
467 max_bytes));
    [all...]
  /external/chromium_org/third_party/webrtc/modules/audio_coding/neteq/tools/
neteq_quality_test.h 78 // 2. save the bit stream to |payload| of |max_bytes| bytes in size,
81 uint8_t* payload, int max_bytes) = 0;
  /external/openssl/crypto/rand/
rand.h 106 int RAND_load_file(const char *file,long max_bytes);
  /external/openssl/include/openssl/
rand.h 106 int RAND_load_file(const char *file,long max_bytes);
  /external/chromium_org/mojo/system/
local_message_pipe_endpoint.cc 74 const uint32_t max_bytes = num_bytes.IsNull() ? 0 : num_bytes.Get(); local
88 if (message->num_bytes() <= max_bytes)
  /external/chromium_org/net/disk_cache/simple/
simple_backend_impl.h 54 int max_bytes,
69 bool SetMaxSize(int max_bytes);
  /external/chromium_org/third_party/libwebp/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

Completed in 1506 milliseconds

1 2 3