/external/libpng/scripts/ |
pngos2.def | 163 png_sig_cmp
|
png32ce.def | 158 png_sig_cmp @150
|
pngw32.def | 161 png_sig_cmp @150
|
/external/qemu/ |
loadpng.c | 47 if(png_sig_cmp(header, 0, 8)) { 178 if(size < 8 || png_sig_cmp((unsigned char*)base, 0, 8)) {
|
/bootable/recovery/minui/ |
resources.c | 70 if (png_sig_cmp(header, 0, sizeof(header))) { 223 if (png_sig_cmp(header, 0, sizeof(header))) {
|
/external/libpng/contrib/gregbook/ |
readpng.c | 93 * have used slightly more general png_sig_cmp() function instead */ 96 if (png_sig_cmp(sig, 0, 8))
|
readpng2.c | 162 return !png_sig_cmp(sig, 0, num);
|
/external/libpng/ |
example.c | 37 /* Check to see if a file is a PNG file using png_sig_cmp(). png_sig_cmp() 54 * to pass the bytes to png_sig_cmp() or even skip that if you know 73 return(!png_sig_cmp(buf, (png_size_t)0, PNG_BYTES_TO_CHECK));
|
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/qemu/distrib/libpng-1.2.19/ |
png.c | 117 png_sig_cmp(png_bytep sig, png_size_t start, png_size_t num_to_check) function 137 * future - use png_sig_cmp(). Returns true (nonzero) if the file is PNG. 142 return ((int)!png_sig_cmp(sig, (png_size_t)0, (png_size_t)num));
|
pngpread.c | 119 if (png_sig_cmp(info_ptr->signature, num_checked, num_to_check)) 122 png_sig_cmp(info_ptr->signature, num_checked, num_to_check - 4)) [all...] |
pngread.c | 338 if (png_sig_cmp(info_ptr->signature, num_checked, num_to_check)) 341 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 | 435 #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...] |
/external/libpng/contrib/pngminus/ |
png2pnm.c | 214 ret = !png_sig_cmp (buf, 0, 8);
|
/external/libpng/contrib/visupng/ |
PngFile.c | 129 if (png_sig_cmp(pbSig, 0, 8))
|
/development/tools/etc1tool/ |
etc1tool.cpp | 163 if (png_sig_cmp(pngHeader, 0, PNG_HEADER_SIZE)) {
|
/external/chromium_org/tools/imagediff/ |
image_diff_png.cc | 308 if (png_sig_cmp(const_cast<unsigned char*>(input), 0, 8) != 0)
|
/external/chromium_org/ui/gfx/codec/ |
png_codec.cc | 359 if (png_sig_cmp(const_cast<unsigned char*>(input), 0, 8) != 0)
|
/external/chromium_org/third_party/skia/src/images/ |
SkImageDecoder_libpng.cpp | [all...] |
/external/skia/src/images/ |
SkImageDecoder_libpng.cpp | [all...] |