Searched refs:next_line (Results 1 - 11 of 11) sorted by relevance

/linux-master/drivers/video/fbdev/
H A Datafb.h5 void atafb_mfb_copyarea(struct fb_info *info, u_long next_line, int sy, int sx, int dy,
7 void atafb_mfb_fillrect(struct fb_info *info, u_long next_line, u32 color,
9 void atafb_mfb_linefill(struct fb_info *info, u_long next_line,
13 void atafb_iplan2p2_copyarea(struct fb_info *info, u_long next_line, int sy, int sx, int dy,
15 void atafb_iplan2p2_fillrect(struct fb_info *info, u_long next_line, u32 color,
17 void atafb_iplan2p2_linefill(struct fb_info *info, u_long next_line,
21 void atafb_iplan2p4_copyarea(struct fb_info *info, u_long next_line, int sy, int sx, int dy,
23 void atafb_iplan2p4_fillrect(struct fb_info *info, u_long next_line, u32 color,
25 void atafb_iplan2p4_linefill(struct fb_info *info, u_long next_line,
29 void atafb_iplan2p8_copyarea(struct fb_info *info, u_long next_line, in
[all...]
H A Datafb_mfb.c23 void atafb_mfb_copyarea(struct fb_info *info, u_long next_line, argument
30 if (sx == 0 && dx == 0 && width == next_line) {
35 src = (u8 *)info->screen_base + sy * next_line + (sx >> 3);
36 dest = (u8 *)info->screen_base + dy * next_line + (dx >> 3);
39 src += next_line;
40 dest += next_line;
43 src = (u8 *)info->screen_base + (sy + height - 1) * next_line + (sx >> 3);
44 dest = (u8 *)info->screen_base + (dy + height - 1) * next_line + (dx >> 3);
47 src -= next_line;
48 dest -= next_line;
53 atafb_mfb_fillrect(struct fb_info *info, u_long next_line, u32 color, int sy, int sx, int height, int width) argument
76 atafb_mfb_linefill(struct fb_info *info, u_long next_line, int dy, int dx, u32 width, const u8 *data, u32 bgcolor, u32 fgcolor) argument
[all...]
H A Datafb_iplan2p4.c23 void atafb_iplan2p4_copyarea(struct fb_info *info, u_long next_line, argument
50 src = (u8 *)info->screen_base + sy * next_line + (sx & ~15) / (8 / BPL);
51 dst = (u8 *)info->screen_base + dy * next_line + (dx & ~15) / (8 / BPL);
53 memmove32_col(dst, src, 0xff00ff, height, next_line - BPL * 2);
63 l = next_line - w * 4;
73 0xff00ff00, height, next_line - BPL * 2);
75 src = (u8 *)info->screen_base + (sy - 1) * next_line + ((sx + width + 8) & ~15) / (8 / BPL);
76 dst = (u8 *)info->screen_base + (dy - 1) * next_line + ((dx + width + 8) & ~15) / (8 / BPL);
81 memmove32_col(dst, src, 0xff00ff00, colsize, -next_line - BPL * 2);
89 l = next_line
206 atafb_iplan2p4_fillrect(struct fb_info *info, u_long next_line, u32 color, int sy, int sx, int height, int width) argument
252 atafb_iplan2p4_linefill(struct fb_info *info, u_long next_line, int dy, int dx, u32 width, const u8 *data, u32 bgcolor, u32 fgcolor) argument
[all...]
H A Datafb_iplan2p2.c23 void atafb_iplan2p2_copyarea(struct fb_info *info, u_long next_line, argument
50 src = (u8 *)info->screen_base + sy * next_line + (sx & ~15) / (8 / BPL);
51 dst = (u8 *)info->screen_base + dy * next_line + (dx & ~15) / (8 / BPL);
53 memmove32_col(dst, src, 0xff00ff, height, next_line - BPL * 2);
63 l = next_line - w * 4;
73 0xff00ff00, height, next_line - BPL * 2);
75 src = (u8 *)info->screen_base + (sy - 1) * next_line + ((sx + width + 8) & ~15) / (8 / BPL);
76 dst = (u8 *)info->screen_base + (dy - 1) * next_line + ((dx + width + 8) & ~15) / (8 / BPL);
81 memmove32_col(dst, src, 0xff00ff00, colsize, -next_line - BPL * 2);
89 l = next_line
192 atafb_iplan2p2_fillrect(struct fb_info *info, u_long next_line, u32 color, int sy, int sx, int height, int width) argument
238 atafb_iplan2p2_linefill(struct fb_info *info, u_long next_line, int dy, int dx, u32 width, const u8 *data, u32 bgcolor, u32 fgcolor) argument
[all...]
H A Datafb_iplan2p8.c30 void atafb_iplan2p8_copyarea(struct fb_info *info, u_long next_line, argument
57 src = (u8 *)info->screen_base + sy * next_line + (sx & ~15) / (8 / BPL);
58 dst = (u8 *)info->screen_base + dy * next_line + (dx & ~15) / (8 / BPL);
60 memmove32_col(dst, src, 0xff00ff, height, next_line - BPL * 2);
70 l = next_line - w * 4;
80 0xff00ff00, height, next_line - BPL * 2);
82 src = (u8 *)info->screen_base + (sy - 1) * next_line + ((sx + width + 8) & ~15) / (8 / BPL);
83 dst = (u8 *)info->screen_base + (dy - 1) * next_line + ((dx + width + 8) & ~15) / (8 / BPL);
88 memmove32_col(dst, src, 0xff00ff00, colsize, -next_line - BPL * 2);
96 l = next_line
241 atafb_iplan2p8_fillrect(struct fb_info *info, u_long next_line, u32 color, int sy, int sx, int height, int width) argument
287 atafb_iplan2p8_linefill(struct fb_info *info, u_long next_line, int dy, int dx, u32 width, const u8 *data, u32 bgcolor, u32 fgcolor) argument
[all...]
H A Datafb.c99 u_long next_line; member in struct:atafb_par
574 fix->line_length = par->next_line;
651 par->next_line = linelen;
875 fix->line_length = par->next_line;
1344 par->next_line = linelen;
1793 fix->line_length = par->next_line;
1851 par->next_line = linelen;
2111 fix->line_length = par->next_line;
2127 par->next_line = external_xres_virtual * external_depth / 8;
2443 atafb_mfb_fillrect(info, par->next_line, rec
[all...]
H A Damifb.c736 u_long next_line; /* modulo for next line */ member in struct:amifb_par
1446 par->next_line = par->bpp * par->next_plane;
1447 if (par->next_line * par->vyres > info->fix.smem_len) {
1452 par->next_line = div8(upx(16 << maxfmode, par->vxres));
1453 par->next_plane = par->vyres * par->next_line;
1630 mod = par->next_line - div8(fsize>>clk_shift);
1636 par->bpl2mod += par->next_line;
1644 par->next_line * par->yoffset + move;
1651 par->bplpt0wrap += par->next_line;
1658 par->bplpt0 += par->next_line;
[all...]
/linux-master/kernel/
H A Duser_namespace.c934 char *kbuf, *pos, *next_line; local
983 for (; pos; pos = next_line) {
986 next_line = strchr(pos, '\n');
987 if (next_line) {
988 *next_line = '\0';
989 next_line++;
990 if (*next_line == '\0')
991 next_line = NULL;
1033 (next_line != NULL))
/linux-master/scripts/dtc/
H A Ddt_to_config560 while ($next_line = <MAKEFILE_FILE>) {
572 chomp($next_line);
573 $line = $line . $next_line;
574 if ($next_line =~ /\\$/) {
/linux-master/fs/proc/
H A Dbase.c1580 char *kbuf = NULL, *pos, *next_line; local
1596 for (pos = kbuf; pos; pos = next_line) {
1602 next_line = strchr(pos, '\n');
1603 if (next_line) {
1604 *next_line = '\0';
1605 next_line++;
1606 if (*next_line == '\0')
1607 next_line = NULL;
1627 if (next_line)
1628 count = next_line
[all...]
/linux-master/tools/lib/bpf/
H A Dlibbpf.c7647 char *prev_line, *cur_line, *next_line; local
7655 next_line = buf + log_sz - 1;
7657 for (i = 0; i < max_last_line_cnt; i++, next_line = cur_line) {
7658 cur_line = find_prev_line(buf, next_line);
7669 prev_line, cur_line, next_line);
7678 prev_line, cur_line, next_line);
7687 prev_line, cur_line, next_line);

Completed in 505 milliseconds