afirst 1830 pngread.c const int afirst = (image->format & PNG_FORMAT_FLAG_AFIRST) != 0 && afirst 1854 pngread.c entry[afirst ? 0 : 3] = (png_uint_16)alpha; afirst 1870 pngread.c entry[afirst + (2 ^ bgr)] = (png_uint_16)blue; afirst 1871 pngread.c entry[afirst + 1] = (png_uint_16)green; afirst 1872 pngread.c entry[afirst + bgr] = (png_uint_16)red; afirst 1876 pngread.c entry[1 ^ afirst] = (png_uint_16)alpha; afirst 1888 pngread.c entry[afirst] = (png_uint_16)green; afirst 1905 pngread.c entry[afirst ? 0 : 3] = (png_byte)alpha; afirst 1907 pngread.c entry[afirst + (2 ^ bgr)] = (png_byte)blue; afirst 1908 pngread.c entry[afirst + 1] = (png_byte)green; afirst 1909 pngread.c entry[afirst + bgr] = (png_byte)red; afirst 1913 pngread.c entry[1 ^ afirst] = (png_byte)alpha; afirst 1915 pngread.c entry[afirst] = (png_byte)green; afirst 1923 pngread.c # ifdef afirst afirst 1995 pngwrite.c const int afirst = (format & PNG_FORMAT_FLAG_AFIRST) != 0 && afirst 2044 pngwrite.c png_uint_16 alpha = entry[afirst ? 0 : channels-1]; afirst 2061 pngwrite.c palette[i].blue = png_unpremultiply(entry[afirst + (2 ^ bgr)], afirst 2063 pngwrite.c palette[i].green = png_unpremultiply(entry[afirst + 1], alpha, afirst 2065 pngwrite.c palette[i].red = png_unpremultiply(entry[afirst + bgr], alpha, afirst 2071 pngwrite.c png_unpremultiply(entry[afirst], alpha, reciprocal); afirst 2084 pngwrite.c tRNS[i] = entry[afirst ? 0 : 3]; afirst 2089 pngwrite.c palette[i].blue = entry[afirst + (2 ^ bgr)]; afirst 2090 pngwrite.c palette[i].green = entry[afirst + 1]; afirst 2091 pngwrite.c palette[i].red = entry[afirst + bgr]; afirst 2095 pngwrite.c tRNS[i] = entry[1 ^ afirst]; afirst 2101 pngwrite.c entry[afirst]; afirst 2110 pngwrite.c # ifdef afirst