Home | History | Annotate | Download | only in libpng

Lines Matching defs:dp

439    png_bytep dp = row; /* destination pointer */
442 /* At the start sp will point to the first byte to copy and dp to where
458 sp += 2, ++dp;
462 *dp++ = *sp, sp += 2;
472 sp += 4, dp += 2;
475 *dp++ = *sp++, *dp++ = *sp, sp += 3;
498 sp += 4, dp += 3;
500 /* Note that the loop adds 3 to dp and 4 to sp each time. */
502 *dp++ = *sp++, *dp++ = *sp++, *dp++ = *sp, sp += 2;
512 sp += 8, dp += 6;
517 *dp++ = *sp++, *dp++ = *sp++;
518 *dp++ = *sp++, *dp++ = *sp++;
519 *dp++ = *sp++, *dp++ = *sp, sp += 3;
539 row_info->rowbytes = dp-row;