/external/chromium_org/components/sessions/ |
serialized_navigation_entry.cc | 163 // |pickle|, if and only if |str| fits within (|max_bytes| - 171 int max_bytes, 174 if (*bytes_written + num_bytes < max_bytes) { 187 int max_bytes, 190 if (*bytes_written + num_bytes < max_bytes) {
|
/libcore/luni/src/main/java/org/apache/harmony/security/provider/crypto/ |
SHA1PRNG_SecureRandomImpl.java | 92 // MAX_BYTES - maximum # of seed bytes processing which doesn't require extra frame 108 private static final int MAX_BYTES = 48; 334 if (seed[BYTES_OFFSET] < MAX_BYTES) { 380 if (seed[BYTES_OFFSET] > MAX_BYTES) { 387 if (seed[BYTES_OFFSET] > MAX_BYTES) { 458 if (seed[BYTES_OFFSET] < MAX_BYTES) { // no extra frame 517 if (seed[BYTES_OFFSET] >= MAX_BYTES) {
|
/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/chrome/browser/extensions/activity_log/ |
activity_log_browsertest.cc | 87 prerender_manager->mutable_config().max_bytes = 1000 * 1024 * 1024;
|
/external/chromium_org/net/disk_cache/simple/ |
simple_index.cc | 186 bool SimpleIndex::SetMaxSize(int max_bytes) { 187 if (max_bytes < 0) 191 if (!max_bytes) 194 max_size_ = max_bytes;
|
simple_backend_impl.h | 47 SimpleBackendImpl(const base::FilePath& path, int max_bytes, 62 bool SetMaxSize(int max_bytes);
|
simple_backend_impl.cc | 201 int max_bytes, 208 orig_max_size_(max_bytes), 244 bool SimpleBackendImpl::SetMaxSize(int max_bytes) { 245 orig_max_size_ = max_bytes; 246 return index_->SetMaxSize(max_bytes);
|
simple_index.h | 89 bool SetMaxSize(int max_bytes);
|
/external/chromium_org/third_party/freetype/src/cache/ |
ftcmanag.h | 120 /* its `num_bytes' field is greater than its `max_bytes' field. It */
|
/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/freetype/src/cache/ |
ftcmanag.h | 120 /* its `num_bytes' field is greater than its `max_bytes' field. It */
|
/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/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/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);
|
/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);
|
/external/chromium_org/net/http/ |
http_cache.h | 100 // |max_bytes| is zero, a default value will be calculated automatically. 102 const base::FilePath& path, int max_bytes, 107 static BackendFactory* InMemory(int max_bytes);
|
http_cache.cc | 60 int max_bytes, 65 max_bytes_(max_bytes), 72 HttpCache::BackendFactory* HttpCache::DefaultBackend::InMemory(int max_bytes) { 74 base::FilePath(), max_bytes, NULL); [all...] |
/external/chromium_org/chrome/browser/extensions/api/serial/ |
serial_io_handler.h | 47 void Read(int max_bytes);
|
/external/chromium_org/third_party/openssl/openssl/crypto/rand/ |
rand.h | 106 int RAND_load_file(const char *file,long max_bytes);
|
/external/chromium_org/third_party/openssl/openssl/include/openssl/ |
rand.h | 106 int RAND_load_file(const char *file,long max_bytes);
|
/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);
|
/packages/experimental/procstatlog/ |
procstatreport.py | 390 max_bytes = 0 403 max_bytes = max(max_bytes, rx, tx) 434 "valueRange": [0, max_bytes * 11 / 10],
|
/external/chromium_org/net/disk_cache/blockfile/ |
backend_impl_v3.cc | 100 bool BackendImplV3::SetMaxSize(int max_bytes) { 101 COMPILE_ASSERT(sizeof(max_bytes) == sizeof(max_size_), unsupported_int_model); 102 if (max_bytes < 0) 106 if (!max_bytes) 110 if (max_bytes >= kint32max - kint32max / 10) 111 max_bytes = kint32max - kint32max / 10 - 1; 114 max_size_ = max_bytes; [all...] |
/external/chromium_org/media/formats/webm/ |
webm_parser.cc | 417 // |max_bytes| - The maximum number of bytes the field can be. ID fields 427 int max_bytes, bool mask_first_byte, 442 for (int i = 0; i < max_bytes; ++i) {
|