| /external/libpng/contrib/examples/ |
| pngpixel.c | 98 int num_trans = 0; local 99 if ((png_get_tRNS(png_ptr, info_ptr, &trans_alpha, &num_trans, 100 NULL) & PNG_INFO_tRNS) && num_trans > 0 && 105 index < num_trans ? trans_alpha[index] : 255);
|
| /external/libpng/ |
| pnginfo.h | 64 png_uint_16 num_trans; /* number of transparent palette color (tRNS) */ member in struct:png_info_def 146 * "num_trans" transparency values for a paletted image, stored in the
|
| pngwrite.c | 222 jend = info_ptr->num_trans; 232 info_ptr->num_trans, info_ptr->color_type); 1796 int i, num_trans; local [all...] |
| pngread.c | 2778 unsigned int num_trans = png_ptr->num_trans; local [all...] |
| pngstruct.h | 247 png_uint_16 num_trans; /* number of transparency values */ member in struct:png_struct_def
|
| pngtest.c | 1340 int num_trans; local [all...] |
| /external/opencv3/3rdparty/libpng/ |
| pnginfo.h | 65 png_uint_16 num_trans; /* number of transparent palette color (tRNS) */ member in struct:png_info_def 134 * "num_trans" transparency values for a paletted image, stored in the
|
| pngstruct.h | 130 png_uint_16 num_trans; /* number of transparency values */ member in struct:png_struct_def
|
| /external/opencv3/modules/imgcodecs/src/ |
| grfmt_png.cpp | 174 int bit_depth, color_type, num_trans=0; local 196 png_get_tRNS( png_ptr, info_ptr, &trans, &num_trans, &trans_values); 198 if ( num_trans > 0 )
|
| /external/pdfium/third_party/lpng_v163/ |
| pnginfo.h | 65 png_uint_16 num_trans; /* number of transparent palette color (tRNS) */
member in struct:png_info_def 147 * "num_trans" transparency values for a paletted image, stored in the
|
| pngwrite.c | 219 for (j = 0; j<(int)info_ptr->num_trans; j++)
225 info_ptr->num_trans, info_ptr->color_type);
1896 int i, num_trans; local [all...] |
| pngread.c | 2648 unsigned int num_trans = png_ptr->num_trans; local [all...] |
| pngstruct.h | 246 png_uint_16 num_trans; /* number of transparency values */
member in struct:png_struct_def
|
| /ndk/tests/build/issue20862-libpng-O0/jni/ |
| pnginfo.h | 65 png_uint_16 num_trans; /* number of transparent palette color (tRNS) */ member in struct:png_info_def 134 * "num_trans" transparency values for a paletted image, stored in the
|
| pngstruct.h | 130 png_uint_16 num_trans; /* number of transparency values */ member in struct:png_struct_def
|
| /external/skia/src/images/ |
| SkImageDecoder_libpng.cpp | 182 int num_trans; local 185 png_get_tRNS(png_ptr, info_ptr, &trans, &num_trans, nullptr); 186 return num_trans > 0; 771 int i, num_trans = 0; local 775 ctable. PNG allows num_trans < num_palette, but all of the trans 782 num_trans = ctCount; 787 num_trans -= 1; 793 for (i = 0; i < num_trans; i++) { 807 for (i = num_trans; i < ctCount; i++) { 813 return num_trans; [all...] |