Home | History | Annotate | Download | only in libpng-1.2.19

Lines Matching full:pixel_bytes

255                png_size_t pixel_bytes;
260 pixel_bytes = (png_ptr->row_info.pixel_depth >> 3);
262 pixel_bytes;
263 dstptr = row + offset_table[png_ptr->pass]*pixel_bytes;
264 initial_val = offset_table[png_ptr->pass]*pixel_bytes;
265 final_val = png_ptr->width*pixel_bytes;
266 incr1 = (disp)*pixel_bytes;
269 png_memcpy(dstptr, srcptr, pixel_bytes);
399 png_size_t pixel_bytes;
404 pixel_bytes = (png_ptr->row_info.pixel_depth >> 3);
406 pixel_bytes;
407 dstptr = row + offset_table[png_ptr->pass]*pixel_bytes;
408 initial_val = offset_table[png_ptr->pass]*pixel_bytes;
409 final_val = png_ptr->width*pixel_bytes;
410 incr1 = (disp)*pixel_bytes;
413 png_memcpy(dstptr, srcptr, pixel_bytes);
505 png_size_t pixel_bytes;
510 pixel_bytes = (png_ptr->row_info.pixel_depth >> 3);
512 pixel_bytes;
513 dstptr = row + offset_table[png_ptr->pass]*pixel_bytes;
514 initial_val = offset_table[png_ptr->pass]*pixel_bytes;
515 final_val = png_ptr->width*pixel_bytes;
516 incr1 = (disp)*pixel_bytes;
519 png_memcpy(dstptr, srcptr, pixel_bytes);
787 png_size_t pixel_bytes;
792 pixel_bytes = (png_ptr->row_info.pixel_depth >> 3);
794 pixel_bytes;
795 dstptr = row + offset_table[png_ptr->pass]*pixel_bytes;
796 initial_val = offset_table[png_ptr->pass]*pixel_bytes;
797 final_val = png_ptr->width*pixel_bytes;
798 incr1 = (disp)*pixel_bytes;
801 png_memcpy(dstptr, srcptr, pixel_bytes);
951 png_size_t pixel_bytes;
956 pixel_bytes = (png_ptr->row_info.pixel_depth >> 3);
958 pixel_bytes;
959 dstptr = row + offset_table[png_ptr->pass]*pixel_bytes;
960 initial_val = offset_table[png_ptr->pass]*pixel_bytes;
961 final_val = png_ptr->width*pixel_bytes;
962 incr1 = (disp)*pixel_bytes;
965 png_memcpy(dstptr, srcptr, pixel_bytes);
978 png_size_t pixel_bytes;
984 pixel_bytes = (png_ptr->row_info.pixel_depth >> 3);
986 pixel_bytes;
987 dp = row + offset_table[png_ptr->pass]*pixel_bytes;
988 initial_val = offset_table[png_ptr->pass]*pixel_bytes;
989 final_val = png_ptr->width*pixel_bytes;
990 incr1 = (disp)*pixel_bytes;
993 png_memcpy(dp, sptr, pixel_bytes);
1213 png_size_t pixel_bytes;
1216 pixel_bytes = (row_info->pixel_depth >> 3);
1218 sptr = row + (width - 1) * pixel_bytes;
1219 dp = row + (final_width - 1) * pixel_bytes;
1232 if (pixel_bytes == 3)
1295 sub edi, 9 // (png_pass_inc[pass] - 1)*pixel_bytes
1323 sub edi, 21 // (png_pass_inc[pass] - 1)*pixel_bytes
1351 } /* end of pixel_bytes == 3 */
1353 else if (pixel_bytes == 1)
1486 * pixel_bytes == 1 -- GR-P
1491 * png_memcpy(v, sptr, pixel_bytes);
1494 * png_memcpy(dp, v, pixel_bytes);
1495 * dp -= pixel_bytes;
1497 * sptr -= pixel_bytes;
1507 } /* end of pixel_bytes == 1 */
1509 else if (pixel_bytes == 2)
1642 } /* end of pixel_bytes == 2 */
1644 else if (pixel_bytes == 4)
1784 } /* end of pixel_bytes == 4 */
1786 else if (pixel_bytes == 6)
1800 } /* end of pixel_bytes == 6 */
1808 png_memcpy(v, sptr, pixel_bytes);
1811 png_memcpy(dp, v, pixel_bytes);
1812 dp -= pixel_bytes;
1814 sptr-= pixel_bytes;
1822 if (pixel_bytes == 1)
1832 else if (pixel_bytes == 3)
1838 png_memcpy(v, sptr, pixel_bytes);
1841 png_memcpy(dp, v, pixel_bytes);
1842 dp -= pixel_bytes;
1844 sptr -= pixel_bytes;
1847 else if (pixel_bytes == 2)
1853 png_memcpy(v, sptr, pixel_bytes);
1856 png_memcpy(dp, v, pixel_bytes);
1857 dp -= pixel_bytes;
1859 sptr -= pixel_bytes;
1862 else if (pixel_bytes == 4)
1868 png_memcpy(v, sptr, pixel_bytes);
1871 png_memcpy(dp, v, pixel_bytes);
1872 dp -= pixel_bytes;
1874 sptr -= pixel_bytes;
1877 else if (pixel_bytes == 6)
1883 png_memcpy(v, sptr, pixel_bytes);
1886 png_memcpy(dp, v, pixel_bytes);
1887 dp -= pixel_bytes;
1889 sptr -= pixel_bytes;
1898 png_memcpy(v, sptr, pixel_bytes);
1901 png_memcpy(dp, v, pixel_bytes);
1902 dp -= pixel_bytes;
1904 sptr -= pixel_bytes;