HomeSort by relevance Sort by last modified time
    Searched full:chunk (Results 276 - 300 of 1233) sorted by null

<<11121314151617181920>>

  /external/dbus/dbus/
dbus-spawn.c 80 ssize_t chunk; local
90 chunk = read (fd,
94 if (chunk < 0 && errno == EINTR)
97 if (chunk < 0)
107 else if (chunk == 0)
112 else /* chunk > 0 */
113 bytes += chunk;
135 ssize_t chunk; local
145 chunk = read (fd,
148 if (chunk < 0 && errno == EINTR
    [all...]
  /external/zlib/examples/
zlib_how.html 68 <tt>CHUNK</tt> is simply the buffer size for feeding data to and pulling data
73 #define CHUNK 16384
101 unsigned char in[CHUNK];
102 unsigned char out[CHUNK];
160 indicate that this is the last chunk of input data to compress. We need to use <tt>feof()</tt>
161 to check for end-of-file as opposed to seeing if fewer than <tt>CHUNK</tt> bytes have been read. The
162 reason is that if the input file length is an exact multiple of <tt>CHUNK</tt>, we will miss
175 strm.avail_in = fread(in, 1, CHUNK, source);
183 The inner <tt>do</tt>-loop passes our chunk of input data to <tt>deflate()</tt>, and then
195 strm.avail_out = CHUNK;
    [all...]
  /external/libpng/
libpng.3     [all...]
pngset.c 209 png_warning(png_ptr, "Insufficient memory for hIST chunk data.");
611 png_warning(png_ptr, "Insufficient memory to process iCCP chunk.");
737 png_warning(png_ptr, "iTXt chunk not supported.");
812 png_debug1(3, "transferred text chunk %d", info_ptr->num_text);
871 "tRNS chunk has out-of-range samples for bit_depth");
934 "Out of memory while processing sPLT chunk");
943 "Out of memory while processing sPLT chunk");
980 "Out of memory while processing unknown chunk.");
1010 "Out of memory while processing unknown chunk.");
1026 int chunk, int location
    [all...]
  /external/valgrind/main/memcheck/
mc_leakcheck.c 64 // - heap-allocated blocks. A block is a mempool chunk or a malloc chunk
65 // that doesn't contain a mempool chunk. Nb: the terms "blocks" and
288 // VG_(printf)("find chunk for %p = ", ptr);
333 // mempool chunk, and every malloc region that *doesn't* contain a
334 // mempool chunk.
351 // Then we build an array containing a Bool for each malloc chunk,
357 // Then we loop over the mempool tables. For each chunk in each
359 // malloc chunk containing the mempool chunk
    [all...]
