Lines Matching refs:dstptr
1205 register unsigned char *srcptr, *dstptr;
1207 dstptr = char_grayscale;
1211 *dstptr++ = (srcptr[col >> 3] & mask[col & 0x7]) ? 255 : 0;
1213 dstptr++; /* Skip scratch column in dest */
1228 dstptr = char_grayscale + (width + 1) * height; /* scratch */
1240 *dstptr++ = sum / (left_size + right_width + 1);
1250 *dstptr++ = sum / box_x;
1258 *dstptr++ = sum / (left_width + right_size);
1282 dstptr = char_grayscale + width; /* scratch */
1296 *dstptr = sum / (top_size + bottom_height + 1);
1297 dstptr += width + 1;
1307 *dstptr = sum / box_y;
1308 dstptr += width + 1;
1316 *dstptr = sum / (top_height + bottom_size);
1317 dstptr += width + 1;
1324 dstptr = char_grayscale + col;
1328 *dstptr = *srcptr;
1329 dstptr += width + 1;