/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/chrome/browser/extensions/api/serial/ |
serial_io_handler.cc | 43 void SerialIoHandler::Read(int max_bytes) { 46 pending_read_buffer_ = new net::IOBuffer(max_bytes); 47 pending_read_buffer_len_ = max_bytes;
|
/external/chromium_org/third_party/webrtc/modules/audio_coding/codecs/isac/fix/test/ |
isac_speed_test.cc | 31 int max_bytes, int* encoded_bytes); 66 int max_bytes, int* encoded_bytes) { 80 assert(value <= max_bytes);
|
/external/chromium_org/third_party/webrtc/modules/audio_coding/codecs/opus/ |
opus_speed_test.cc | 30 int max_bytes, int* encoded_bytes); 62 int max_bytes, int* encoded_bytes) { 65 input_length_sample_, max_bytes,
|
/external/chromium_org/net/disk_cache/ |
cache_creator.cc | 27 CacheCreator(const base::FilePath& path, bool force, int max_bytes, 60 const base::FilePath& path, bool force, int max_bytes, 68 max_bytes_(max_bytes), 158 int max_bytes, 164 *backend = disk_cache::MemBackendImpl::CreateBackend(max_bytes, net_log); 168 CacheCreator* creator = new CacheCreator(path, force, max_bytes, type,
|
/external/chromium_org/net/disk_cache/memory/ |
mem_backend_impl.cc | 44 scoped_ptr<Backend> MemBackendImpl::CreateBackend(int max_bytes, 47 cache->SetMaxSize(max_bytes); 77 bool MemBackendImpl::SetMaxSize(int max_bytes) { 78 COMPILE_ASSERT(sizeof(max_bytes) == sizeof(max_size_), unsupported_int_model); 79 if (max_bytes < 0) 83 if (!max_bytes) 86 max_size_ = max_bytes;
|
mem_backend_impl.h | 31 // object should be deleted when not needed anymore. max_bytes is the maximum 32 // size the cache can grow to. If zero is passed in as max_bytes, the cache 35 static scoped_ptr<Backend> CreateBackend(int max_bytes, net::NetLog* net_log); 41 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/third_party/webrtc/modules/audio_coding/neteq/tools/ |
neteq_quality_test.h | 41 // 2. save the bit stream to |payload| of |max_bytes| bytes in size, 44 uint8_t* payload, int max_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 ? *num_bytes : 0; local 88 if (message->num_bytes() <= max_bytes)
|
/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/third_party/webrtc/modules/audio_coding/neteq/test/ |
neteq_opus_fec_quality_test.cc | 108 uint8_t* payload, int max_bytes); 155 uint8_t* payload, int max_bytes) { 157 block_size_samples, max_bytes,
|
/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);
|
/prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.11-4.8/sysroot/usr/include/alsa/ |
control_external.h | 192 size_t max_bytes); 213 size_t max_bytes);
|