Lines Matching defs:last
3 * Last changed in libpng 1.6.2 [April 25, 2013]
1233 * Notice the last statement of the assumption gives an equation in three of
1278 * In the last equation color-z is (1 - color-x - color-y) so we can add all
3751 png_uint_32 last;
3765 * pow(out,g) is an *input* value. 'last' is the last input value set.
3776 * 128.5 (for 0.5) and step by 257, for a total of 254 values (the last
3777 * entries are filled with 255). Start i at 128 and fill all 'last'
3780 last = 0;
3792 while (last < bound)
3794 table[last & (0xffU >> shift)][last >> (8U - shift)] = out;
3795 last++;
3800 while (last < (num << 8))
3802 table[last & (0xff >> shift)][last >> (8U - shift)] = 65535U;
3803 last++;