/kernel/linux/linux-5.10/drivers/video/fbdev/ |
D | atafb_mfb.c | 23 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 …]
|
D | atafb_iplan2p2.c | 23 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 …]
|
D | atafb_iplan2p4.c | 23 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 …]
|
D | atafb.h | 5 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 …]
|
D | atafb_iplan2p8.c | 30 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 …]
|
D | atafb.c | 101 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 …]
|
D | amifb.c | 736 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 …]
|
/kernel/linux/linux-5.10/kernel/ |
D | user_namespace.c | 910 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()
|
/kernel/linux/linux-5.10/tools/testing/selftests/rcutorture/formal/srcu-cbmc/ |
D | modify_srcu.awk | 67 ret = getline next_line; 80 $0 = $0 "\n" next_line;
|
/kernel/linux/linux-5.10/scripts/dtc/ |
D | dt_to_config | 560 while ($next_line = <MAKEFILE_FILE>) { 572 chomp($next_line); 573 $line = $line . $next_line; 574 if ($next_line =~ /\\$/) {
|
/kernel/linux/linux-5.10/fs/proc/ |
D | base.c | 1738 char *kbuf = NULL, *pos, *next_line; in timens_offsets_write() local 1754 for (pos = kbuf; pos; pos = next_line) { in timens_offsets_write() 1760 next_line = strchr(pos, '\n'); in timens_offsets_write() 1761 if (next_line) { in timens_offsets_write() 1762 *next_line = '\0'; in timens_offsets_write() 1763 next_line++; in timens_offsets_write() 1764 if (*next_line == '\0') in timens_offsets_write() 1765 next_line = NULL; in timens_offsets_write() 1785 if (next_line) in timens_offsets_write() 1786 count = next_line - kbuf; in timens_offsets_write()
|