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

1 2 3 4 5 6 7 8 91011>>

  /bionic/libc/arch-mips/string/
memset.S 187 # There will be at most 1 32-byte chunk then
196 # For "a2" below 160 there will be no such "pref 30 safe" 64-byte chunk.
201 # below we have at least 1 64-byte chunk which is "pref 30 safe"
271 andi t7,t8,0x1f # is there a 32-byte chunk?
273 beq t8,t7,.Lchk1w # when t8==t7, no 32-byte chunk
  /bionic/libc/arch-mips64/string/
memset.S 187 # There will be at most 1 32-byte chunk then
196 # For "a2" below 160 there will be no such "pref 30 safe" 64-byte chunk.
201 # below we have at least 1 64-byte chunk which is "pref 30 safe"
271 andi t7,t8,0x1f # is there a 32-byte chunk?
273 beq t8,t7,.Lchk1w # when t8==t7, no 32-byte chunk
  /device/generic/goldfish/camera/fake-pipeline2/
JpegCompressor.cpp 179 JSAMPROW chunk[kChunkSize]; local
181 chunk[i] = (JSAMPROW)
184 jpeg_write_scanlines(&mCInfo, chunk, kChunkSize);
  /external/chromium_org/base/debug/
crash_logging.cc 25 // The maximum length of a single chunk.
186 std::string chunk = value_string.substr(offset, chunk_max_length); local
187 chunks.push_back(chunk);
188 offset += chunk.length();
trace_event_impl.cc 145 TraceBufferChunk* chunk = chunks_[*index]; variable
146 chunks_[*index] = NULL; // Put NULL in the slot of a in-flight chunk.
147 if (chunk)
148 chunk->Reset(current_chunk_seq_++);
150 chunk = new TraceBufferChunk(current_chunk_seq_++);
152 return scoped_ptr<TraceBufferChunk>(chunk);
156 scoped_ptr<TraceBufferChunk> chunk) OVERRIDE {
160 DCHECK(chunk); variable
163 chunks_[index] = chunk.release();
184 TraceBufferChunk* chunk = chunks_[handle.chunk_index]
212 TraceBufferChunk* chunk = chunks_[chunk_index]; variable
345 const TraceBufferChunk* chunk = chunks_[current_iteration_index_++]; variable
    [all...]
  /external/chromium_org/chrome/browser/safe_browsing/
protocol_parser.cc 287 // Must be either an 'ad' (add-del) or 'sd' (sub-del) chunk. We must
352 scoped_ptr<SBChunkData> chunk(new SBChunkData());
353 if (!chunk->ParseFrom(reinterpret_cast<const unsigned char*>(p), l))
356 chunks->push_back(chunk.release());
  /external/chromium_org/media/audio/mac/
audio_low_latency_input_mac_unittest.cc 62 const uint8* chunk; local
66 if (!buffer_.GetCurrentChunk(&chunk, &chunk_size))
69 // Write recorded data chunk to the file and prepare for next chunk.
70 fwrite(chunk, 1, chunk_size, file_);
  /external/chromium_org/third_party/WebKit/PerformanceTests/resources/
runner.js 301 // Smaller chunk sizes will show more samples in style resolution.
302 // Larger chunk sizes will show more samples in line layout.
303 // Smaller chunk sizes run slower overall, as the per-chunk overhead is high.
306 var chunk = file.substr(chunkIndex * this.chunkSize, this.chunkSize);
307 chunks.push(chunk);
  /frameworks/base/services/core/java/com/android/server/updates/
SELinuxPolicyInstallReceiver.java 106 byte[] chunk = new byte[length];
107 stream.read(chunk, 0, length);
108 writeUpdate(updateDir, destination, Base64.decode(chunk, Base64.DEFAULT));
  /external/valgrind/main/VEX/priv/
host_generic_simd64.c 1522 ULong result, chunk; local
1537 ULong result, chunk; local
    [all...]
  /external/chromium_org/chrome/browser/chromeos/drive/
drive_file_stream_reader.cc 70 const std::string& chunk = *(*pending_data)[index]; local
71 DCHECK(!chunk.empty());
74 chunk.size(), static_cast<size_t>(buffer_length - offset));
75 std::memmove(buffer->data() + offset, chunk.data(), bytes_to_read);
77 if (bytes_to_read < chunk.size()) {
78 // The chunk still has some remaining data.
  /external/chromium_org/third_party/skia/src/xml/
SkDOM.cpp 192 static char* dupstr(SkChunkAlloc* chunk, const char src[])
194 SkASSERT(chunk && src);
196 char* dst = (char*)chunk->alloc(len + 1, SkChunkAlloc::kThrow_AllocFailType);
204 SkDOMParser(SkChunkAlloc* chunk) : SkXMLParser(&fParserError), fAlloc(chunk)
  /external/chromium_org/third_party/skia/third_party/lua/src/
lua.c 176 lua_insert(L, base); /* put it under chunk and args */
401 const char *chunk = argv[i] + 2; local
402 if (*chunk == '\0') chunk = argv[++i];
403 lua_assert(chunk != NULL);
404 if (dostring(L, chunk, "=(command line)") != LUA_OK)
  /external/skia/src/xml/
SkDOM.cpp 192 static char* dupstr(SkChunkAlloc* chunk, const char src[])
194 SkASSERT(chunk && src);
196 char* dst = (char*)chunk->alloc(len + 1, SkChunkAlloc::kThrow_AllocFailType);
204 SkDOMParser(SkChunkAlloc* chunk) : SkXMLParser(&fParserError), fAlloc(chunk)
  /external/chromium_org/media/base/android/
media_codec_bridge_unittest.cc 266 // Simulate a seek to 10 seconds, and each chunk has 2 I-frames.
267 std::vector<uint8> chunk(buffer->data(),
269 chunk.insert(chunk.end(), buffer->data(),
273 &chunk[0],
274 chunk.size(),
281 &chunk[0],
282 chunk.size(),
  /external/jemalloc/include/jemalloc/internal/
jemalloc_internal.h 319 #include "jemalloc/internal/chunk.h"
346 #include "jemalloc/internal/chunk.h"
418 #include "jemalloc/internal/chunk.h"
443 #include "jemalloc/internal/chunk.h"
555 * If the run wouldn't fit within a chunk, round up to a huge
717 arena_chunk_t *chunk; local
723 chunk = (arena_chunk_t *)CHUNK_ADDR2BASE(ptr);
724 if (chunk != ptr)
736 /* Return 0 if ptr is not within a chunk managed by jemalloc. */
768 arena_chunk_t *chunk; local
    [all...]
  /frameworks/base/libs/hwui/
RenderNode.cpp 112 // TODO: consider printing the chunk boundaries here
617 void RenderNode::buildZSortedChildList(const DisplayListData::Chunk& chunk,
619 if (chunk.beginChildIndex == chunk.endChildIndex) return;
621 for (unsigned int i = chunk.beginChildIndex; i < chunk.endChildIndex; i++) {
626 if (!MathUtils::isZero(childZ) && chunk.reorderChildren) {
691 // 3d children of the current chunk from transformations made in previous chunks.
879 const DisplayListData::Chunk& chunk = mDisplayListData->getChunks()[chunkIndex]; local
    [all...]
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/logging/
config.py 837 chunk = conn.recv(4)
838 if len(chunk) == 4:
839 slen = struct.unpack(">L", chunk)[0]
840 chunk = self.connection.recv(slen)
841 while len(chunk) < slen:
842 chunk = chunk + conn.recv(slen - len(chunk))
845 d =json.loads(chunk
    [all...]
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/logging/
config.py 837 chunk = conn.recv(4)
838 if len(chunk) == 4:
839 slen = struct.unpack(">L", chunk)[0]
840 chunk = self.connection.recv(slen)
841 while len(chunk) < slen:
842 chunk = chunk + conn.recv(slen - len(chunk))
845 d =json.loads(chunk
    [all...]
  /frameworks/av/media/libstagefright/
MPEG4Writer.cpp 869 // Fix up the size of the 'mdat' chunk.
1590 Chunk chunk; local
1654 Chunk chunk; local
    [all...]
  /external/zopfli/src/zopflipng/lodepng/
lodepng.cpp 2457 unsigned char *chunk, *new_buffer; local
4567 const unsigned char* 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'));
  /frameworks/base/graphics/java/android/graphics/drawable/
NinePatchDrawable.java 92 public NinePatchDrawable(Bitmap bitmap, byte[] chunk, Rect padding, String srcName) {
93 this(new NinePatchState(new NinePatch(bitmap, chunk, srcName), padding), null, null);
100 public NinePatchDrawable(Resources res, Bitmap bitmap, byte[] chunk,
102 this(new NinePatchState(new NinePatch(bitmap, chunk, srcName), padding), res, null);
112 public NinePatchDrawable(Resources res, Bitmap bitmap, byte[] chunk,
114 this(new NinePatchState(new NinePatch(bitmap, chunk, srcName), padding, opticalInsets),
  /external/chromium_org/v8/test/mjsunit/
unicode-test.js     [all...]
  /external/chromium_org/third_party/protobuf/java/src/main/java/com/google/protobuf/
ByteString.java 271 * first chunk is small, with subsequent chunks each being double
302 * for the last chunk, which will be resized (via a reallocation and
319 // Helper method that takes the chunk size range as a parameter.
324 // copy the inbound bytes into a list of chunks; the chunk size
328 ByteString chunk = readChunk(streamToDrain, chunkSize); local
329 if (chunk == null) {
332 results.add(chunk);
340 * Blocks until a chunk of the given size can be made from the
345 * @return A chunk of the desired size, or else a chunk as large a
    [all...]

Completed in 1799 milliseconds

1 2 3 4 5 6 7 8 91011>>