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

12 3 4 5 6 7 8 91011>>

  /frameworks/base/include/media/stagefright/
MPEG4Writer.h 104 struct Chunk {
110 Chunk(): mTrack(NULL), mTimeStampUs(0) {}
112 Chunk(Track *track, int64_t timeUs, List<MediaBuffer *> samples)
119 List<Chunk> mChunks; // Remaining chunks to be written
121 // Previous chunk timestamp that has been written
132 List<ChunkInfo> mChunkInfos; // Chunk infos
141 // Buffer a single chunk to be written out later.
142 void bufferChunk(const Chunk& chunk);
147 // Retrieve the proper chunk to write if there is on
    [all...]
  /libcore/dalvik/src/main/java/org/apache/harmony/dalvik/ddmc/
DdmServer.java 48 * chunk type.
90 * Send a chunk of data to the DDM server. This takes the form of a
95 public static void sendChunk(Chunk chunk) {
96 nativeSendChunk(chunk.type, chunk.data, chunk.offset, chunk.length);
99 /* send a chunk to the DDM server */
129 * This is called by the VM when a chunk arrives
170 Chunk chunk = new Chunk(type, data, offset, length); local
    [all...]
  /sdk/eclipse/plugins/com.android.ide.eclipse.gldebugger/src/com/android/ide/eclipse/gldebugger/
MessageProcessor.java 35 * data layout: uint32 total decompressed length, (chunks: uint32 chunk
36 * decompressed size, uint32 chunk compressed size, chunk data)+. 0 chunk
37 * compressed size means chunk is not compressed
69 byte[] chunk = new byte[256 * 1024]; // chunk size is arbitrary
70 final ByteBuffer out = ByteBuffer.allocate(4 + (inSize + chunk.length - 1)
71 / chunk.length * (chunk.length + 4 * 2))
    [all...]
  /device/samsung/crespo/sec_mm/sec_omx/sec_osal/
SEC_OSAL_ETC.c 39 size_t const chunk = 512; local
41 size_t defaultBufferSize = chunk + 1;
70 i = fread(pCurrentPointer, 1, chunk, pStream);
71 if (i < chunk && ferror(pStream)) {
105 i = ((readByte + (chunk * 2)) / chunk) * chunk;
  /external/oprofile/doc/xsl/
xhtml-chunk.xsl 4 <xsl:import href="http://docbook.sourceforge.net/release/xsl/current/xhtml/chunk.xsl"/>
7 <xsl:template name="process-chunk">
12 <xsl:call-template name="chunk"/>
17 <xsl:apply-templates mode="chunk-filename" select="."/>
25 <xsl:text> is not a chunk!</xsl:text>
38 <xsl:call-template name="write.chunk.with.doctype">
44 <xsl:call-template name="chunk-element-content">
catalog-1.xml.in 11 <uri name="http://docbook.sourceforge.net/release/xsl/current/xhtml/chunk.xsl"
12 uri="@DOCBOOK_ROOT@/xhtml/chunk.xsl"/>
  /external/chromium/chrome/browser/safe_browsing/
chunk_range.cc 60 for (int chunk = range.start(); chunk <= range.stop(); ++chunk) {
61 chunks->push_back(chunk);
70 // Crack the string into chunk parts, then crack each part looking for a
83 // atoi error, since chunk numbers are guaranteed to never be 0.
104 const ChunkRange& chunk = ranges[mid]; local
105 if ((chunk.stop() >= chunk_number) && (chunk.start() <= chunk_number))
109 if (chunk.stop() < chunk_number
    [all...]
chunk_range.h 10 // this representation, and individual integer chunk numbers. The ChunkRange
12 // chunk numbers.
22 // Each ChunkRange represents a continuous range of chunk numbers [start, stop].
45 // Convert a set of ranges into individual chunk numbers.
59 // Tests if a chunk number is contained a sorted vector of ChunkRanges.
  /bootable/recovery/applypatch/
imgdiff.c 41 * An "imgdiff" patch consists of a header describing the chunk structure
43 * chunks, followed by N bsdiff patches, one per chunk.
46 * same "chunk" structure: that is, the same number of gzipped and normal
59 * occur spuriously within a normal chunk to be a problem.)
65 * chunk count (4)
66 * for each chunk:
67 * chunk type (4) [CHUNK_{NORMAL, GZIP, DEFLATE, RAW}]
68 * if chunk type == CHUNK_NORMAL:
72 * if chunk type == CHUNK_GZIP: (version 1 only)
86 * if chunk type == CHUNK_DEFLATE: (version 2 only
    [all...]
  /external/bluetooth/glib/docs/reference/glib/tmpl/
string_chunks.sgml 67 @chunk:
77 @chunk:
87 @chunk:
98 @chunk:
106 @chunk:
  /frameworks/base/tools/layoutlib/bridge/src/android/graphics/
NinePatch_Delegate.java 54 * in the cache, using a {@link SoftReference} for the chunk. The default Java classes
66 * Serializes the given chunk.
68 * @return the serialized data for the chunk.
70 public static byte[] serialize(NinePatchChunk chunk) {
71 // serialize the chunk to get a byte[]
76 oos.writeObject(chunk);
91 sChunkCache.put(array, new SoftReference<NinePatchChunk>(chunk));
98 * If the chunk is present in the cache then the object from the cache is returned, otherwise
101 * @param array the serialized representation of the chunk.
106 NinePatchChunk chunk = chunkRef.get() local
    [all...]
  /external/bluetooth/glib/gio/
gmemoryinputstream.c 45 typedef struct _Chunk Chunk;
147 Chunk *chunk = data; local
149 if (chunk->destroy)
150 chunk->destroy (chunk->data);
152 g_slice_free (Chunk, chunk);
246 Chunk *chunk; local
275 Chunk *chunk; local
    [all...]
  /external/qemu/elff/
elf_alloc.h 29 /* Chunk size. Even on relatively small ELF files, there are a lot of DWARF
32 * choosing 32K as chunk size pretty reasonable.
36 /* Describes a chunk of memory, allocated by ElfAllocator.
43 /* Previous chunk in the chain of chunks allocated by ElfAllocator instance.
45 * allocated chunks in reverse order (relatively to the chunk allocation
46 * sequence). So this field in each chunk references the chunk, allocated
48 * chunk.
52 /* Address of the next available block in this chunk. */
55 /* Chunk size. */
    [all...]
  /frameworks/base/core/jni/android/graphics/
NinePatch.cpp 31 const SkBitmap& bitmap, const android::Res_png_9patch& chunk,
48 const Res_png_9patch* chunk = local
50 int8_t wasDeserialized = chunk->wasDeserialized;
61 jniThrowRuntimeException(env, "Array too small for chunk.");
77 // need to deserialize the chunk
78 Res_png_9patch* chunk = static_cast<Res_png_9patch*>(storage); local
79 assert(chunkSize == chunk->serializedSize());
81 Res_png_9patch::deserialize(chunk);
88 NinePatch_Draw(canvas, bounds, *bitmap, *chunk, paint, NULL);
105 NinePatch_Draw(canvas, bounds, *bitmap, *chunk, paint, NULL)
159 Res_png_9patch* chunk = static_cast<Res_png_9patch*>(storage); local
    [all...]
NinePatchImpl.cpp 106 const SkBitmap& bitmap, const android::Res_png_9patch& chunk,
123 chunk.xDivs, chunk.numXDivs,
124 chunk.yDivs, chunk.numYDivs,
148 LOGV("======== ninepatch xDivs [%d,%d]\n", chunk.xDivs[0], chunk.xDivs[1]);
149 LOGV("======== ninepatch yDivs [%d,%d]\n", chunk.yDivs[0], chunk.yDivs[1]);
174 const int32_t x0 = chunk.xDivs[0]
    [all...]
  /ndk/sources/host-tools/ndk-stack/elff/
elf_alloc.h 29 /* Chunk size. Even on relatively small ELF files, there are a lot of DWARF
32 * choosing 32K as chunk size pretty reasonable.
36 /* Describes a chunk of memory, allocated by ElfAllocator.
43 /* Previous chunk in the chain of chunks allocated by ElfAllocator instance.
45 * allocated chunks in reverse order (relatively to the chunk allocation
46 * sequence). So this field in each chunk references the chunk, allocated
48 * chunk.
52 /* Address of the next available block in this chunk. */
55 /* Chunk size. *
    [all...]
  /external/qemu/distrib/sdl-1.2.12/src/audio/
SDL_wave.c 30 static int ReadChunk(SDL_RWops *src, Chunk *chunk);
400 Chunk chunk; local
411 /* FMT chunk */
438 /* Read the audio data format chunk */
439 chunk.data = NULL;
441 if ( chunk.data != NULL ) {
442 SDL_free(chunk.data);
444 lenread = ReadChunk(src, &chunk);
    [all...]
SDL_wave.h 44 /* Not saved in the chunk we read:
56 /* The general chunk found in the WAVE file */
57 typedef struct Chunk {
61 } Chunk;
  /external/apache-xml/src/main/java/org/apache/xml/utils/
FastStringBuffer.java 36 * exceeds the space available; we just allocate another chunk and
39 * recopying may arise when we extract Strings which cross chunk
48 * variation in chunk sizes), but this implementation has proven to
56 // If nonzero, forces the inial chunk size.
68 * This should be used when normalize-to-SAX is called for the first chunk of a
69 * multi-chunk output, or one following unsuppressed whitespace in a previous
70 * chunk.
76 * This should be used when normalize-to-SAX is called for the last chunk of a
77 * multi-chunk output; it may have to be or'ed with SUPPRESS_LEADING_WS.
89 /** Manifest constant: Carry trailing whitespace of one chunk as leading
419 char[] chunk; local
488 char[] chunk = m_array[m_lastChunk]; local
570 char[] chunk = m_array[m_lastChunk]; local
653 char[] chunk = m_array[m_lastChunk]; local
740 char[] chunk = m_array[m_lastChunk]; local
    [all...]
  /libcore/luni/src/main/java/libcore/net/http/
ChunkedInputStream.java 26 * An HTTP body with alternating chunk sizes and chunk bodies.
54 unexpectedEndOfInput(); // the server didn't supply the promised chunk length
61 * If we're at the end of a chunk and the next chunk size is readable,
62 * read it! Reading the last chunk causes the underlying connection to
75 // read the suffix of the previous chunk
87 throw new IOException("Expected a hex chunk size, but was " + chunkSizeString);
  /frameworks/compile/linkloader/include/
ELFSectionProgBits.h 52 MemChunk &chunk = this->chunk; local
56 AR.readBytes(chunk.getBuffer(), sh->getSize());
  /frameworks/compile/linkloader/include/impl/
ELFSectionBits.hxx 41 out() << " Start Address: " << (void *)chunk.getBuffer() << '\n';
44 chunk.print();
61 return chunk.protect(prot);
  /frameworks/media/libvideoeditor/vss/3gpwriter/src/
M4MP4W_Utils.c 153 free(mMp4FileDataPtr->audioTrackPtr->Chunk[i]);
156 if ((M4OSA_NULL != mMp4FileDataPtr->audioTrackPtr->Chunk) &&
157 (M4OSA_NULL != mMp4FileDataPtr->audioTrackPtr->Chunk[0]))
159 free(mMp4FileDataPtr->audioTrackPtr->Chunk[0]);
168 if (M4OSA_NULL != mMp4FileDataPtr->audioTrackPtr->Chunk)
170 free(mMp4FileDataPtr->audioTrackPtr->Chunk);
212 free(mMp4FileDataPtr->videoTrackPtr->Chunk[i]);
215 if ((M4OSA_NULL != mMp4FileDataPtr->videoTrackPtr->Chunk) &&
216 (M4OSA_NULL != mMp4FileDataPtr->videoTrackPtr->Chunk[0]))
218 free(mMp4FileDataPtr->videoTrackPtr->Chunk[0])
    [all...]
  /sdk/ddms/libs/ddmlib/src/com/android/ddmlib/
ChunkHandler.java 26 * Subclass this with a class that handles one or more chunk types.
55 * Handle an incoming chunk. The data, of chunk type "type", begins
70 * in sub-classes should call this if the chunk type isn't recognized.
83 Log.w("ddms", "WARNING: received unknown chunk " + name(type)
94 * This is here because multiple chunk handlers can make use of it,
148 * header and one chunk header in addition to the demands of the
149 * chunk being created.
151 * "maxChunkLen" indicates the size of the chunk contents only.
162 * chunk data
    [all...]
  /external/webkit/Source/WebCore/inspector/front-end/
TextViewer.js 368 var chunk = this.makeLineAChunk(lineNumber);
369 chunk.element.scrollIntoViewIfNeeded();
377 var chunk = this.makeLineAChunk(lineNumber);
378 chunk.addDecoration(decoration);
386 var chunk = this.chunkForLine(lineNumber);
387 chunk.removeDecoration(decoration);
398 var chunk = this._createNewChunk(i, i + this._defaultChunkSize);
399 this._textChunks.push(chunk);
400 this._container.appendChild(chunk.element);
414 console.error("No chunk for line number: " + lineNumber)
988 var chunk = WebInspector.TextEditorChunkedPanel.prototype._splitChunkOnALine.call(this, lineNumber, chunkNumber); variable
1113 var chunk; variable
    [all...]

Completed in 752 milliseconds

12 3 4 5 6 7 8 91011>>