Lines Matching refs:pbytes
59 inline void fill_pixel_and_goto_next(void **dstp, u32 value, int pbytes, int step) in fill_pixel_and_goto_next() argument
63 if (pbytes == 4) { in fill_pixel_and_goto_next()
67 if (pbytes == 2) { in fill_pixel_and_goto_next()
71 if (pbytes == 1) { in fill_pixel_and_goto_next()
81 int step, line_step, pbytes, bitcount, width_remainder, ret; in fill_char_vertically() local
88 pbytes = VNBYTES(vid_priv->bpix); in fill_char_vertically()
90 step = -pbytes; in fill_char_vertically()
93 step = pbytes; in fill_char_vertically()
119 pbytes, in fill_char_vertically()
134 int step, line_step, pbytes, bitcount = 8, width_remainder, ret; in fill_char_horizontally() local
142 pbytes = VNBYTES(vid_priv->bpix); in fill_char_horizontally()
144 step = -pbytes; in fill_char_horizontally()
147 step = pbytes; in fill_char_horizontally()
168 pbytes, in fill_char_horizontally()
182 int step, line_step, pbytes, ret; in draw_cursor_vertically() local
190 pbytes = VNBYTES(vid_priv->bpix); in draw_cursor_vertically()
192 step = -pbytes; in draw_cursor_vertically()
195 step = pbytes; in draw_cursor_vertically()
204 fill_pixel_and_goto_next(&dst, value, pbytes, step); in draw_cursor_vertically()