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

<<11121314151617181920>>

  /libcore/luni/src/main/java/org/xml/sax/
DocumentHandler.java 157 * <p>The Parser will call this method to report each chunk of
159 * data in a single chunk, or they may split it into several
186 * <p>Validating Parsers must use this method to report each chunk
192 * chunk, or they may split it into several chunks; however, all of
  /prebuilt/linux-x86/toolchain/i686-linux-glibc2.7-4.4.3/sysroot/usr/include/linux/raid/
md_u.h 84 int chunk_size; /* 1 chunk size in bytes */
  /sdk/ddms/libs/ddmlib/src/com/android/ddmlib/
HeapSegment.java 243 * of an HPSG chunk.
245 * @param hpsgData The raw data from an HPSG chunk.
247 * to hold the HPSG chunk header data.
250 /* Read the HPSG chunk header.
ThreadInfo.java 50 * Set with the values we get from a THST chunk.
HandleHello.java 23 * Handle the "hello" chunk (HELO) and feature discovery.
71 * Chunk handler entry point.
  /system/extras/tests/sdcard/
profile_sdcard.sh 40 adb shell sdcard_perf_test --test=write --procnb=${p} --size=1000 --chunk-size=100 --iterations=50 >/tmp/tmp-sdcard.txt
  /external/icu4c/common/unicode/
utext.h     [all...]
  /external/v8/test/mjsunit/
unicode-test.js     [all...]
  /external/protobuf/java/src/main/java/com/google/protobuf/
CodedInputStream.java 774 // by allocating and reading only a small chunk at a time, so that the
793 final byte[] chunk = new byte[Math.min(sizeLeft, BUFFER_SIZE)];
795 while (pos < chunk.length) {
797 input.read(chunk, pos, chunk.length - pos);
804 sizeLeft -= chunk.length;
805 chunks.add(chunk);
816 for (final byte[] chunk : chunks) {
817 System.arraycopy(chunk, 0, bytes, pos, chunk.length)
    [all...]
  /external/chromium/net/base/
upload_data_stream.h 63 // Returns whether the data available in buf() includes the last chunk in a
64 // chunked data stream. This method returns true once the final chunk has been
  /external/icu4c/i18n/
nortrans.cpp 111 * In incremental mode, a chunk that ends with offsets.limit
158 // replace the input chunk with its normalized form
  /external/qemu/hw/
hw.h 14 /* This function writes a chunk of data to a file at the given position.
21 /* Read a chunk of data from a file at the given position. The pos argument
  /external/skia/src/ports/
SkXMLPullParser_expat.cpp 25 static inline char* dupstr(SkChunkAlloc& chunk, const char src[], size_t len)
28 char* dst = (char*)chunk.alloc(len + 1, SkChunkAlloc::kThrow_AllocFailType);
  /external/valgrind/main/docs/lib/
vg-html-common.xsl 5 <xsl:import href="http://docbook.sourceforge.net/release/xsl/current/html/chunk-common.xsl"/>
7 <xsl:import href="http://docbook.sourceforge.net/release/xsl/current/html/chunk-code.xsl"/>
10 <!-- Note [Dec.1 2005]: the tempate 'chunk-code.xsl' in -->
26 <xsl:param name="chunk.section.depth" select="'0'"/>
120 or ($chunk.tocs.and.lots != 0 and $nav.context != 'toc')
190 <xsl:if test="$chunk.tocs.and.lots != 0 and $nav.context != 'toc'">
196 <xsl:if test="$chunk.tocs.and.lots != 0 and $nav.context != 'toc'">
199 <xsl:apply-templates select="/*[1]" mode="recursive-chunk-filename"/>
  /external/valgrind/main/drd/
drd_bitmap2_node.c 66 * Allocate a new chunk and insert it at the start of the doubly-linked list
100 /** Free a chunk and remove it from the list of chunks. */
  /external/webkit/Source/WebCore/inspector/front-end/
HeapSnapshotProxy.js 148 pushJSONChunk: function(chunk)
152 this._json += chunk;
  /external/webkit/Tools/DumpRenderTree/
PixelDumpSupport.cpp 98 dataToCrc.append(textCommentPrefix + 4, prefixLength - 4); // Don't include the chunk length in the crc.
108 const int pngIHDRChunkLength = 25; // chunk length + "IHDR" + 13 bytes of data + checksum
  /external/yaffs2/yaffs2/direct/
yaffscfg2k.c 123 // 2kpage/64chunk per block/128MB device
149 // 2kpage/64chunk per block/128MB device
  /external/yaffs2/yaffs2/
yaffs_packedtags2.c 49 (TSTR("packed tags obj %d chunk %d byte %d seq %d" TENDSTR),
58 ("ext.tags eccres %d blkbad %d chused %d obj %d chunk%d byte "
  /external/zlib/examples/
gzappend.c 87 #define CHUNK (1U << LGCHUNK)
270 gz.buf = malloc(CHUNK);
402 in = fd == -1 ? NULL : malloc(CHUNK);
403 out = malloc(CHUNK);
409 len = fd == -1 ? 0 : read(fd, in, CHUNK);
422 strm->avail_out = CHUNK;
425 left = CHUNK - strm->avail_out;
427 len = write(gd, out + CHUNK - strm->avail_out - left, left);
  /frameworks/base/core/java/android/app/backup/
BackupDataOutput.java 95 * Write a chunk of data under the current entity to the backup transport.
97 * @param size The number of bytes to be sent in this chunk
  /frameworks/base/core/java/android/speech/tts/
EventLogger.java 63 * Notifies the logger that a chunk of data has been received from
87 // For now, keep track of only the first chunk of audio
FileSynthesisCallback.java 215 header.putInt(dataLength + WAV_HEADER_LENGTH - 8); // RIFF chunk size
218 header.putInt(16); // size of fmt chunk
  /libcore/luni/src/main/java/java/util/jar/
InitManifest.java 55 Map<String, Manifest.Chunk> chunks) throws IOException {
83 chunks.put(entryNameValue, new Manifest.Chunk(mark, pos));
  /prebuilt/linux-x86/toolchain/i686-linux-glibc2.7-4.4.3/i686-linux/include/c++/4.4.3/parallel/
list_partition.h 44 * @param range_length Current length of a chunk.
67 * @param range_length Current length of a chunk. */

Completed in 1054 milliseconds

<<11121314151617181920>>