Home
last modified time | relevance | path

Searched refs:PARSE_ERROR (Results 1 – 10 of 10) sorted by relevance

/third_party/skia/third_party/externals/libwebp/src/demux/
Ddemux.c79 PARSE_ERROR enumerator
228 if (payload_size > MAX_CHUNK_PAYLOAD) return PARSE_ERROR; in StoreFrame()
234 if (SizeIsInvalid(mem, payload_size_padded)) return PARSE_ERROR; in StoreFrame()
251 if (alpha_chunks > 0) return PARSE_ERROR; // VP8L has its own alpha in StoreFrame()
266 return PARSE_ERROR; in StoreFrame()
301 if (SizeIsInvalid(mem, min_size)) return PARSE_ERROR; in NewFrame()
302 if (actual_size < min_size) return PARSE_ERROR; in NewFrame()
306 return (*frame == NULL) ? PARSE_ERROR : PARSE_OK; in NewFrame()
335 return PARSE_ERROR; in ParseAnimationFrame()
342 if (status != PARSE_ERROR && mem->start_ - start_offset > anmf_payload_size) { in ParseAnimationFrame()
[all …]
/third_party/flutter/skia/third_party/externals/libwebp/src/demux/
Ddemux.c79 PARSE_ERROR enumerator
229 if (payload_size > MAX_CHUNK_PAYLOAD) return PARSE_ERROR; in StoreFrame()
230 if (SizeIsInvalid(mem, payload_size_padded)) return PARSE_ERROR; in StoreFrame()
247 if (alpha_chunks > 0) return PARSE_ERROR; // VP8L has its own alpha in StoreFrame()
262 return PARSE_ERROR; in StoreFrame()
297 if (SizeIsInvalid(mem, min_size)) return PARSE_ERROR; in NewFrame()
298 if (actual_size < min_size) return PARSE_ERROR; in NewFrame()
302 return (*frame == NULL) ? PARSE_ERROR : PARSE_OK; in NewFrame()
330 return PARSE_ERROR; in ParseAnimationFrame()
336 if (status != PARSE_ERROR && is_animation && frame->frame_num_ > 0) { in ParseAnimationFrame()
[all …]
/third_party/giflib/
Dgifbuild.c119 #define PARSE_ERROR(str) (void) fprintf(stderr,"%s:%d: %s\n",FileName,LineNum,str); macro
187 PARSE_ERROR("Invalid color resolution value."); in Icon2Gif()
213 PARSE_ERROR("You've already declared a global color map."); in Icon2Gif()
228 PARSE_ERROR("No previous image declaration."); in Icon2Gif()
268 PARSE_ERROR("Out of memory while allocating new color map."); in Icon2Gif()
298 PARSE_ERROR("Inclusion read failed."); in Icon2Gif()
319 PARSE_ERROR("Inclusion failed --- global map conflict."); in Icon2Gif()
340 PARSE_ERROR("Inclusion failed --- out of memory."); in Icon2Gif()
381 PARSE_ERROR("out of memory while adding comment block."); in Icon2Gif()
403 PARSE_ERROR("out of memory while adding plaintext block."); in Icon2Gif()
[all …]
/third_party/boost/boost/date_time/
Dstring_parse_tree.hpp30 current_match(PARSE_ERROR) in parse_match_result()
38 if (current_match == PARSE_ERROR) { in remaining()
61 enum PARSE_STATE { PARSE_ERROR = -1 }; enumerator
105 m_value(parse_match_result_type::PARSE_ERROR) in string_parse_tree()
119 string_parse_tree(short value = parse_match_result_type::PARSE_ERROR) : in string_parse_tree()
Dformat_date_parser.hpp285 if(mr.current_match == match_results::PARSE_ERROR) { in parse_date()
304 if(mr.current_match == match_results::PARSE_ERROR) { in parse_date()
319 if(mr.current_match == match_results::PARSE_ERROR) { in parse_date()
334 if(mr.current_match == match_results::PARSE_ERROR) { in parse_date()
Dspecial_values_parser.hpp131 return (mr.current_match != match_results::PARSE_ERROR); in match()
Ddate_facet.hpp631 if(mr.current_match == match_results::PARSE_ERROR) { in get()
Dtime_facet.hpp1259 if(mr.current_match == match_results::PARSE_ERROR) { in check_special_value()
/third_party/gstreamer/gstplugins_good/gst/rtp/
Dgstrtph261pay.c125 PARSE_ERROR = -1, enumerator
427 return PARSE_ERROR; in decode_mba()
445 return PARSE_ERROR; in decode_mtype()
464 return PARSE_ERROR; in decode_mvd()
482 return PARSE_ERROR; in decode_cbp()
533 return PARSE_ERROR; in decode_tcoeff()
564 return PARSE_ERROR; in parse_picture_header()
579 return PARSE_ERROR; in parse_gob_header()
722 case PARSE_ERROR: in parse_mb_until_pos()
791 return PARSE_ERROR; in gst_rtp_h261_pay_init_gobs()
/third_party/python/Lib/xmlrpc/
Dclient.py166 PARSE_ERROR = -32700 variable