Home
last modified time | relevance | path

Searched refs:next_line (Results 1 – 10 of 10) sorted by relevance

/Linux-v4.19/drivers/video/fbdev/
Datafb_mfb.c24 void atafb_mfb_copyarea(struct fb_info *info, u_long next_line, in atafb_mfb_copyarea() argument
31 if (sx == 0 && dx == 0 && width == next_line) { in atafb_mfb_copyarea()
36 src = (u8 *)info->screen_base + sy * next_line + (sx >> 3); in atafb_mfb_copyarea()
37 dest = (u8 *)info->screen_base + dy * next_line + (dx >> 3); in atafb_mfb_copyarea()
40 src += next_line; in atafb_mfb_copyarea()
41 dest += next_line; in atafb_mfb_copyarea()
44 src = (u8 *)info->screen_base + (sy + height - 1) * next_line + (sx >> 3); in atafb_mfb_copyarea()
45 dest = (u8 *)info->screen_base + (dy + height - 1) * next_line + (dx >> 3); in atafb_mfb_copyarea()
48 src -= next_line; in atafb_mfb_copyarea()
49 dest -= next_line; in atafb_mfb_copyarea()
[all …]
Datafb_iplan2p2.c24 void atafb_iplan2p2_copyarea(struct fb_info *info, u_long next_line, in atafb_iplan2p2_copyarea() argument
51 src = (u8 *)info->screen_base + sy * next_line + (sx & ~15) / (8 / BPL); in atafb_iplan2p2_copyarea()
52 dst = (u8 *)info->screen_base + dy * next_line + (dx & ~15) / (8 / BPL); in atafb_iplan2p2_copyarea()
54 memmove32_col(dst, src, 0xff00ff, height, next_line - BPL * 2); in atafb_iplan2p2_copyarea()
64 l = next_line - w * 4; in atafb_iplan2p2_copyarea()
74 0xff00ff00, height, next_line - BPL * 2); in atafb_iplan2p2_copyarea()
76 src = (u8 *)info->screen_base + (sy - 1) * next_line + ((sx + width + 8) & ~15) / (8 / BPL); in atafb_iplan2p2_copyarea()
77 dst = (u8 *)info->screen_base + (dy - 1) * next_line + ((dx + width + 8) & ~15) / (8 / BPL); in atafb_iplan2p2_copyarea()
82 memmove32_col(dst, src, 0xff00ff00, colsize, -next_line - BPL * 2); in atafb_iplan2p2_copyarea()
90 l = next_line - w * 4; in atafb_iplan2p2_copyarea()
[all …]
Datafb_iplan2p4.c24 void atafb_iplan2p4_copyarea(struct fb_info *info, u_long next_line, in atafb_iplan2p4_copyarea() argument
51 src = (u8 *)info->screen_base + sy * next_line + (sx & ~15) / (8 / BPL); in atafb_iplan2p4_copyarea()
52 dst = (u8 *)info->screen_base + dy * next_line + (dx & ~15) / (8 / BPL); in atafb_iplan2p4_copyarea()
54 memmove32_col(dst, src, 0xff00ff, height, next_line - BPL * 2); in atafb_iplan2p4_copyarea()
64 l = next_line - w * 4; in atafb_iplan2p4_copyarea()
74 0xff00ff00, height, next_line - BPL * 2); in atafb_iplan2p4_copyarea()
76 src = (u8 *)info->screen_base + (sy - 1) * next_line + ((sx + width + 8) & ~15) / (8 / BPL); in atafb_iplan2p4_copyarea()
77 dst = (u8 *)info->screen_base + (dy - 1) * next_line + ((dx + width + 8) & ~15) / (8 / BPL); in atafb_iplan2p4_copyarea()
82 memmove32_col(dst, src, 0xff00ff00, colsize, -next_line - BPL * 2); in atafb_iplan2p4_copyarea()
90 l = next_line - w * 4; in atafb_iplan2p4_copyarea()
[all …]
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, int sy, int sx, int dy,
[all …]
Datafb_iplan2p8.c31 void atafb_iplan2p8_copyarea(struct fb_info *info, u_long next_line, in atafb_iplan2p8_copyarea() argument
58 src = (u8 *)info->screen_base + sy * next_line + (sx & ~15) / (8 / BPL); in atafb_iplan2p8_copyarea()
59 dst = (u8 *)info->screen_base + dy * next_line + (dx & ~15) / (8 / BPL); in atafb_iplan2p8_copyarea()
61 memmove32_col(dst, src, 0xff00ff, height, next_line - BPL * 2); in atafb_iplan2p8_copyarea()
71 l = next_line - w * 4; in atafb_iplan2p8_copyarea()
81 0xff00ff00, height, next_line - BPL * 2); in atafb_iplan2p8_copyarea()
83 src = (u8 *)info->screen_base + (sy - 1) * next_line + ((sx + width + 8) & ~15) / (8 / BPL); in atafb_iplan2p8_copyarea()
84 dst = (u8 *)info->screen_base + (dy - 1) * next_line + ((dx + width + 8) & ~15) / (8 / BPL); in atafb_iplan2p8_copyarea()
89 memmove32_col(dst, src, 0xff00ff00, colsize, -next_line - BPL * 2); in atafb_iplan2p8_copyarea()
97 l = next_line - w * 4; in atafb_iplan2p8_copyarea()
[all …]
Datafb.c123 u_long next_line; member
608 fix->line_length = par->next_line; in tt_encode_fix()
685 par->next_line = linelen; in tt_decode_var()
909 fix->line_length = par->next_line; in falcon_encode_fix()
1385 par->next_line = linelen; in falcon_decode_var()
1834 fix->line_length = par->next_line; in stste_encode_fix()
1892 par->next_line = linelen; in stste_decode_var()
2152 fix->line_length = par->next_line; in ext_encode_fix()
2168 par->next_line = external_xres_virtual * external_depth / 8; in ext_decode_var()
2526 atafb_mfb_fillrect(info, par->next_line, rect->color, in atafb_fillrect()
[all …]
Damifb.c730 u_long next_line; /* modulo for next line */ member
1440 par->next_line = par->bpp * par->next_plane; in ami_decode_var()
1441 if (par->next_line * par->vyres > info->fix.smem_len) { in ami_decode_var()
1446 par->next_line = div8(upx(16 << maxfmode, par->vxres)); in ami_decode_var()
1447 par->next_plane = par->vyres * par->next_line; in ami_decode_var()
1624 mod = par->next_line - div8(fsize>>clk_shift); in ami_update_par()
1630 par->bpl2mod += par->next_line; in ami_update_par()
1638 par->next_line * par->yoffset + move; in ami_update_par()
1645 par->bplpt0wrap += par->next_line; in ami_update_par()
1652 par->bplpt0 += par->next_line; in ami_update_par()
[all …]
/Linux-v4.19/kernel/
Duser_namespace.c861 char *kbuf = NULL, *pos, *next_line; in map_write() local
910 for (; pos; pos = next_line) { in map_write()
913 next_line = strchr(pos, '\n'); in map_write()
914 if (next_line) { in map_write()
915 *next_line = '\0'; in map_write()
916 next_line++; in map_write()
917 if (*next_line == '\0') in map_write()
918 next_line = NULL; in map_write()
960 (next_line != NULL)) in map_write()
/Linux-v4.19/tools/testing/selftests/rcutorture/formal/srcu-cbmc/
Dmodify_srcu.awk67 ret = getline next_line;
80 $0 = $0 "\n" next_line;
/Linux-v4.19/scripts/dtc/
Ddt_to_config561 while ($next_line = <MAKEFILE_FILE>) {
573 chomp($next_line);
574 $line = $line . $next_line;
575 if ($next_line =~ /\\$/) {