Home
last modified time | relevance | path

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

/OK3568_Linux_fs/kernel/drivers/video/fbdev/
H A 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 …]
H A 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 …]
H A 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 …]
H A 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 …]
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, int sy, int sx, int dy,
[all …]
H A Datafb.c101 u_long next_line; member
586 fix->line_length = par->next_line; in tt_encode_fix()
663 par->next_line = linelen; in tt_decode_var()
887 fix->line_length = par->next_line; in falcon_encode_fix()
1363 par->next_line = linelen; in falcon_decode_var()
1812 fix->line_length = par->next_line; in stste_encode_fix()
1870 par->next_line = linelen; in stste_decode_var()
2130 fix->line_length = par->next_line; in ext_encode_fix()
2146 par->next_line = external_xres_virtual * external_depth / 8; in ext_decode_var()
2504 atafb_mfb_fillrect(info, par->next_line, rect->color, in atafb_fillrect()
[all …]
H A 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 …]
/OK3568_Linux_fs/u-boot/cmd/
H A Dscript_update.c30 char *next_line; in script_next_line() local
55 next_line = NULL; in script_next_line()
57 next_line = line_buf; in script_next_line()
62 next_line = NULL; in script_next_line()
70 return next_line; in script_next_line()
75 char *next_line, *script, *buf; in do_script() local
97 while ((next_line = script_next_line(&script)) != NULL) { in do_script()
98 printf("\n$ %s\n", next_line); in do_script()
99 ret = run_command(next_line, 0); in do_script()
/OK3568_Linux_fs/kernel/kernel/
H A Duser_namespace.c910 char *kbuf = NULL, *pos, *next_line; in map_write() local
959 for (; pos; pos = next_line) { in map_write()
962 next_line = strchr(pos, '\n'); in map_write()
963 if (next_line) { in map_write()
964 *next_line = '\0'; in map_write()
965 next_line++; in map_write()
966 if (*next_line == '\0') in map_write()
967 next_line = NULL; in map_write()
1009 (next_line != NULL)) in map_write()
/OK3568_Linux_fs/kernel/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 =~ /\\$/) {
/OK3568_Linux_fs/kernel/tools/testing/selftests/rcutorture/formal/srcu-cbmc/
H A Dmodify_srcu.awk67 ret = getline next_line;
80 $0 = $0 "\n" next_line;
/OK3568_Linux_fs/kernel/fs/proc/
H A Dbase.c1581 char *kbuf = NULL, *pos, *next_line; in timens_offsets_write() local
1597 for (pos = kbuf; pos; pos = next_line) { in timens_offsets_write()
1603 next_line = strchr(pos, '\n'); in timens_offsets_write()
1604 if (next_line) { in timens_offsets_write()
1605 *next_line = '\0'; in timens_offsets_write()
1606 next_line++; in timens_offsets_write()
1607 if (*next_line == '\0') in timens_offsets_write()
1608 next_line = NULL; in timens_offsets_write()
1628 if (next_line) in timens_offsets_write()
1629 count = next_line - kbuf; in timens_offsets_write()
/OK3568_Linux_fs/yocto/poky/meta/recipes-devtools/gcc/gcc/
H A D0002-CVE-2021-42574.patch1591 if (buffer->next_line >= buffer->rlimit)
/OK3568_Linux_fs/recovery/
HDrootfs.cpio.gz107070100A8AEB0000041ED0000000000000000000000116841B48100000000000000FD0000000200000000000000000000000200000000.�07070100A8B07C000081A40000000000000000000000016841263500000000000000FD0000000200000000000000000000000900000000.gitkeep��07070100A8B07D000081A40000000000000000000000016841263500000000000000FD0000000200000000000000000000000B00000000.skip_fsck����07070100A8AEB10000A1FF0000000000000000000000016841B0B600000007000000FD0000000200000000000000000000000400000000bin���usr/bin�07070100A8B07E000081A400000000000000000000000168412635000001CC000000FD0000000200000000000000000000001100000000busybox. ...