Home | History | Annotate | Download | only in lpng_v163

Lines Matching defs:dp

487    png_bytep dp = row; /* destination pointer */

490 /* At the start sp will point to the first byte to copy and dp to where
506 sp += 2, ++dp;
510 *dp
520 sp += 4, dp += 2;
523 *dp++ = *sp++, *dp++ = *sp, sp += 3;
546 sp += 4, dp += 3;
548 /* Note that the loop adds 3 to dp and 4 to sp each time. */
550 *dp++ = *sp++, *dp++ = *sp++, *dp++ = *sp, sp += 2;
560 sp += 8, dp += 6;
565 *dp++ = *sp++, *dp++ = *sp++;
566 *dp++ = *sp++, *dp++ = *sp++;
567 *dp++ = *sp++, *dp++ = *sp, sp += 3;
587 row_info->rowbytes = dp-row;