Home
last modified time | relevance | path

Searched refs:png_sig_cmp (Results 1 – 21 of 21) sorted by relevance

/external/qemu/
Dloadpng.c47 if(png_sig_cmp(header, 0, 8)) { in loadpng()
178 if(size < 8 || png_sig_cmp((unsigned char*)base, 0, 8)) { in readpng()
/external/libpng/scripts/
Dpng32ce.def158 png_sig_cmp @150
Dpngw32.def161 png_sig_cmp @150
Dpngos2.def163 png_sig_cmp
/external/libpng/contrib/gregbook/
Dreadpng.c96 if (png_sig_cmp(sig, 0, 8)) in readpng_init()
Dreadpng2.c162 return !png_sig_cmp(sig, 0, num); in readpng2_check_sig()
/external/qemu/distrib/libpng-1.2.19/
Dpng.c117 png_sig_cmp(png_bytep sig, png_size_t start, png_size_t num_to_check) in png_sig_cmp() function
142 return ((int)!png_sig_cmp(sig, (png_size_t)0, (png_size_t)num)); in png_check_sig()
Dpngread.c338 if (png_sig_cmp(info_ptr->signature, num_checked, num_to_check)) in png_read_info()
341 png_sig_cmp(info_ptr->signature, num_checked, num_to_check - 4)) in png_read_info()
Dpngpread.c119 if (png_sig_cmp(info_ptr->signature, num_checked, num_to_check)) in png_push_read_sig()
122 png_sig_cmp(info_ptr->signature, num_checked, num_to_check - 4)) in png_push_read_sig()
Dpng.h1438 extern PNG_EXPORT(int,png_sig_cmp) PNGARG((png_bytep sig, png_size_t start,
/external/libpng/
Dpng.c121 png_sig_cmp(png_bytep sig, png_size_t start, png_size_t num_to_check) in png_sig_cmp() function
146 return ((int)!png_sig_cmp(sig, (png_size_t)0, (png_size_t)num)); in png_check_sig()
Dexample.c73 return(!png_sig_cmp(buf, (png_size_t)0, PNG_BYTES_TO_CHECK));
Dpngpread.c133 if (png_sig_cmp(info_ptr->signature, num_checked, num_to_check)) in png_push_read_sig()
136 png_sig_cmp(info_ptr->signature, num_checked, num_to_check - 4)) in png_push_read_sig()
Dpngread.c374 if (png_sig_cmp(info_ptr->signature, num_checked, num_to_check)) in png_read_info()
377 png_sig_cmp(info_ptr->signature, num_checked, num_to_check - 4)) in png_read_info()
Dpng.h1635 extern PNG_EXPORT(int,png_sig_cmp) PNGARG((png_bytep sig, png_size_t start,
Dlibpng-1.2.46.txt146 png_sig_cmp(), and it will return 0 (false) if the bytes match the
168 is_png = !png_sig_cmp(header, 0, number);
3032 !png_sig_cmp(sig, 0, num)
Dlibpng-1.2.44.txt146 png_sig_cmp(), and it will return 0 (false) if the bytes match the
168 is_png = !png_sig_cmp(header, 0, number);
3032 !png_sig_cmp(sig, 0, num)
DCHANGES412 Changed libpng.txt to demonstrate png_sig_cmp() instead of png_check_sig()
2581 Changed png_check_sig() to !png_sig_cmp() in contrib programs.
/external/libpng/contrib/pngminus/
Dpng2pnm.c214 ret = !png_sig_cmp (buf, 0, 8); in png2pnm()
/external/libpng/contrib/visupng/
DPngFile.c129 if (png_sig_cmp(pbSig, 0, 8)) in PngLoadImage()
/external/skia/src/images/
DSkImageDecoder_libpng.cpp1134 !png_sig_cmp((png_bytep) buf, (png_size_t)0, PNG_BYTES_TO_CHECK)) { in DFactory()