/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 | 68 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/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...] |
png.h | [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/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 | 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));
|
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...] |
png.h | [all...] |
/external/skia/src/images/ |
SkImageDecoder_libpng.cpp | [all...] |
/hardware/ti/omap4xxx/hwc/ |
hwc.c | [all...] |