HomeSort by relevance Sort by last modified time
    Searched defs:max_bytes (Results 1 - 9 of 9) sorted by null

  /external/chromium_org/chrome/browser/prerender/
prerender_config.h 20 size_t max_bytes; member in struct:prerender::Config
  /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/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/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/wpa_supplicant_8/src/wps/
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/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
  /external/lldb/source/Plugins/Process/MacOSX-Kernel/
CommunicationKDP.cpp 980 const uint32_t max_bytes = packet.GetU32 (&offset); local
    [all...]
  /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/lldb/source/Core/
ValueObject.cpp 956 const uint64_t max_bytes = GetClangType().GetByteSize(); local
957 if (max_bytes > offset)
959 size_t bytes_read = std::min<uint64_t>(max_bytes - offset, bytes);
    [all...]

Completed in 2000 milliseconds