Lines Matching defs:dp
497 png_bytep dp = row; /* destination pointer */
500 /* At the start sp will point to the first byte to copy and dp to where
516 sp += 2, ++dp;
520 *dp++ = *sp, sp += 2;
530 sp += 4, dp += 2;
533 *dp++ = *sp++, *dp++ = *sp, sp += 3;
556 sp += 4, dp += 3;
558 /* Note that the loop adds 3 to dp and 4 to sp each time. */
560 *dp++ = *sp++, *dp++ = *sp++, *dp++ = *sp, sp += 2;
570 sp += 8, dp += 6;
575 *dp++ = *sp++, *dp++ = *sp++;
576 *dp++ = *sp++, *dp++ = *sp++;
577 *dp++ = *sp++, *dp++ = *sp, sp += 3;
597 row_info->rowbytes = dp-row;