/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/chromium_org/third_party/WebKit/Source/bindings/v8/ |
ScriptProfiler.h | 67 virtual void write(const uint32_t* chunk, const int size) = 0;
|
/external/compiler-rt/lib/asan/ |
asan_report.cc | 337 static void DescribeAccessToHeapChunk(AsanChunkView chunk, uptr addr, 342 if (chunk.AddrIsAtLeft(addr, access_size, &offset)) { 344 } else if (chunk.AddrIsAtRight(addr, access_size, &offset)) { 350 } else if (chunk.AddrIsInside(addr, access_size, &offset)) { 356 Printf(" %zu-byte region [%p,%p)\n", chunk.UsedSize(), 357 (void*)(chunk.Beg()), (void*)(chunk.End())); 362 AsanChunkView chunk = FindHeapChunkByAddress(addr); local 363 if (!chunk.IsValid()) return; 364 DescribeAccessToHeapChunk(chunk, addr, access_size) [all...] |
/external/freetype/src/cff/ |
cf2arrst.h | 58 size_t chunk; /* allocation increment in items */ member in struct:CF2_ArrStackRec_
|
/sdk/hierarchyviewer/src/com/android/hierarchyviewer/scene/ |
CaptureLoader.java | 111 BufferedImage chunk = ImageIO.read(arrayIn); local 114 BufferedImage image = new BufferedImage(chunk.getWidth(), chunk.getHeight(), 117 g.drawImage(chunk, null, 0, 0);
|
/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/llvm/utils/lit/lit/ |
ShUtil.py | 33 chunk = self.data[self.pos - 1:].split(None, 1)[0] 36 if ('|' in chunk or '&' in chunk or 37 '<' in chunk or '>' in chunk or 38 "'" in chunk or '"' in chunk or 39 ';' in chunk or '\\' in chunk): 42 self.pos = self.pos - 1 + len(chunk) [all...] |
/external/ceres-solver/internal/ceres/ |
schur_eliminator.h | 85 // E F chunk 94 // [ 0 0 0 0 | z1 0 0 0 0] non chunk blocks 95 // [ 0 0 0 0 | 0 0 z3 z4 z5] non chunk blocks 126 // parameter block yi are known as a chunk, and the algorithm operates 127 // on one chunk at a time. The mathematics remains the same since the 129 // linear systems for each chunk. This can be seen by observing two 134 // 2. When E'F is computed, only the terms within a single chunk 241 // Chunk objects store combinatorial information needed to 242 // efficiently eliminate a whole chunk out of the least squares 243 // problem. Consider the first chunk in the example matrix above [all...] |
/external/compiler-rt/lib/lsan/ |
lsan_common.h | 32 // Chunk tags. 145 // If p points into a chunk that has been allocated to the user, returns its 148 // Returns address of user-visible chunk contained in this allocator chunk. 149 uptr GetUserBegin(uptr chunk); 152 // Wrapper for chunk metadata operations. 155 // Constructor accepts address of user-visible chunk. 156 explicit LsanMetadata(uptr chunk);
|
/external/mockito/src/org/mockito/internal/verification/checkers/ |
MissingInvocationInOrderChecker.java | 34 List<Invocation> chunk = finder.findAllMatchingUnverifiedChunks(invocations, wanted, context); local 36 if (!chunk.isEmpty()) {
|
/external/yaffs2/yaffs2/ |
yaffs_checkptrw.c | 102 int chunk = i * dev->nChunksPerBlock; local 104 dev->readChunkWithTagsFromNAND(dev,chunk,NULL,&tags); 178 int chunk; local 196 /* First chunk we write for the block? Set block state to 203 chunk = dev->checkpointCurrentBlock * dev->nChunksPerBlock + dev->checkpointCurrentChunk; 205 dev->writeChunkWithTagsToNAND(dev,chunk,dev->checkpointBuffer,&tags); 259 int chunk; local 281 chunk = dev->checkpointCurrentBlock * dev->nChunksPerBlock + 284 /* read in the next chunk */ 286 dev->readChunkWithTagsFromNAND(dev, chunk, [all...] |
/frameworks/base/core/jni/android/graphics/pdf/ |
PdfDocument.cpp | 62 jobject out, jbyteArray chunk) { 63 SkWStream* skWStream = CreateJavaOutputStreamAdaptor(env, out, chunk);
|
/external/apache-http/src/org/apache/http/impl/io/ |
AbstractSessionInputBuffer.java | 139 int chunk = this.bufferlen - this.bufferpos; local 140 if (chunk > len) { 141 chunk = len; 143 System.arraycopy(this.buffer, this.bufferpos, b, off, chunk); 144 this.bufferpos += chunk; 145 return chunk;
|
/external/chromium_org/tools/grit/grit/ |
tclib.py | 57 for chunk in chunked_text: 58 if chunk: # ignore empty chunk 59 if tag_map.has_key(chunk): 60 self.AppendPlaceholder(tag_map[chunk][0]) 61 tag_map[chunk][1] += 1 # increase placeholder use count 63 self.AppendText(chunk)
|
/external/chromium_org/third_party/openssl/openssl/crypto/evp/ |
evp_locl.h | 113 size_t chunk=EVP_MAXCHUNK;\ 114 if (cbits==1) chunk>>=3;\ 115 if (inl<chunk) chunk=inl;\ 116 while(inl && inl>=chunk)\ 119 inl-=chunk;\ 120 in +=chunk;\ 121 out+=chunk;\ 122 if(inl<chunk) chunk=inl; [all...] |
/external/chromium_org/third_party/protobuf/java/src/main/java/com/google/protobuf/ |
CodedInputStream.java | 829 // by allocating and reading only a small chunk at a time, so that the 848 final byte[] chunk = new byte[Math.min(sizeLeft, BUFFER_SIZE)]; 850 while (pos < chunk.length) { 852 input.read(chunk, pos, chunk.length - pos); 859 sizeLeft -= chunk.length; 860 chunks.add(chunk); 871 for (final byte[] chunk : chunks) { 872 System.arraycopy(chunk, 0, bytes, pos, chunk.length) [all...] |
/external/openssl/crypto/evp/ |
evp_locl.h | 113 size_t chunk=EVP_MAXCHUNK;\ 114 if (cbits==1) chunk>>=3;\ 115 if (inl<chunk) chunk=inl;\ 116 while(inl && inl>=chunk)\ 119 inl-=chunk;\ 120 in +=chunk;\ 121 out+=chunk;\ 122 if(inl<chunk) chunk=inl; [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/protobuf/java/src/main/java/com/google/protobuf/micro/ |
CodedInputStreamMicro.java | 710 // by allocating and reading only a small chunk at a time, so that the 731 final byte[] chunk = new byte[Math.min(sizeLeft, BUFFER_SIZE)]; 733 while (pos < chunk.length) { 735 input.read(chunk, pos, chunk.length - pos); 742 sizeLeft -= chunk.length; 743 chunks.addElement(chunk); 755 byte [] chunk = (byte [])chunks.elementAt(i); 756 System.arraycopy(chunk, 0, bytes, pos, chunk.length) [all...] |
/prebuilts/python/darwin-x86/2.7.5/lib/python2.7/json/ |
encoder.py | 218 for chunk in JSONEncoder().iterencode(bigobject): 219 mysocket.write(chunk) 332 for chunk in chunks: 333 yield chunk 408 for chunk in chunks: 409 yield chunk 431 for chunk in _iterencode_list(o, _current_indent_level): 432 yield chunk 434 for chunk in _iterencode_dict(o, _current_indent_level): 435 yield chunk [all...] |
/prebuilts/python/linux-x86/2.7.5/lib/python2.7/json/ |
encoder.py | 218 for chunk in JSONEncoder().iterencode(bigobject): 219 mysocket.write(chunk) 332 for chunk in chunks: 333 yield chunk 408 for chunk in chunks: 409 yield chunk 431 for chunk in _iterencode_list(o, _current_indent_level): 432 yield chunk 434 for chunk in _iterencode_dict(o, _current_indent_level): 435 yield chunk [all...] |
/external/v8/src/ |
spaces.cc | 223 // Don't leave a small free block, useless for a large object or chunk. 399 MemoryChunk* chunk = MemoryChunk::Initialize(heap, local 406 chunk->set_next_chunk(NULL); 407 chunk->set_prev_chunk(NULL); 408 chunk->initialize_scan_on_scavenge(true); 410 chunk->SetFlag(in_to_space ? MemoryChunk::IN_TO_SPACE 412 ASSERT(!chunk->IsFlagSet(in_to_space ? MemoryChunk::IN_FROM_SPACE 414 NewSpacePage* page = static_cast<NewSpacePage*>(chunk); 437 MemoryChunk* chunk = FromAddress(base); local 439 ASSERT(base == chunk->address()) 577 MemoryChunk* chunk = AllocateChunk(owner->AreaSize(), local 590 MemoryChunk* chunk = AllocateChunk(object_size, executable, owner); local 766 MemoryChunk* chunk = MemoryChunk::FromAddress(address); local 2711 MemoryChunk* chunk = MemoryChunk::FromAddress(address); local [all...] |
/external/chromium_org/third_party/WebKit/Tools/Scripts/webkitpy/thirdparty/coverage/htmlfiles/ |
coverage_html.js | 183 // Find the start of the next colored chunk. 197 // There's a next chunk, `probe` points to it. 200 // Find the end of this chunk. 214 // Find the end of the prev colored chunk. 230 // There's a prev chunk, `probe` points to its last line. 233 // Find the beginning of this chunk. 302 // Select line number lineno, or if it is in a colored chunk, select the 303 // entire chunk 312 // The line is in a highlighted chunk. 345 // Highlight the lines in the chunk [all...] |
/sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/draw9patch/graphics/ |
NinePatchedImage.java | 81 private final List<Chunk> mChunkBin = new ArrayList<Chunk>(CHUNK_BIN_SIZE); 89 private Chunk[][] mPatchChunks = null; 143 private Chunk getChunk() { 145 Chunk chunk = mChunkBin.remove(0); local 146 chunk.init(); 147 return chunk; 149 return new Chunk(); 152 private static final void recycleChunks(Chunk[][] patchChunks, List<Chunk> bin) 647 Chunk chunk = chunks[y][x]; local 765 Chunk chunk = mPatchChunks[yPos][xPos]; local 804 public Chunk chunk = null; field in class:NinePatchedImage.Projection [all...] |
/external/chromium_org/third_party/WebKit/Source/core/inspector/ |
InspectorHeapProfilerAgent.cpp | 154 virtual void write(const uint32_t* chunk, const int size) OVERRIDE 156 ASSERT(chunk); variable 158 m_heapProfilerAgent->pushHeapStatsUpdate(chunk, size); 217 void Write(const String& chunk) { m_frontend->addHeapSnapshotChunk(m_uid, chunk); }
|