Lines Matching refs:p
98 static void incr_x(uint32_t** p, int row_pixels) { in incr_x() argument
100 *p = *p - row_pixels; in incr_x()
102 *p = *p + row_pixels; in incr_x()
104 *p = *p - 1; in incr_x()
106 *p = *p + 1; in incr_x()
111 static void incr_y(uint32_t** p, int row_pixels) { in incr_y() argument
113 *p = *p + 1; in incr_y()
115 *p = *p - 1; in incr_y()
117 *p = *p - row_pixels; in incr_y()
119 *p = *p + row_pixels; in incr_y()
247 uint32_t* p = PixelAt(gr_draw, x1, y1, row_pixels); in gr_fill() local
251 uint32_t* px = p; in gr_fill()
256 incr_y(&p, row_pixels); in gr_fill()