Lines Matching refs:png_uint_16
313 * "png_uint_16 year" in png_time_struct.
514 * be png_byte or png_uint_16 (as defined below).
528 png_uint_16 red; /* for use in red green blue files */
529 png_uint_16 green;
530 png_uint_16 blue;
531 png_uint_16 gray; /* for use in grayscale files */
553 png_uint_16 red;
554 png_uint_16 green;
555 png_uint_16 blue;
556 png_uint_16 alpha;
557 png_uint_16 frequency;
627 png_uint_16 year; /* full year, as in, 1995 */
704 png_uint_16 num_palette; /* number of color entries in "palette" (PLTE) */
705 png_uint_16 num_trans; /* number of transparent palette color (tRNS) */
1181 png_uint_16 num_palette; /* number of color entries in palette */
1182 png_uint_16 num_trans; /* number of transparency values */
1201 png_uint_16 filler; /* filler bytes for pixel expansion */
1285 png_uint_16 offset_table_number;
1286 png_uint_16 offset_table_count;
1287 png_uint_16 offset_table_count_free;
1333 png_uint_16 rgb_to_gray_red_coeff;
1334 png_uint_16 rgb_to_gray_green_coeff;
1335 png_uint_16 rgb_to_gray_blue_coeff;
2622 { png_uint_16 temp = (png_uint_16)((png_uint_16)(fg) * (png_uint_16)(alpha) \
2623 + (png_uint_16)(bg)*(png_uint_16)(255 - \
2624 (png_uint_16)(alpha)) + (png_uint_16)128); \
2631 (composite) = (png_uint_16)((temp + (temp >> 16)) >> 16); }
2636 (composite) = (png_byte)(((png_uint_16)(fg) * (png_uint_16)(alpha) + \
2637 (png_uint_16)(bg) * (png_uint_16)(255 - (png_uint_16)(alpha)) + \
2638 (png_uint_16)127) / 255)
2641 (composite) = (png_uint_16)(((png_uint_32)(fg) * (png_uint_32)(alpha) + \
2661 extern PNG_EXPORT(png_uint_16,png_get_uint_16) PNGARG((png_bytep buf));
2676 * The parameter is declared unsigned int, not png_uint_16,