HomeSort by relevance Sort by last modified time
    Searched refs:chunk (Results 226 - 250 of 476) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /frameworks/av/media/libstagefright/
MPEG4Writer.cpp 860 // Fix up the size of the 'mdat' chunk.
1578 Chunk chunk; local
1642 Chunk chunk; local
    [all...]
  /external/chromium_org/v8/tools/
logreader.js 73 * @param {string} chunk A portion of log.
75 LogReader.prototype.processLogChunk = function(chunk) {
76 this.processLog_(chunk.split('\n'));
  /external/libpng/
CHANGES 133 current chunk name is now available in png_struct to reduce the number
136 try to get ready for unknown-chunk callback functions:
137 - previously read critical chunks are flagged, so the chunk handling
138 routines can determine if the chunk is in the right place
139 - all chunk handling routines have the same prototypes, so we will
159 added new pCAL chunk read/write support
172 more chunk types tested in pngtest.c
173 renamed pngrcb.c to pngset.c, and all png_read_<chunk> functions to be
174 png_set_<chunk>. We now have corresponding png_get_<chunk>
    [all...]
  /external/v8/tools/
logreader.js 73 * @param {string} chunk A portion of log.
75 LogReader.prototype.processLogChunk = function(chunk) {
76 this.processLog_(chunk.split('\n'));
  /external/chromium_org/v8/test/mjsunit/
unicode-test.js     [all...]
  /external/v8/test/mjsunit/
unicode-test.js     [all...]
  /external/chromium_org/chrome/test/automation/
automation_proxy.cc 419 std::string chunk;
431 if (!Send(new AutomationMsg_GetTracingOutput(&chunk, &success)) ||
434 buffer.AddFragment(chunk);
  /external/chromium_org/media/audio/win/
audio_low_latency_input_win_unittest.cc 71 const uint8* chunk; local
75 if (!buffer_.GetCurrentChunk(&chunk, &chunk_size))
78 // Write recorded data chunk to the file and prepare for next chunk.
79 fwrite(chunk, 1, chunk_size, binary_file_);
  /external/chromium_org/third_party/WebKit/PerformanceTests/resources/
runner.js 305 // Smaller chunk sizes will show more samples in style resolution.
306 // Larger chunk sizes will show more samples in line layout.
307 // Smaller chunk sizes run slower overall, as the per-chunk overhead is high.
310 var chunk = file.substr(chunkIndex * this.chunkSize, this.chunkSize);
311 chunks.push(chunk);
  /external/chromium_org/third_party/protobuf/java/src/main/java/com/google/protobuf/
ByteString.java 272 * first chunk is small, with subsequent chunks each being double
303 * for the last chunk, which will be resized (via a reallocation and
320 // Helper method that takes the chunk size range as a parameter.
325 // copy the inbound bytes into a list of chunks; the chunk size
329 ByteString chunk = readChunk(streamToDrain, chunkSize); local
330 if (chunk == null) {
333 results.add(chunk);
341 * Blocks until a chunk of the given size can be made from the
346 * @return A chunk of the desired size, or else a chunk as large a
    [all...]
  /external/jdiff/src/jdiff/
APIHandler.java 197 String chunk = new String(ch, start, length); local
199 currentText = chunk;
201 currentText += chunk;
  /frameworks/base/tools/velocityplot/
velocityplot.py 61 chunk = os.read(self.stream.fileno(), 4096)
66 if len(chunk) == 0:
74 self.buffer += chunk
  /external/chromium_org/net/websockets/
websocket_channel.h 64 // be a chunk of a valid UTF-8 message, however there is no requirement for
164 // Processes a single chunk that has been read from the stream.
165 void ProcessFrameChunk(scoped_ptr<WebSocketFrameChunk> chunk);
  /external/chromium_org/third_party/mesa/src/src/gallium/drivers/r600/
r600_resource.h 43 struct compute_memory_item *chunk; member in struct:r600_resource_global
  /external/chromium_org/v8/src/
lithium-allocator-inl.h 157 range->set_assigned_register(reg, register_kind, chunk()->zone());
  /external/mesa3d/src/gallium/drivers/r600/
r600_resource.h 43 struct compute_memory_item *chunk; member in struct:r600_resource_global
  /external/tinyxml2/
tinyxml2.h 268 block->chunk[i].next = &block->chunk[i+1];
270 block->chunk[COUNT-1].next = 0;
271 root = block->chunk;
284 Chunk* chunk = (Chunk*)mem; local
285 memset( chunk, 0xfe, sizeof(Chunk) );
286 chunk->next = root;
301 Chunk chunk[COUNT]; member in struct:tinyxml2::MemPoolT::Block
    [all...]
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/email/
header.py 280 # use the byte string in the chunk.
335 chunk = [(fencoded, charset)]
336 return chunk + self._split(last, charset, self._maxlinelen, splitchars)
404 # The first bit of the next chunk should be just long enough to
507 chunk = charset.from_splittable(splittable[:m], True)
508 chunklen = charset.encoded_header_len(chunk)
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/email/
header.py 280 # use the byte string in the chunk.
335 chunk = [(fencoded, charset)]
336 return chunk + self._split(last, charset, self._maxlinelen, splitchars)
404 # The first bit of the next chunk should be just long enough to
507 chunk = charset.from_splittable(splittable[:m], True)
508 chunklen = charset.encoded_header_len(chunk)
  /frameworks/base/libs/androidfw/
ResourceTypes.cpp 95 static status_t validate_chunk(const ResChunk_header* chunk,
100 const uint16_t headerSize = dtohs(chunk->headerSize);
101 const uint32_t size = dtohl(chunk->size);
106 if ((ssize_t)size <= (dataEnd-((const uint8_t*)chunk))) {
111 (void*)(dataEnd-((const uint8_t*)chunk)));
1380 const ResChunk_header* chunk = local
2985 const ResChunk_header* chunk = local
5208 const ResChunk_header* chunk = local
    [all...]
  /external/chromium_org/third_party/simplejson/
_speedups.c 504 if (chunk != NULL) { \
511 if (PyList_Append(chunks, chunk)) { \
514 Py_CLEAR(chunk); \
536 PyObject *chunk = NULL; local
565 /* Pick up this chunk if it's not zero length */
574 chunk = PyUnicode_FromEncodedObject(strchunk, encoding, NULL);
576 if (chunk == NULL) {
581 chunk = strchunk;
689 chunk = PyUnicode_FromUnicode(&c, 1);
690 if (chunk == NULL)
745 PyObject *chunk = NULL; local
774 chunk = PyUnicode_FromUnicode(&buf[end], next - end); local
880 chunk = PyUnicode_FromUnicode(&c, 1); local
    [all...]
  /external/compiler-rt/lib/sanitizer_common/
sanitizer_allocator.h 283 typedef void (*ForEachChunkCallback)(uptr chunk, void *arg);
446 for (uptr chunk = region_beg;
447 chunk < region_beg + region->allocated_user;
448 chunk += chunk_size) {
449 // Too slow: CHECK_EQ((void *)chunk, GetBlockBegin((void *)chunk));
450 callback(chunk, arg);
495 static uptr GetChunkIdx(uptr chunk, uptr size) {
496 uptr offset = chunk % kRegionSize;
738 for (uptr chunk = region_beg
    [all...]
  /cts/tests/tests/media/src/android/media/cts/
DecodeEditEncodeTest.java 329 // Codec config flag must be set iff this is the first chunk of output. This
352 // One chunk per frame, plus one for the config data.
486 // Copy a chunk of input to the decoder. The first chunk should have
679 // Copy a chunk of input to the decoder. The first chunk should have
    [all...]
  /external/chromium/chrome/browser/safe_browsing/
safe_browsing_util.h 26 // Container for holding a chunk URL and the MAC of the contents of the URL.
47 // Container for information about a specific host in an add/sub chunk.
53 // Container for an add/sub chunk.
81 void push_back(const SBChunk& chunk) { chunks_.push_back(chunk); }
138 // [list id ][chunk id][prefix count (0..n)][prefix1][prefix2]
140 // [list id ][chunk id (only used if prefix count is 0][prefix count (0..n)]
141 // [add chunk][prefix][add chunk][prefix]
184 // For add entries, returns the add chunk id. For sub entries, returns th
    [all...]
  /external/chromium_org/chrome/browser/safe_browsing/
safe_browsing_database.h 151 // // If passed true, processes the collected chunk info and
355 void InsertAdd(int chunk, SBPrefix host, const SBEntry* entry, int list_id);
358 void InsertSub(int chunk, SBPrefix host, const SBEntry* entry, int list_id);
381 // Underlying persistent store for chunk data.

Completed in 1372 milliseconds

1 2 3 4 5 6 7 8 91011>>