Lines Matching defs:dstptr
1202 register unsigned char *srcptr, *dstptr;
1204 dstptr = char_grayscale;
1208 *dstptr++ = (srcptr[col >> 3] & mask[col & 0x7]) ? 255 : 0;
1210 dstptr++; /* Skip scratch column in dest */
1225 dstptr = char_grayscale + (width + 1) * height; /* scratch */
1237 *dstptr++ = sum / (left_size + right_width + 1);
1247 *dstptr++ = sum / box_x;
1255 *dstptr++ = sum / (left_width + right_size);
1279 dstptr = char_grayscale + width; /* scratch */
1293 *dstptr = sum / (top_size + bottom_height + 1);
1294 dstptr += width + 1;
1304 *dstptr = sum / box_y;
1305 dstptr += width + 1;
1313 *dstptr = sum / (top_height + bottom_size);
1314 dstptr += width + 1;
1321 dstptr = char_grayscale + col;
1325 *dstptr = *srcptr;
1326 dstptr += width + 1;