Searched defs:chunk (Results 126 - 150 of 224) sorted by relevance

123456789

/external/libpng/
H A Dpngset.c192 png_warning(png_ptr, "Insufficient memory for hIST chunk data");
669 png_benign_error(png_ptr, "Insufficient memory to process iCCP chunk");
817 png_chunk_report(png_ptr, "iTXt chunk not supported",
846 png_chunk_report(png_ptr, "text chunk: out of memory",
898 png_debug1(3, "transferred text chunk %d", info_ptr->num_text);
979 "tRNS chunk has out-of-range samples for bit_depth");
1107 * png_set_unknown_chunk_location API below for each chunk.
1157 png_app_error(png_ptr, "no unknown chunk support on read");
1166 png_app_error(png_ptr, "no unknown chunk support on write");
1196 * just-allocated chunk dat
1237 png_set_unknown_chunk_location(png_const_structrp png_ptr, png_inforp info_ptr, int chunk, int location) argument
[all...]
H A Dpngtest.c15 * the basic chunk handling, filtering, and (de)compression code is working
134 static char tIME_string[PNG_tIME_STRING_LENGTH] = "tIME chunk is not present";
156 static int unsupported_chunks = 0; /* chunk unsupported by libpng in input */
165 /* Defines for unknown chunk handling if required. */
642 /* Demonstration of user chunk support of the sTER and vpAg chunks */
644 /* (sTER is a public chunk not yet known by libpng. vpAg is a private
645 chunk used in ImageMagick to store "virtual page" size). */
701 read_user_chunk_callback(png_struct *png_ptr, png_unknown_chunkp chunk) argument
707 png_error(png_ptr, "lost user chunk pointer");
710 * return (-n); chunk ha
[all...]
/external/pdfium/third_party/libpng16/
H A Dpngset.c192 png_warning(png_ptr, "Insufficient memory for hIST chunk data");
681 png_benign_error(png_ptr, "Insufficient memory to process iCCP chunk");
829 png_chunk_report(png_ptr, "iTXt chunk not supported",
858 png_chunk_report(png_ptr, "text chunk: out of memory",
910 png_debug1(3, "transferred text chunk %d", info_ptr->num_text);
992 "tRNS chunk has out-of-range samples for bit_depth");
1120 * png_set_unknown_chunk_location API below for each chunk.
1170 png_app_error(png_ptr, "no unknown chunk support on read");
1179 png_app_error(png_ptr, "no unknown chunk support on write");
1209 * just-allocated chunk dat
1250 png_set_unknown_chunk_location(png_const_structrp png_ptr, png_inforp info_ptr, int chunk, int location) argument
[all...]
/external/protobuf/src/google/protobuf/compiler/objectivec/
H A Dobjectivec_helpers.cc844 bool ParseChunk(StringPiece chunk);
863 bool Parser::ParseChunk(StringPiece chunk) { argument
865 chunk.AppendToString(&leftover_);
868 p_ = chunk;
/external/skia/src/codec/
H A DSkPngCodec.cpp56 static int sk_read_user_chunk(png_structp png_ptr, png_unknown_chunkp chunk) { argument
59 return chunkReader->readChunk((const char*)chunk->name, chunk->data, chunk->size) ? 1 : -1;
127 static inline bool is_chunk(const png_byte* chunk, const char* tag) { argument
128 return memcmp(chunk + 4, tag, 4) == 0;
168 // Parse chunk length and type.
174 png_byte* chunk = reinterpret_cast<png_byte*>(buffer); local
175 const size_t length = png_get_uint_32(chunk);
177 if (is_chunk(chunk, "IDA
222 png_byte* chunk = reinterpret_cast<png_byte*>(buffer); local
[all...]
/external/skia/third_party/libpng/
H A Dpngset.c192 png_warning(png_ptr, "Insufficient memory for hIST chunk data");
669 png_benign_error(png_ptr, "Insufficient memory to process iCCP chunk");
817 png_chunk_report(png_ptr, "iTXt chunk not supported",
846 png_chunk_report(png_ptr, "text chunk: out of memory",
898 png_debug1(3, "transferred text chunk %d", info_ptr->num_text);
977 "tRNS chunk has out-of-range samples for bit_depth");
1105 * png_set_unknown_chunk_location API below for each chunk.
1155 png_app_error(png_ptr, "no unknown chunk support on read");
1164 png_app_error(png_ptr, "no unknown chunk support on write");
1194 * just-allocated chunk dat
1235 png_set_unknown_chunk_location(png_const_structrp png_ptr, png_inforp info_ptr, int chunk, int location) argument
[all...]
H A Dpngtest.c15 * the basic chunk handling, filtering, and (de)compression code is working
134 static char tIME_string[PNG_tIME_STRING_LENGTH] = "tIME chunk is not present";
156 static int unsupported_chunks = 0; /* chunk unsupported by libpng in input */
165 /* Defines for unknown chunk handling if required. */
641 /* Demonstration of user chunk support of the sTER and vpAg chunks */
643 /* (sTER is a public chunk not yet known by libpng. vpAg is a private
644 chunk used in ImageMagick to store "virtual page" size). */
700 read_user_chunk_callback(png_struct *png_ptr, png_unknown_chunkp chunk) argument
706 png_error(png_ptr, "lost user chunk pointer");
709 * return (-n); chunk ha
[all...]
/external/syslinux/com32/lib/libpng/
H A Dpngset.c209 png_warning(png_ptr, "Insufficient memory for hIST chunk data.");
611 png_warning(png_ptr, "Insufficient memory to process iCCP chunk.");
737 png_warning(png_ptr, "iTXt chunk not supported.");
812 png_debug1(3, "transferred text chunk %d", info_ptr->num_text);
871 "tRNS chunk has out-of-range samples for bit_depth");
934 "Out of memory while processing sPLT chunk");
943 "Out of memory while processing sPLT chunk");
980 "Out of memory while processing unknown chunk.");
1010 "Out of memory while processing unknown chunk.");
1026 int chunk, in
1025 png_set_unknown_chunk_location(png_structp png_ptr, png_infop info_ptr, int chunk, int location) argument
[all...]
H A Dpngtest.c15 * 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
632 read_user_chunk_callback(png_struct *png_ptr, png_unknown_chunkp chunk) argument
[all...]
/external/syslinux/dos/
H A Dsyslinux.c134 uint32_t chunk = len - filepos; local
135 if (chunk > 32768 - offset)
136 chunk = 32768 - offset;
141 :"a"(0x4000), "b"(fd), "c"(chunk), "d" (offset),
/external/syslinux/gpxe/src/drivers/net/
H A Dskge.c1714 u32 chunk, ram_addr; local
1756 chunk = (hw->ram_size - hw->ram_offset) / (hw->ports * 2);
1757 ram_addr = hw->ram_offset + 2 * chunk * port;
1759 skge_ramset(hw, rxqaddr[port], ram_addr, chunk);
1763 skge_ramset(hw, txqaddr[port], ram_addr+chunk, chunk);
/external/v8/src/
H A Dcode-stubs-hydrogen.cc30 LChunk* chunk = LChunk::NewChunk(graph); local
31 if (chunk == NULL) {
34 return chunk;
320 LChunk* chunk = OptimizeGraph(builder.CreateGraph()); local
321 Handle<Code> code = chunk->Codegen();
/external/v8/src/crankshaft/
H A Dlithium-allocator.h339 bool Allocate(LChunk* chunk);
349 LPlatformChunk* chunk() const { return chunk_; } function in class:v8::internal::BASE_EMBEDDED
/external/v8/src/heap/
H A Dheap-inl.h542 MemoryChunk* chunk = MemoryChunk::FromAddress(obj->address()); local
543 AllocationSpace src = chunk->owner()->identity();
H A Dmark-compact.h245 explicit MarkBitCellIterator(MemoryChunk* chunk) : chunk_(chunk) { argument
314 explicit LiveObjectIterator(MemoryChunk* chunk) argument
315 : chunk_(chunk),
/external/vboot_reference/cgpt/
H A Dcgpt_common.c370 unsigned int chunk[11]; local
373 chunk+0,
374 chunk+1,
375 chunk+2,
376 chunk+3,
377 chunk+4,
378 chunk+5,
379 chunk+6,
380 chunk+7,
381 chunk
[all...]
/external/webp/src/demux/
H A Ddemux.c33 size_t riff_end_; // riff chunk end location, can be > end_.
129 // Return true if 'size' exceeds the end of the RIFF chunk.
175 // Secondary chunk parsing
177 static void AddChunk(WebPDemuxer* const dmux, Chunk* const chunk) { argument
178 *dmux->chunks_tail_ = chunk;
179 chunk->next_ = NULL;
180 dmux->chunks_tail_ = &chunk->next_;
303 // Parse a 'ANMF' chunk and any image bearing chunks that immediately follow.
304 // 'frame_chunk_size' is the previously validated, padded chunk size.
347 // General chunk storag
353 Chunk* const chunk = (Chunk*)WebPSafeCalloc(1ULL, sizeof(*chunk)); local
924 const Chunk* const chunk = GetChunk(dmux, fourcc, chunk_num); local
[all...]
/external/zopfli/src/zopflipng/lodepng/
H A Dlodepng_util.cpp44 const unsigned char *chunk, *begin, *end; local
46 begin = chunk = &png.front() + 8;
48 while(chunk + 8 < end && chunk >= begin)
51 lodepng_chunk_type(type, chunk);
55 sizes.push_back(lodepng_chunk_length(chunk));
57 chunk = lodepng_chunk_next_const(chunk);
66 const unsigned char *chunk, *next, *begin, *end; local
68 begin = chunk
108 const unsigned char *chunk, *next, *begin, *end; local
167 const unsigned char *chunk, *begin, *end; local
[all...]
/external/chromium-trace/catapult/telemetry/third_party/png/
H A Dpng.py355 Specify a transparent colour (create a ``tRNS`` chunk).
357 Specify a default background colour (create a ``bKGD`` chunk).
359 Specify a gamma value (create a ``gAMA`` chunk).
382 (significant bits) chunk is generated that specifies the original
396 PNG image with a palette and an ``sBIT`` chunk, but the meaning
412 before all the 3-tuples. A ``PLTE`` chunk is created; if there
413 are 4-tuples then a ``tRNS`` chunk is created as well. The
414 ``PLTE`` chunk will contain all the RGB triples in the same
415 sequence; the ``tRNS`` chunk will contain the alpha channel for
424 (generally, a float). A ``gAMA`` chunk wil
1378 def chunk(self, seek=None, lenient=False): member in class:Reader
[all...]
/external/compiler-rt/lib/asan/
H A Dasan_allocator.cc52 // The memory chunk allocated from the underlying allocator looks like this:
99 // Every chunk of memory allocated by this allocator can be in one of 3 states:
100 // CHUNK_AVAILABLE: the chunk is in the free list and ready to be allocated.
101 // CHUNK_ALLOCATED: the chunk is allocated and not yet freed.
102 // CHUNK_QUARANTINE: the chunk was freed and put into quarantine zone.
149 // contents of deallocated chunk, confusing GetAsanChunk lookup.
185 // We are about to unmap a chunk of user memory.
301 // Prefer an allocated chunk over freed chunk and freed chunk
831 GetUserBegin(uptr chunk) argument
837 LsanMetadata(uptr chunk) argument
[all...]
/external/compiler-rt/lib/sanitizer_common/
H A Dsanitizer_allocator.h296 typedef void (*ForEachChunkCallback)(uptr chunk, void *arg);
474 for (uptr chunk = region_beg;
475 chunk < region_beg + region->allocated_user;
476 chunk += chunk_size) {
477 // Too slow: CHECK_EQ((void *)chunk, GetBlockBegin((void *)chunk));
478 callback(chunk, arg);
529 static uptr GetChunkIdx(uptr chunk, uptr size) { argument
530 uptr offset = chunk % kRegionSize;
838 for (uptr chunk
[all...]
/external/libevent/
H A Dbuffer.c176 /* we get everything in one chunk */
1226 /* not enough room at end of chunk. */
1254 /* Copy and free every chunk that will be entirely pulled into tmp */
1338 size_t chunk = (s + CHUNK_SZ < s_end) ? CHUNK_SZ : (s_end - s); local
1339 cr = memchr(s, '\r', chunk);
1340 lf = memchr(s, '\n', chunk);
1744 * a single chunk. Return that chunk. */
1795 /* At this point, we can either resize the last chunk with space in
1796 * it, use the next chunk afte
[all...]
/external/libpcap/
H A Dpcap.c490 char *chunk; local
494 * Allocate a chunk of memory big enough for a pcap_t
499 chunk = malloc(sizeof (pcap_t) + size);
500 if (chunk == NULL) {
505 memset(chunk, 0, sizeof (pcap_t) + size);
510 p = (pcap_t *)chunk;
525 p->priv = (void *)(chunk + sizeof (pcap_t));
/external/protobuf/src/google/protobuf/compiler/cpp/
H A Dcpp_message.cc2367 // These are handled in chunks of 8. The first chunk is
2370 // and the second chunk is the same for
2383 int chunk = i / 8; local
2384 fieldname_to_chunk[FieldName(field)] = chunk;
2385 fields_mask_for_chunk[chunk] |= static_cast<uint32>(1) << (i % 32);
2414 int chunk = fieldname_to_chunk[run[0]]; local
2415 memsets_for_chunk[chunk].append(
2418 GOOGLE_DCHECK_EQ(chunk, fieldname_to_chunk[run[j]]);
2421 memset_field_count_for_chunk[chunk] += run.size();
2438 // End previous chunk, i
[all...]
/external/tinyxml2/
H A Dtinyxml2.h268 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;
287 root = chunk;
301 Chunk chunk[COUNT]; member in struct:tinyxml2::MemPoolT::Block

Completed in 1774 milliseconds

123456789