/external/webp/src/demux/ |
demux.c | 37 size_t riff_end_; // riff chunk end location, can be > end_. 61 typedef struct Chunk { 63 struct Chunk* next_; 64 } Chunk; 77 Chunk* chunks_; // non-image chunks 133 // Return true if 'size' exceeds the end of the RIFF chunk. 179 // Secondary chunk parsing 181 static void AddChunk(WebPDemuxer* const dmux, Chunk* const chunk) { 182 Chunk** c = &dmux->chunks_ 386 Chunk* const chunk = (Chunk*)calloc(1, sizeof(*chunk)); local 936 const Chunk* const chunk = GetChunk(dmux, fourcc, chunk_num); local [all...] |
/frameworks/av/media/libstagefright/include/ |
SampleIterator.h | 67 status_t getChunkOffset(uint32_t chunk, off64_t *offset);
|
/prebuilts/python/darwin-x86/2.7.5/lib/python2.7/test/ |
test_zlib.py | 231 chunk = dco.decompress('') 232 if chunk: 233 bufs.append(chunk) 264 chunk = dco.decompress(cb, dcx) 265 self.assertFalse(len(chunk) > dcx, 266 'chunk too big (%d>%d)' % (len(chunk), dcx)) 267 bufs.append(chunk) 289 chunk = dco.decompress(cb, max_length) 290 self.assertFalse(len(chunk) > max_length [all...] |
/prebuilts/python/linux-x86/2.7.5/lib/python2.7/test/ |
test_zlib.py | 231 chunk = dco.decompress('') 232 if chunk: 233 bufs.append(chunk) 264 chunk = dco.decompress(cb, dcx) 265 self.assertFalse(len(chunk) > dcx, 266 'chunk too big (%d>%d)' % (len(chunk), dcx)) 267 bufs.append(chunk) 289 chunk = dco.decompress(cb, max_length) 290 self.assertFalse(len(chunk) > max_length [all...] |
/cts/tests/tests/graphics/src/android/graphics/drawable/cts/ |
NinePatchDrawableTest.java | 63 byte[] chunk = new byte[MIN_CHUNK_SIZE]; 64 chunk[MIN_CHUNK_SIZE - 1] = 1; 71 new NinePatchDrawable(bmp, chunk, r, name); 73 new NinePatchDrawable(new NinePatch(bmp, chunk, name)); 75 chunk = new byte[MIN_CHUNK_SIZE - 1]; 76 chunk[MIN_CHUNK_SIZE - 2] = 1; 78 new NinePatchDrawable(bmp, chunk, r, name); 79 fail("The constructor should check whether the chunk is illegal.");
|
/external/chromium_org/v8/src/arm/ |
lithium-codegen-arm.h | 48 LCodeGen(LChunk* chunk, MacroAssembler* assembler, CompilationInfo* info) 50 chunk_(static_cast<LPlatformChunk*>(chunk)), 55 instructions_(chunk->instructions()), 84 return chunk()->LookupDestination(block_id); 132 // Try to generate code for the entire chunk, but it may fail if the 133 // chunk contains constructs we cannot handle. Returns true if the 198 LPlatformChunk* chunk() const { return chunk_; } function in class:v8::internal::BASE_EMBEDDED 200 HGraph* graph() const { return chunk()->graph(); } 215 int GetStackSlotCount() const { return chunk()->spill_slot_count(); }
|
/external/chromium_org/v8/src/ia32/ |
lithium-codegen-ia32.h | 50 LCodeGen(LChunk* chunk, MacroAssembler* assembler, CompilationInfo* info) 52 chunk_(static_cast<LPlatformChunk*>(chunk)), 57 instructions_(chunk->instructions()), 88 return chunk()->LookupDestination(block_id); 140 // Try to generate code for the entire chunk, but it may fail if the 141 // chunk contains constructs we cannot handle. Returns true if the 200 LPlatformChunk* chunk() const { return chunk_; } function in class:v8::internal::BASE_EMBEDDED 202 HGraph* graph() const { return chunk()->graph(); } 213 int GetStackSlotCount() const { return chunk()->spill_slot_count(); }
|
/external/chromium_org/v8/src/mips/ |
lithium-codegen-mips.h | 47 LCodeGen(LChunk* chunk, MacroAssembler* assembler, CompilationInfo* info) 49 chunk_(static_cast<LPlatformChunk*>(chunk)), 54 instructions_(chunk->instructions()), 83 return chunk()->LookupDestination(block_id); 131 // Try to generate code for the entire chunk, but it may fail if the 132 // chunk contains constructs we cannot handle. Returns true if the 197 LPlatformChunk* chunk() const { return chunk_; } function in class:v8::internal::BASE_EMBEDDED 199 HGraph* graph() const { return chunk()->graph(); } 215 int GetStackSlotCount() const { return chunk()->spill_slot_count(); }
|
/external/chromium_org/v8/src/x64/ |
lithium-codegen-x64.h | 49 LCodeGen(LChunk* chunk, MacroAssembler* assembler, CompilationInfo* info) 51 chunk_(static_cast<LPlatformChunk*>(chunk)), 56 instructions_(chunk->instructions()), 84 return chunk()->LookupDestination(block_id); 114 // Try to generate code for the entire chunk, but it may fail if the 115 // chunk contains constructs we cannot handle. Returns true if the 166 LPlatformChunk* chunk() const { return chunk_; } function in class:v8::internal::BASE_EMBEDDED 168 HGraph* graph() const { return chunk()->graph(); } 179 int GetStackSlotCount() const { return chunk()->spill_slot_count(); }
|
/external/qemu/audio/ |
paaudio.c | 125 int chunk = audio_MIN (to_mix, hw->samples - rpos); local 128 hw->clip (pa->pcm_buf, src, chunk); 131 chunk << hw->info.shift, &error) < 0) { 136 rpos = (rpos + chunk) % hw->samples; 137 to_mix -= chunk; 220 int chunk = audio_MIN (to_grab, hw->samples - wpos); local 224 chunk << hw->info.shift, &error) < 0) { 229 hw->conv (hw->conv_buf + wpos, buf, chunk, &nominal_volume); 230 wpos = (wpos + chunk) % hw->samples; 231 to_grab -= chunk; [all...] |
/external/chromium_org/ppapi/native_client/tools/browser_tester/browsertester/ |
server.py | 189 chunk = source.read(chunk_size) 190 if len(chunk) == 0: 193 target_elapsed = (data_sent + len(chunk)) * 8 / bits_per_sec 196 outputfile.write(chunk) 197 data_sent += len(chunk)
|
/external/v8/src/ia32/ |
lithium-codegen-ia32.h | 49 LCodeGen(LChunk* chunk, MacroAssembler* assembler, CompilationInfo* info) 50 : chunk_(chunk), 55 instructions_(chunk->instructions()), 92 // Try to generate code for the entire chunk, but it may fail if the 93 // chunk contains constructs we cannot handle. Returns true if the 148 LChunk* chunk() const { return chunk_; } function in class:v8::internal::BASE_EMBEDDED 161 int GetStackSlotCount() const { return chunk()->spill_slot_count(); }
|
/external/v8/src/x64/ |
lithium-codegen-x64.h | 48 LCodeGen(LChunk* chunk, MacroAssembler* assembler, CompilationInfo* info) 49 : chunk_(chunk), 54 instructions_(chunk->instructions()), 86 // Try to generate code for the entire chunk, but it may fail if the 87 // chunk contains constructs we cannot handle. Returns true if the 139 LChunk* chunk() const { return chunk_; } function in class:v8::internal::BASE_EMBEDDED 152 int GetStackSlotCount() const { return chunk()->spill_slot_count(); }
|
/external/chromium_org/third_party/mesa/src/src/gallium/drivers/llvmpipe/ |
lp_rast.c | 180 const unsigned chunk = TILE_SIZE / 4; local 187 memset(c, clear_color[0], chunk); 188 c += chunk; 189 memset(c, clear_color[1], chunk); 190 c += chunk; 191 memset(c, clear_color[2], chunk); 192 c += chunk; 193 memset(c, clear_color[3], chunk); 194 c += chunk;
|
/external/mesa3d/src/gallium/drivers/llvmpipe/ |
lp_rast.c | 180 const unsigned chunk = TILE_SIZE / 4; local 187 memset(c, clear_color[0], chunk); 188 c += chunk; 189 memset(c, clear_color[1], chunk); 190 c += chunk; 191 memset(c, clear_color[2], chunk); 192 c += chunk; 193 memset(c, clear_color[3], chunk); 194 c += chunk;
|
/external/yaffs2/yaffs2/ |
yaffs_guts.c | 114 /* Function to calculate chunk and offset */ 116 static void yaffs_AddrToChunk(yaffs_Device *dev, loff_t addr, __u32 *chunk, __u32 *offset) 120 *chunk = (__u32)(addr >> dev->chunkShift); 128 *chunk = ((__u32)addr)/dev->crumbsPerChunk; 129 *offset += ((addr - (*chunk * dev->crumbsPerChunk)) << dev->crumbShift); 269 * Chunk bitmap manipulations 291 static Y_INLINE void yaffs_ClearChunkBit(yaffs_Device * dev, int blk, int chunk) 295 blkBits[chunk / 8] &= ~(1 << (chunk & 7)); 298 static Y_INLINE void yaffs_SetChunkBit(yaffs_Device * dev, int blk, int chunk) 395 int chunk; local 2680 int chunk; local 3884 int chunk; local 4004 int chunk; local 4655 int chunk; local 5187 int chunk; local [all...] |
/external/chromium_org/third_party/WebKit/Source/core/xml/parser/ |
XMLDocumentParser.cpp | 502 bool XMLDocumentParser::parseDocumentFragment(const String& chunk, DocumentFragment* fragment, Element* contextElement, ParserContentPolicy parserContentPolicy) 504 if (!chunk.length()) 511 fragment->parserAppendChild(fragment->document()->createTextNode(chunk)); 516 bool wellFormed = parser->appendFragmentSource(chunk); 564 // resetting the encoding to UTF-16 before every chunk. Otherwise libxml 577 static void parseChunk(xmlParserCtxtPtr ctxt, const String& chunk) 579 bool is8Bit = chunk.is8Bit(); 582 xmlParseChunk(ctxt, reinterpret_cast<const char*>(chunk.characters8()), sizeof(LChar) * chunk.length(), 0); 584 xmlParseChunk(ctxt, reinterpret_cast<const char*>(chunk.characters16()), sizeof(UChar) * chunk.length(), 0) [all...] |
XMLDocumentParser.h | 53 static PassRefPtr<XMLParserContext> createMemoryParser(xmlSAXHandlerPtr, void* userData, const CString& chunk); 142 void initializeParserContext(const CString& chunk = CString());
|
/frameworks/base/graphics/java/android/graphics/drawable/ |
NinePatchDrawable.java | 79 public NinePatchDrawable(Bitmap bitmap, byte[] chunk, Rect padding, String srcName) { 80 this(new NinePatchState(new NinePatch(bitmap, chunk, srcName), padding), null); 87 public NinePatchDrawable(Resources res, Bitmap bitmap, byte[] chunk, 89 this(new NinePatchState(new NinePatch(bitmap, chunk, srcName), padding), res); 99 public NinePatchDrawable(Resources res, Bitmap bitmap, byte[] chunk, 101 this(new NinePatchState(new NinePatch(bitmap, chunk, srcName), padding, opticalInsets), res);
|
/external/libpng/ |
pngtest.c | 15 * the basic chunk handling, filtering, and (de)compression code is working 91 static char tIME_string[PNG_tIME_STRING_LENGTH] = "tIME chunk is not present"; 618 /* Demonstration of user chunk support of the sTER and vpAg chunks */ 621 /* (sTER is a public chunk not yet known by libpng. vpAg is a private 622 chunk used in ImageMagick to store "virtual page" size). */ 633 png_unknown_chunkp chunk) 639 * return (-n); chunk had an error 643 * The unknown chunk structure contains the chunk data: 651 if (chunk->name[0] == 115 && chunk->name[1] == 84 && /* s T * [all...] |
/external/valgrind/main/callgrind/ |
fn.c | 44 struct chunk_t chunk[]; member in struct:pattern 56 int chunk, start, len; local 58 /* first chunk of pattern should always start at offset 0 and 60 CLG_ASSERT((pat->chunk[0].start == 0) && (pat->chunk[0].len >2)); 63 obj->name, pat->name, pat->chunk[0].len, code[0], code[1], code[2]); 68 found = (VG_(memcmp)( (void*)addr, code, pat->chunk[0].len) == 0); 71 chunk = 1; 73 start = pat->chunk[chunk].start [all...] |
/external/chromium/chrome/browser/safe_browsing/ |
safe_browsing_database.h | 121 // // If passed true, processes the collected chunk info and 263 void InsertAdd(int chunk, SBPrefix host, const SBEntry* entry, int list_id); 265 void InsertSub(int chunk, SBPrefix host, const SBEntry* entry, int list_id); 291 // Underlying persistent store for chunk data.
|
/external/chromium_org/third_party/WebKit/Source/devtools/front_end/ |
HeapSnapshotLoader.js | 115 * @param {string} chunk 117 write: function(chunk) 119 this._json += chunk;
|
/external/chromium_org/v8/test/test262/ |
testcfg.py | 107 for chunk in iter(lambda: f.read(8192), ""): 108 md5.update(chunk)
|
/external/v8/test/test262/ |
testcfg.py | 115 for chunk in iter(lambda: f.read(8192), ''): 116 md5.update(chunk)
|