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

1 2 3 4

  /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/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/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/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,
  /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);
  /libcore/harmony-tests/src/test/java/org/apache/harmony/tests/java/nio/charset/
CharsetEncoderTest.java 38 static final int MAX_BYTES = 3;
86 assertTrue(encoder.maxBytesPerChar() == MAX_BYTES);
107 encoder = new MockCharsetEncoder(cs, (float) AVER_BYTES, MAX_BYTES);
110 assertTrue(encoder.maxBytesPerChar() == MAX_BYTES);
121 CharsetEncoder ec = new MockCharsetEncoder(cs, 1, MAX_BYTES);
124 assertTrue(ec.maxBytesPerChar() == MAX_BYTES);
131 ec = new MockCharsetEncoder(null, 1, MAX_BYTES);
137 MAX_BYTES);
139 // Commented out since the comment is wrong since MAX_BYTES > 1
141 // ec = new MockCharsetEncoder(cs, MAX_BYTES, 1)
    [all...]
CharsetDecoderTest.java 36 protected static final int MAX_BYTES = 3;
66 // assertTrue(decoder.maxCharsPerByte() == MAX_BYTES);
93 decoder = new MockCharsetDecoder(cs, (float) AVER_BYTES, MAX_BYTES);
96 CharsetDecoder ec = new MockCharsetDecoder(cs, 1, MAX_BYTES);
99 assertTrue(ec.maxCharsPerByte() == MAX_BYTES);
105 ec = new MockCharsetDecoder(null, 1, MAX_BYTES);
108 assertTrue(ec.maxCharsPerByte() == MAX_BYTES);
111 new String[0]), 1, MAX_BYTES);
113 // Commented out since the comment is wrong since MAX_BYTES > 1
115 // ec = new MockCharsetDecoder(cs, MAX_BYTES, 1)
    [all...]
  /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/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/sdch/open-vcdiff/src/
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...]
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)) {
  /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/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/third_party/webrtc/modules/audio_coding/neteq/test/
neteq_isac_quality_test.cc 94 uint8_t* payload, int max_bytes);
130 uint8_t* payload, int max_bytes) {
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,
  /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/wpa_supplicant_8/src/wps/
httpread.h 66 * Pass max_bytes == 0 to not read body at all (required for e.g.
74 int max_bytes, /* maximum file size else abort it */
httpread.c 66 int max_bytes; /* maximum file size else abort it */ member in struct:httpread
336 h->max_bytes = 0;
344 h->max_bytes = 0;
455 if (h->max_bytes == 0) {
501 if (h->body_nbytes >= h->max_bytes)
703 * Pass max_bytes == 0 to not read body at all (required for e.g.
711 int max_bytes, /* maximum body size else abort it */
723 h->max_bytes = 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/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);
  /external/pdfium/core/src/fxge/fx_freetype/fxft2.5.01/src/psaux/
psobjs.h 114 FT_Offset max_bytes,
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.11-4.6/sysroot/usr/include/alsa/
control_external.h 192 size_t max_bytes);
213 size_t max_bytes);

Completed in 383 milliseconds

1 2 3 4