Home
last modified time | relevance | path

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

/linux-6.1.9/drivers/video/fbdev/
Datafb_mfb.c23 void atafb_mfb_copyarea(struct fb_info *info, u_long next_line, in atafb_mfb_copyarea() argument
30 if (sx == 0 && dx == 0 && width == next_line) { in atafb_mfb_copyarea()
35 src = (u8 *)info->screen_base + sy * next_line + (sx >> 3); in atafb_mfb_copyarea()
36 dest = (u8 *)info->screen_base + dy * next_line + (dx >> 3); in atafb_mfb_copyarea()
39 src += next_line; in atafb_mfb_copyarea()
40 dest += next_line; in atafb_mfb_copyarea()
43 src = (u8 *)info->screen_base + (sy + height - 1) * next_line + (sx >> 3); in atafb_mfb_copyarea()
44 dest = (u8 *)info->screen_base + (dy + height - 1) * next_line + (dx >> 3); in atafb_mfb_copyarea()
47 src -= next_line; in atafb_mfb_copyarea()
48 dest -= next_line; in atafb_mfb_copyarea()
[all …]
Datafb_iplan2p2.c23 void atafb_iplan2p2_copyarea(struct fb_info *info, u_long next_line, in atafb_iplan2p2_copyarea() argument
50 src = (u8 *)info->screen_base + sy * next_line + (sx & ~15) / (8 / BPL); in atafb_iplan2p2_copyarea()
51 dst = (u8 *)info->screen_base + dy * next_line + (dx & ~15) / (8 / BPL); in atafb_iplan2p2_copyarea()
53 memmove32_col(dst, src, 0xff00ff, height, next_line - BPL * 2); in atafb_iplan2p2_copyarea()
63 l = next_line - w * 4; in atafb_iplan2p2_copyarea()
73 0xff00ff00, height, next_line - BPL * 2); in atafb_iplan2p2_copyarea()
75 src = (u8 *)info->screen_base + (sy - 1) * next_line + ((sx + width + 8) & ~15) / (8 / BPL); in atafb_iplan2p2_copyarea()
76 dst = (u8 *)info->screen_base + (dy - 1) * next_line + ((dx + width + 8) & ~15) / (8 / BPL); in atafb_iplan2p2_copyarea()
81 memmove32_col(dst, src, 0xff00ff00, colsize, -next_line - BPL * 2); in atafb_iplan2p2_copyarea()
89 l = next_line - w * 4; in atafb_iplan2p2_copyarea()
[all …]
Datafb_iplan2p4.c23 void atafb_iplan2p4_copyarea(struct fb_info *info, u_long next_line, in atafb_iplan2p4_copyarea() argument
50 src = (u8 *)info->screen_base + sy * next_line + (sx & ~15) / (8 / BPL); in atafb_iplan2p4_copyarea()
51 dst = (u8 *)info->screen_base + dy * next_line + (dx & ~15) / (8 / BPL); in atafb_iplan2p4_copyarea()
53 memmove32_col(dst, src, 0xff00ff, height, next_line - BPL * 2); in atafb_iplan2p4_copyarea()
63 l = next_line - w * 4; in atafb_iplan2p4_copyarea()
73 0xff00ff00, height, next_line - BPL * 2); in atafb_iplan2p4_copyarea()
75 src = (u8 *)info->screen_base + (sy - 1) * next_line + ((sx + width + 8) & ~15) / (8 / BPL); in atafb_iplan2p4_copyarea()
76 dst = (u8 *)info->screen_base + (dy - 1) * next_line + ((dx + width + 8) & ~15) / (8 / BPL); in atafb_iplan2p4_copyarea()
81 memmove32_col(dst, src, 0xff00ff00, colsize, -next_line - BPL * 2); in atafb_iplan2p4_copyarea()
89 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.c30 void atafb_iplan2p8_copyarea(struct fb_info *info, u_long next_line, in atafb_iplan2p8_copyarea() argument
57 src = (u8 *)info->screen_base + sy * next_line + (sx & ~15) / (8 / BPL); in atafb_iplan2p8_copyarea()
58 dst = (u8 *)info->screen_base + dy * next_line + (dx & ~15) / (8 / BPL); in atafb_iplan2p8_copyarea()
60 memmove32_col(dst, src, 0xff00ff, height, next_line - BPL * 2); in atafb_iplan2p8_copyarea()
70 l = next_line - w * 4; in atafb_iplan2p8_copyarea()
80 0xff00ff00, height, next_line - BPL * 2); in atafb_iplan2p8_copyarea()
82 src = (u8 *)info->screen_base + (sy - 1) * next_line + ((sx + width + 8) & ~15) / (8 / BPL); in atafb_iplan2p8_copyarea()
83 dst = (u8 *)info->screen_base + (dy - 1) * next_line + ((dx + width + 8) & ~15) / (8 / BPL); in atafb_iplan2p8_copyarea()
88 memmove32_col(dst, src, 0xff00ff00, colsize, -next_line - BPL * 2); in atafb_iplan2p8_copyarea()
96 l = next_line - w * 4; in atafb_iplan2p8_copyarea()
[all …]
Damifb.c736 u_long next_line; /* modulo for next line */ member
1446 par->next_line = par->bpp * par->next_plane; in ami_decode_var()
1447 if (par->next_line * par->vyres > info->fix.smem_len) { in ami_decode_var()
1452 par->next_line = div8(upx(16 << maxfmode, par->vxres)); in ami_decode_var()
1453 par->next_plane = par->vyres * par->next_line; in ami_decode_var()
1630 mod = par->next_line - div8(fsize>>clk_shift); in ami_update_par()
1636 par->bpl2mod += par->next_line; in ami_update_par()
1644 par->next_line * par->yoffset + move; in ami_update_par()
1651 par->bplpt0wrap += par->next_line; in ami_update_par()
1658 par->bplpt0 += par->next_line; in ami_update_par()
[all …]
Datafb.c99 u_long next_line; member
574 fix->line_length = par->next_line; in tt_encode_fix()
651 par->next_line = linelen; in tt_decode_var()
875 fix->line_length = par->next_line; in falcon_encode_fix()
1344 par->next_line = linelen; in falcon_decode_var()
1793 fix->line_length = par->next_line; in stste_encode_fix()
1851 par->next_line = linelen; in stste_decode_var()
2111 fix->line_length = par->next_line; in ext_encode_fix()
2127 par->next_line = external_xres_virtual * external_depth / 8; in ext_decode_var()
2443 atafb_mfb_fillrect(info, par->next_line, rect->color, in atafb_fillrect()
[all …]
/linux-6.1.9/kernel/
Duser_namespace.c931 char *kbuf = NULL, *pos, *next_line; in map_write() local
980 for (; pos; pos = next_line) { in map_write()
983 next_line = strchr(pos, '\n'); in map_write()
984 if (next_line) { in map_write()
985 *next_line = '\0'; in map_write()
986 next_line++; in map_write()
987 if (*next_line == '\0') in map_write()
988 next_line = NULL; in map_write()
1030 (next_line != NULL)) in map_write()
/linux-6.1.9/tools/testing/selftests/rcutorture/formal/srcu-cbmc/
Dmodify_srcu.awk67 ret = getline next_line;
80 $0 = $0 "\n" next_line;
/linux-6.1.9/scripts/dtc/
Ddt_to_config560 while ($next_line = <MAKEFILE_FILE>) {
572 chomp($next_line);
573 $line = $line . $next_line;
574 if ($next_line =~ /\\$/) {
/linux-6.1.9/fs/proc/
Dbase.c1582 char *kbuf = NULL, *pos, *next_line; in timens_offsets_write() local
1598 for (pos = kbuf; pos; pos = next_line) { in timens_offsets_write()
1604 next_line = strchr(pos, '\n'); in timens_offsets_write()
1605 if (next_line) { in timens_offsets_write()
1606 *next_line = '\0'; in timens_offsets_write()
1607 next_line++; in timens_offsets_write()
1608 if (*next_line == '\0') in timens_offsets_write()
1609 next_line = NULL; in timens_offsets_write()
1629 if (next_line) in timens_offsets_write()
1630 count = next_line - kbuf; in timens_offsets_write()
/linux-6.1.9/tools/lib/bpf/
Dlibbpf.c7012 char *prev_line, *cur_line, *next_line; in fixup_verifier_log() local
7020 next_line = buf + log_sz - 1; in fixup_verifier_log()
7022 for (i = 0; i < max_last_line_cnt; i++, next_line = cur_line) { in fixup_verifier_log()
7023 cur_line = find_prev_line(buf, next_line); in fixup_verifier_log()
7034 prev_line, cur_line, next_line); in fixup_verifier_log()
7042 prev_line, cur_line, next_line); in fixup_verifier_log()