Home | History | Annotate | Download | only in libpng

Lines Matching refs:png_uint_16

430  *        "png_uint_16 year" in png_time_struct.
630 * be png_byte or png_uint_16 (as defined below).
644 png_uint_16 red; /* for use in red green blue files */
645 png_uint_16 green;
646 png_uint_16 blue;
647 png_uint_16 gray; /* for use in grayscale files */
669 png_uint_16 red;
670 png_uint_16 green;
671 png_uint_16 blue;
672 png_uint_16 alpha;
673 png_uint_16 frequency;
744 png_uint_16 year; /* full year, as in, 1995 */
867 png_uint_16 num_palette PNG_DEPSTRUCT; /* number of color entries in "palette" (PLTE) */
868 png_uint_16 num_trans PNG_DEPSTRUCT; /* number of transparent palette color (tRNS) */
1367 png_uint_16 num_palette PNG_DEPSTRUCT; /* number of color entries in palette */
1368 png_uint_16 num_trans PNG_DEPSTRUCT; /* number of transparency values */
1387 png_uint_16 filler PNG_DEPSTRUCT; /* filler bytes for pixel expansion */
1470 png_uint_16 offset_table_number PNG_DEPSTRUCT;
1471 png_uint_16 offset_table_count PNG_DEPSTRUCT;
1472 png_uint_16 offset_table_count_free PNG_DEPSTRUCT;
1518 png_uint_16 rgb_to_gray_red_coeff PNG_DEPSTRUCT;
1519 png_uint_16 rgb_to_gray_green_coeff PNG_DEPSTRUCT;
1520 png_uint_16 rgb_to_gray_blue_coeff PNG_DEPSTRUCT;
2905 { png_uint_16 temp = (png_uint_16)((png_uint_16)(fg) * (png_uint_16)(alpha) \
2906 + (png_uint_16)(bg)*(png_uint_16)(255 - \
2907 (png_uint_16)(alpha)) + (png_uint_16)128); \
2914 (composite) = (png_uint_16)((temp + (temp >> 16)) >> 16); }
2919 (composite) = (png_byte)(((png_uint_16)(fg) * (png_uint_16)(alpha) + \
2920 (png_uint_16)(bg) * (png_uint_16)(255 - (png_uint_16)(alpha)) + \
2921 (png_uint_16)127) / 255)
2924 (composite) = (png_uint_16)(((png_uint_32)(fg) * (png_uint_32)(alpha) + \
2944 extern PNG_EXPORT(png_uint_16,png_get_uint_16) PNGARG((png_bytep buf));
2959 * The parameter is declared unsigned int, not png_uint_16,