mc_malloc_wrappers.c 76 /* Put a shadow chunk on the freed blocks queue, possibly freeing up
136 /* Allocate its shadow chunk, put it on the appropriate list. */
411 // Allocate a new chunk.
464 // Allocate a new chunk.
564 // Destroy the chunk table
619 "Mempool chunk %d / %d is out of order "
630 "Mempool chunk %d / %d overlaps with its successor\n",
642 "Mempool chunk %d / %d: %ld bytes "
703 "mempool_free(0x%lx, 0x%lx) freed chunk of %ld bytes\n",
753 /* The current chunk is entirely within the trim extent: kee
    [all...]
  /prebuilt/sdk/tools/linux/
aapt 
  /frameworks/base/libs/utils/
ResourceTypes.cpp 96 static status_t validate_chunk(const ResChunk_header* chunk,
101 const uint16_t headerSize = dtohs(chunk->headerSize);
102 const uint32_t size = dtohl(chunk->size);
107 if ((ssize_t)size <= (dataEnd-((const uint8_t*)chunk))) {
112 (void*)(dataEnd-((const uint8_t*)chunk)));
1218 const ResChunk_header* chunk = local
1907 const ResChunk_header* chunk = local
4168 const ResChunk_header* chunk = local
    [all...]
  /external/apache-http/src/org/apache/commons/codec/binary/
Base64.java 39 * Chunk size per RFC 2045 section 6.8.
49 * Chunk separator per RFC 2045 section 2.1.
172 * does not chunk the output.
228 * @param isChunked if isChunked is true this encoder will chunk
299 // If we are chunking, let's put a chunk separator down.
352 // we also add a separator to the end of the final chunk.
  /sdk/ninepatch/src/com/android/ninepatch/
NinePatchChunk.java 28 * The chunk information for a nine patch.
30 * This does not represent the bitmap, only the chunk info responsible for the padding and the
34 * the nine patch chunk as a byte[], this class is converted to and from byte[] through
74 NinePatchChunk chunk = new NinePatchChunk(); local
75 chunk.findPatches(image);
76 return chunk;
  /external/bluetooth/glib/tests/
slice-test.c 1 /* GLIB sliced memory - fast threaded memory chunk allocator
75 gpointer chunk)
77 old_mem_chunk_free (memchunk, chunk);
  /external/chromium/chrome/browser/safe_browsing/
safe_browsing_store_file.h 91 // - Open a temp file for storing new chunk info.
218 // Clear temporary buffers used to accumulate chunk data.
222 // pre-reserved space is probably reasonable between each chunk
  /external/icu4c/test/perf/utfperf/
utfperf.cpp 55 UOPTION_DEF("chunk", '\x01', UOPT_REQUIRES_ARG),
62 "\t--chunk Length (in bytes) of charset output chunks. [4096]\n"
76 fprintf(stderr, "error: chunk length must be 1..%ld\n", (long)OUTPUT_CAPACITY);
  /external/qemu/android/protocol/
fb-updates-impl.c 50 /* Offset in the reader's buffer where to read next chunk of data. */
115 // Read next chunk of data.
128 // Chunk is not avalable at this point. Come back later.
ui-commands-impl.c 61 /* Offset in the reader's buffer where to read next chunk of data. */
126 // Read next chunk of data.
141 // Chunk is not avalable at this point. Come back later.
  /external/qemu/distrib/libpng-1.2.19/
pngset.c 242 png_warning(png_ptr, "Insufficient memory for hIST chunk data.");
690 png_warning(png_ptr, "Insufficient memory to process iCCP chunk.");
811 png_warning(png_ptr, "iTXt chunk not supported.");
883 png_debug1(3, "transferred text chunk %d\n", info_ptr->num_text);
980 "Out of memory while processing sPLT chunk");
992 "Out of memory while processing sPLT chunk");
1026 "Out of memory while processing unknown chunk.");
    [all...]
  /frameworks/base/opengl/libs/GLES2_dbg/test/
test_main.cpp 116 ASSERT_LT(12, out.length()); // at least written chunk header
125 i += outSize; // chunk not compressed
127 i += inSize; // skip the actual compressed chunk
  /packages/apps/Browser/src/com/android/browser/
BrowserBackupAgent.java 189 final int CHUNK = 8192;
190 byte[] buf = new byte[CHUNK];
196 int numRead = data.readEntityData(buf, 0, CHUNK);
  /dalvik/vm/
RawDexFile.h 43 * Open a raw ".dex" file based on the given chunk of memory, and load
  /dalvik/vm/alloc/
Heap.h 79 * chunk which contains the object.
  /external/bluetooth/glib/docs/reference/glib/tmpl/
trash_stack.sgml 10 memory chunks. Each memory chunk is required to be large enough to hold
  /external/bluetooth/glib/glib/
gslice.h 1 /* GLIB sliced memory - fast threaded memory chunk allocator
  /external/chromium/chrome/browser/bookmarks/
recently_used_folders_combo_model.cc 38 // Make sure we only have kMaxMRUFolders in the first chunk.
  /external/chromium/chrome/browser/download/
base_file.h 38 // Write a new chunk of data to the file. Returns true on success (all bytes
save_item.h 36 // Received a new chunk of data.

Completed in 1050 milliseconds

<<11121314151617181920>>