/external/qemu/android/ |
loadpng.c | 47 if(png_sig_cmp(header, 0, 8)) { 178 if(size < 8 || png_sig_cmp((unsigned char*)base, 0, 8)) {
|
/external/libpng/contrib/gregbook/ |
readpng.c | 94 * have used slightly more general png_sig_cmp() function instead */ 97 if (png_sig_cmp(sig, 0, 8))
|
readpng2.c | 91 return !png_sig_cmp(sig, 0, num);
|
/external/libpng/scripts/ |
symbols.def | 11 png_sig_cmp @3
|
/external/qemu/distrib/libpng-1.2.46/ |
png.c | 122 png_sig_cmp(png_bytep sig, png_size_t start, png_size_t num_to_check) function 142 * future - use png_sig_cmp(). Returns true (nonzero) if the file is PNG. 147 return ((int)!png_sig_cmp(sig, (png_size_t)0, (png_size_t)num));
|
pngpread.c | 133 if (png_sig_cmp(info_ptr->signature, num_checked, num_to_check)) 136 png_sig_cmp(info_ptr->signature, num_checked, num_to_check - 4)) [all...] |
pngread.c | 374 if (png_sig_cmp(info_ptr->signature, num_checked, num_to_check)) 377 png_sig_cmp(info_ptr->signature, num_checked, num_to_check - 4)) [all...] |
/external/chromium_org/third_party/libpng/ |
png.c | 121 png_sig_cmp(png_bytep sig, png_size_t start, png_size_t num_to_check) function 141 * future - use png_sig_cmp(). Returns true (nonzero) if the file is PNG. 146 return ((int)!png_sig_cmp(sig, (png_size_t)0, (png_size_t)num));
|
pngusr.h | 439 #define png_sig_cmp wk_png_sig_cmp macro
|
pngpread.c | 133 if (png_sig_cmp(info_ptr->signature, num_checked, num_to_check)) 136 png_sig_cmp(info_ptr->signature, num_checked, num_to_check - 4)) [all...] |
pngread.c | 370 if (png_sig_cmp(info_ptr->signature, num_checked, num_to_check)) 373 png_sig_cmp(info_ptr->signature, num_checked, num_to_check - 4)) [all...] |
/bootable/recovery/minui/ |
resources.c | 67 if (png_sig_cmp(header, 0, sizeof(header))) {
|
/external/deqp/framework/common/ |
tcuImageIO.cpp | 89 TCU_CHECK(png_sig_cmp((png_bytep)&header[0], 0, DE_LENGTH_OF_ARRAY(header)) == 0);
|
/external/libpng/contrib/pngminus/ |
png2pnm.c | 215 ret = png_sig_cmp (buf, 0, 8);
|
/external/libpng/contrib/visupng/ |
PngFile.c | 131 if (png_sig_cmp(pbSig, 0, 8))
|
/external/libpng/ |
example.c | 224 /* Check to see if a file is a PNG file using png_sig_cmp(). png_sig_cmp() 241 * to pass the bytes to png_sig_cmp() or even skip that if you know 260 return(!png_sig_cmp(buf, (png_size_t)0, PNG_BYTES_TO_CHECK)); [all...] |
pngpread.c | 166 if (png_sig_cmp(info_ptr->signature, num_checked, num_to_check)) 169 png_sig_cmp(info_ptr->signature, num_checked, num_to_check - 4)) [all...] |
png.h | [all...] |
libpng-manual.txt | 332 png_sig_cmp(), and it will return 0 (false) if the bytes match the 355 is_png = !png_sig_cmp(header, 0, number); [all...] |
/development/tools/etc1tool/ |
etc1tool.cpp | 163 if (png_sig_cmp(pngHeader, 0, PNG_HEADER_SIZE)) {
|
/external/chromium_org/tools/imagediff/ |
image_diff_png.cc | 301 if (png_sig_cmp(const_cast<unsigned char*>(input), 0, 8) != 0)
|
/external/chromium_org/ui/gfx/codec/ |
png_codec.cc | 352 if (png_sig_cmp(const_cast<unsigned char*>(input), 0, 8) != 0)
|
/ndk/tests/build/issue20862-libpng-O0/jni/ |
png.h | [all...] |
/external/chromium_org/third_party/skia/src/images/ |
SkImageDecoder_libpng.cpp | [all...] |
/external/skia/src/images/ |
SkImageDecoder_libpng.cpp | [all...] |