/kernel/linux/linux-5.10/drivers/video/fbdev/ |
D | atafb.h | 5 void atafb_mfb_copyarea(struct fb_info *info, u_long next_line, int sy, int sx, int dy, 8 int sy, int sx, int height, int width); 13 void atafb_iplan2p2_copyarea(struct fb_info *info, u_long next_line, int sy, int sx, int dy, 16 int sy, int sx, int height, int width); 21 void atafb_iplan2p4_copyarea(struct fb_info *info, u_long next_line, int sy, int sx, int dy, 24 int sy, int sx, int height, int width); 29 void atafb_iplan2p8_copyarea(struct fb_info *info, u_long next_line, int sy, int sx, int dy, 32 int sy, int sx, int height, int width);
|
D | atafb_iplan2p2.c | 24 int sy, int sx, int dy, int dx, in atafb_iplan2p2_copyarea() argument 43 u_int upwards = (dy < sy) || (dy == sy && dx < sx); in atafb_iplan2p2_copyarea() 46 if (!((sx ^ dx) & 15)) { in atafb_iplan2p2_copyarea() 50 src = (u8 *)info->screen_base + sy * next_line + (sx & ~15) / (8 / BPL); in atafb_iplan2p2_copyarea() 52 if (sx & 15) { in atafb_iplan2p2_copyarea() 75 src = (u8 *)info->screen_base + (sy - 1) * next_line + ((sx + width + 8) & ~15) / (8 / BPL); in atafb_iplan2p2_copyarea() 78 if ((sx + width) & 15) { in atafb_iplan2p2_copyarea() 97 if (sx & 15) in atafb_iplan2p2_copyarea() 109 src = (u8 *)info->screen_base + sy * next_line + (sx & ~15) / (8 / BPL); in atafb_iplan2p2_copyarea() 115 if (sx & 15) { in atafb_iplan2p2_copyarea() [all …]
|
D | atafb_iplan2p4.c | 24 int sy, int sx, int dy, int dx, in atafb_iplan2p4_copyarea() argument 43 u_int upwards = (dy < sy) || (dy == sy && dx < sx); in atafb_iplan2p4_copyarea() 46 if (!((sx ^ dx) & 15)) { in atafb_iplan2p4_copyarea() 50 src = (u8 *)info->screen_base + sy * next_line + (sx & ~15) / (8 / BPL); in atafb_iplan2p4_copyarea() 52 if (sx & 15) { in atafb_iplan2p4_copyarea() 75 src = (u8 *)info->screen_base + (sy - 1) * next_line + ((sx + width + 8) & ~15) / (8 / BPL); in atafb_iplan2p4_copyarea() 78 if ((sx + width) & 15) { in atafb_iplan2p4_copyarea() 97 if (sx & 15) in atafb_iplan2p4_copyarea() 109 src = (u8 *)info->screen_base + sy * next_line + (sx & ~15) / (8 / BPL); in atafb_iplan2p4_copyarea() 115 if (sx & 15) { in atafb_iplan2p4_copyarea() [all …]
|
D | atafb_iplan2p8.c | 31 int sy, int sx, int dy, int dx, in atafb_iplan2p8_copyarea() argument 50 u_int upwards = (dy < sy) || (dy == sy && dx < sx); in atafb_iplan2p8_copyarea() 53 if (!((sx ^ dx) & 15)) { in atafb_iplan2p8_copyarea() 57 src = (u8 *)info->screen_base + sy * next_line + (sx & ~15) / (8 / BPL); in atafb_iplan2p8_copyarea() 59 if (sx & 15) { in atafb_iplan2p8_copyarea() 82 src = (u8 *)info->screen_base + (sy - 1) * next_line + ((sx + width + 8) & ~15) / (8 / BPL); in atafb_iplan2p8_copyarea() 85 if ((sx + width) & 15) { in atafb_iplan2p8_copyarea() 104 if (sx & 15) in atafb_iplan2p8_copyarea() 116 src = (u8 *)info->screen_base + sy * next_line + (sx & ~15) / (8 / BPL); in atafb_iplan2p8_copyarea() 122 if (sx & 15) { in atafb_iplan2p8_copyarea() [all …]
|
D | atafb_mfb.c | 24 int sy, int sx, int dy, int dx, 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() 43 src = (u8 *)info->screen_base + (sy + height - 1) * next_line + (sx >> 3); in atafb_mfb_copyarea() 54 int sy, int sx, int height, int width) in atafb_mfb_fillrect() argument 59 dest = (u8 *)info->screen_base + sy * next_line + (sx >> 3); in atafb_mfb_fillrect() 61 if (sx == 0 && width == next_line) { in atafb_mfb_fillrect()
|
/kernel/linux/linux-4.19/drivers/video/fbdev/ |
D | atafb.h | 5 void atafb_mfb_copyarea(struct fb_info *info, u_long next_line, int sy, int sx, int dy, 8 int sy, int sx, int height, int width); 13 void atafb_iplan2p2_copyarea(struct fb_info *info, u_long next_line, int sy, int sx, int dy, 16 int sy, int sx, int height, int width); 21 void atafb_iplan2p4_copyarea(struct fb_info *info, u_long next_line, int sy, int sx, int dy, 24 int sy, int sx, int height, int width); 29 void atafb_iplan2p8_copyarea(struct fb_info *info, u_long next_line, int sy, int sx, int dy, 32 int sy, int sx, int height, int width);
|
D | atafb_iplan2p2.c | 25 int sy, int sx, int dy, int dx, in atafb_iplan2p2_copyarea() argument 44 u_int upwards = (dy < sy) || (dy == sy && dx < sx); in atafb_iplan2p2_copyarea() 47 if (!((sx ^ dx) & 15)) { in atafb_iplan2p2_copyarea() 51 src = (u8 *)info->screen_base + sy * next_line + (sx & ~15) / (8 / BPL); in atafb_iplan2p2_copyarea() 53 if (sx & 15) { in atafb_iplan2p2_copyarea() 76 src = (u8 *)info->screen_base + (sy - 1) * next_line + ((sx + width + 8) & ~15) / (8 / BPL); in atafb_iplan2p2_copyarea() 79 if ((sx + width) & 15) { in atafb_iplan2p2_copyarea() 98 if (sx & 15) in atafb_iplan2p2_copyarea() 110 src = (u8 *)info->screen_base + sy * next_line + (sx & ~15) / (8 / BPL); in atafb_iplan2p2_copyarea() 116 if (sx & 15) { in atafb_iplan2p2_copyarea() [all …]
|
D | atafb_iplan2p4.c | 25 int sy, int sx, int dy, int dx, in atafb_iplan2p4_copyarea() argument 44 u_int upwards = (dy < sy) || (dy == sy && dx < sx); in atafb_iplan2p4_copyarea() 47 if (!((sx ^ dx) & 15)) { in atafb_iplan2p4_copyarea() 51 src = (u8 *)info->screen_base + sy * next_line + (sx & ~15) / (8 / BPL); in atafb_iplan2p4_copyarea() 53 if (sx & 15) { in atafb_iplan2p4_copyarea() 76 src = (u8 *)info->screen_base + (sy - 1) * next_line + ((sx + width + 8) & ~15) / (8 / BPL); in atafb_iplan2p4_copyarea() 79 if ((sx + width) & 15) { in atafb_iplan2p4_copyarea() 98 if (sx & 15) in atafb_iplan2p4_copyarea() 110 src = (u8 *)info->screen_base + sy * next_line + (sx & ~15) / (8 / BPL); in atafb_iplan2p4_copyarea() 116 if (sx & 15) { in atafb_iplan2p4_copyarea() [all …]
|
D | atafb_mfb.c | 25 int sy, int sx, int dy, int dx, 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() 44 src = (u8 *)info->screen_base + (sy + height - 1) * next_line + (sx >> 3); in atafb_mfb_copyarea() 55 int sy, int sx, int height, int width) in atafb_mfb_fillrect() argument 60 dest = (u8 *)info->screen_base + sy * next_line + (sx >> 3); in atafb_mfb_fillrect() 62 if (sx == 0 && width == next_line) { in atafb_mfb_fillrect()
|
D | atafb_iplan2p8.c | 32 int sy, int sx, int dy, int dx, in atafb_iplan2p8_copyarea() argument 51 u_int upwards = (dy < sy) || (dy == sy && dx < sx); in atafb_iplan2p8_copyarea() 54 if (!((sx ^ dx) & 15)) { in atafb_iplan2p8_copyarea() 58 src = (u8 *)info->screen_base + sy * next_line + (sx & ~15) / (8 / BPL); in atafb_iplan2p8_copyarea() 60 if (sx & 15) { in atafb_iplan2p8_copyarea() 83 src = (u8 *)info->screen_base + (sy - 1) * next_line + ((sx + width + 8) & ~15) / (8 / BPL); in atafb_iplan2p8_copyarea() 86 if ((sx + width) & 15) { in atafb_iplan2p8_copyarea() 105 if (sx & 15) in atafb_iplan2p8_copyarea() 117 src = (u8 *)info->screen_base + sy * next_line + (sx & ~15) / (8 / BPL); in atafb_iplan2p8_copyarea() 123 if (sx & 15) { in atafb_iplan2p8_copyarea() [all …]
|
D | dnfb.c | 159 (area->sx >> 4)); in dnfb_copyarea() 163 y_delta = (info->fix.line_length * 8) - area->sx - area->width; in dnfb_copyarea() 169 (((area->dx & 0xf) - (area->sx & 0xf)) % 16) | (0x4 << 5)); in dnfb_copyarea() 170 if ((area->dx & 0xf) < (area->sx & 0xf)) in dnfb_copyarea() 173 y_delta = -((info->fix.line_length * 8) - area->sx - area->width); in dnfb_copyarea() 179 ((-((area->sx & 0xf) - (area->dx & 0xf))) % 16) | in dnfb_copyarea() 181 if ((area->dx & 0xf) > (area->sx & 0xf)) in dnfb_copyarea()
|
/kernel/linux/linux-5.10/fs/xfs/scrub/ |
D | attr.c | 114 struct xchk_xattr *sx; in xchk_xattr_listent() local 118 sx = container_of(context, struct xchk_xattr, context); in xchk_xattr_listent() 120 if (xchk_should_terminate(sx->sc, &error)) { in xchk_xattr_listent() 127 xchk_ino_set_preen(sx->sc, context->dp->i_ino); in xchk_xattr_listent() 133 xchk_fblock_set_corrupt(sx->sc, XFS_ATTR_FORK, args.blkno); in xchk_xattr_listent() 142 error = xchk_setup_xattr_buf(sx->sc, valuelen, KM_MAYFAIL); in xchk_xattr_listent() 159 args.value = xchk_xattr_valuebuf(sx->sc); in xchk_xattr_listent() 166 if (!xchk_fblock_process_error(sx->sc, XFS_ATTR_FORK, args.blkno, in xchk_xattr_listent() 170 xchk_fblock_set_corrupt(sx->sc, XFS_ATTR_FORK, in xchk_xattr_listent() 173 if (sx->sc->sm->sm_flags & XFS_SCRUB_OFLAG_CORRUPT) in xchk_xattr_listent() [all …]
|
/kernel/linux/linux-5.10/drivers/video/fbdev/matrox/ |
D | matroxfb_accel.c | 209 int sx, int dy, int dx, int height, int width) in matrox_accel_bmove() argument 218 if ((dy < sy) || ((dy == sy) && (dx <= sx))) { in matrox_accel_bmove() 225 start = sy*vxres+sx+curr_ydstorg(minfo); in matrox_accel_bmove() 234 end = (sy+height-1)*vxres+sx+curr_ydstorg(minfo); in matrox_accel_bmove() 250 int sy, int sx, int dy, int dx, int height, in matrox_accel_bmove_lin() argument 260 if ((dy < sy) || ((dy == sy) && (dx <= sx))) { in matrox_accel_bmove_lin() 267 start = sy*vxres+sx+curr_ydstorg(minfo); in matrox_accel_bmove_lin() 276 end = (sy+height-1)*vxres+sx+curr_ydstorg(minfo); in matrox_accel_bmove_lin() 295 if ((area->sx | area->dx | area->width) & 1) in matroxfb_cfb4_copyarea() 298 …matrox_accel_bmove_lin(minfo, minfo->fbcon.var.xres_virtual >> 1, area->sy, area->sx >> 1, area->d… in matroxfb_cfb4_copyarea() [all …]
|
/kernel/linux/linux-4.19/drivers/video/fbdev/matrox/ |
D | matroxfb_accel.c | 208 int sx, int dy, int dx, int height, int width) in matrox_accel_bmove() argument 217 if ((dy < sy) || ((dy == sy) && (dx <= sx))) { in matrox_accel_bmove() 224 start = sy*vxres+sx+curr_ydstorg(minfo); in matrox_accel_bmove() 233 end = (sy+height-1)*vxres+sx+curr_ydstorg(minfo); in matrox_accel_bmove() 249 int sy, int sx, int dy, int dx, int height, in matrox_accel_bmove_lin() argument 259 if ((dy < sy) || ((dy == sy) && (dx <= sx))) { in matrox_accel_bmove_lin() 266 start = sy*vxres+sx+curr_ydstorg(minfo); in matrox_accel_bmove_lin() 275 end = (sy+height-1)*vxres+sx+curr_ydstorg(minfo); in matrox_accel_bmove_lin() 294 if ((area->sx | area->dx | area->width) & 1) in matroxfb_cfb4_copyarea() 297 …matrox_accel_bmove_lin(minfo, minfo->fbcon.var.xres_virtual >> 1, area->sy, area->sx >> 1, area->d… in matroxfb_cfb4_copyarea() [all …]
|
/kernel/linux/linux-4.19/fs/xfs/scrub/ |
D | attr.c | 79 struct xchk_xattr *sx; in xchk_xattr_listent() local 83 sx = container_of(context, struct xchk_xattr, context); in xchk_xattr_listent() 87 xchk_ino_set_preen(sx->sc, context->dp->i_ino); in xchk_xattr_listent() 103 args.value = sx->sc->buf; in xchk_xattr_listent() 109 if (!xchk_fblock_process_error(sx->sc, XFS_ATTR_FORK, args.blkno, in xchk_xattr_listent() 113 xchk_fblock_set_corrupt(sx->sc, XFS_ATTR_FORK, in xchk_xattr_listent() 116 if (sx->sc->sm->sm_flags & XFS_SCRUB_OFLAG_CORRUPT) in xchk_xattr_listent() 410 struct xchk_xattr sx; in xchk_xattr() local 418 memset(&sx, 0, sizeof(sx)); in xchk_xattr() 429 sx.context.dp = sc->ip; in xchk_xattr() [all …]
|
/kernel/linux/linux-5.10/arch/powerpc/boot/dts/ |
D | eiger.dts | 54 compatible = "ibm,uic-460sx","ibm,uic"; 64 compatible = "ibm,uic-460sx","ibm,uic"; 76 compatible = "ibm,uic-460sx","ibm,uic"; 88 compatible = "ibm,uic-460sx","ibm,uic"; 100 compatible = "ibm,sdr-460sx"; 105 compatible = "ibm,cpr-460sx"; 110 compatible = "ibm,plb-460sx", "ibm,plb4"; 117 compatible = "ibm,sdram-460sx", "ibm,sdram-405gp"; 122 compatible = "ibm,mcmal-460sx", "ibm,mcmal2"; 145 compatible = "ibm,opb-460sx", "ibm,opb"; [all …]
|
D | redwood.dts | 50 compatible = "ibm,uic-460sx","ibm,uic"; 60 compatible = "ibm,uic-460sx","ibm,uic"; 72 compatible = "ibm,uic-460sx","ibm,uic"; 84 compatible = "ibm,uic-460sx","ibm,uic"; 96 compatible = "ibm,sdr-460sx"; 101 compatible = "ibm,cpr-460sx"; 106 compatible = "ibm,plb-460sx", "ibm,plb4"; 113 compatible = "ibm,sdram-460sx", "ibm,sdram-405gp"; 118 compatible = "ibm,mcmal-460sx", "ibm,mcmal2"; 141 compatible = "ibm,opb-460sx", "ibm,opb"; [all …]
|
/kernel/linux/linux-4.19/arch/powerpc/boot/dts/ |
D | eiger.dts | 54 compatible = "ibm,uic-460sx","ibm,uic"; 64 compatible = "ibm,uic-460sx","ibm,uic"; 76 compatible = "ibm,uic-460sx","ibm,uic"; 88 compatible = "ibm,uic-460sx","ibm,uic"; 100 compatible = "ibm,sdr-460sx"; 105 compatible = "ibm,cpr-460sx"; 110 compatible = "ibm,plb-460sx", "ibm,plb4"; 117 compatible = "ibm,sdram-460sx", "ibm,sdram-405gp"; 122 compatible = "ibm,mcmal-460sx", "ibm,mcmal2"; 145 compatible = "ibm,opb-460sx", "ibm,opb"; [all …]
|
D | redwood.dts | 50 compatible = "ibm,uic-460sx","ibm,uic"; 60 compatible = "ibm,uic-460sx","ibm,uic"; 72 compatible = "ibm,uic-460sx","ibm,uic"; 84 compatible = "ibm,uic-460sx","ibm,uic"; 96 compatible = "ibm,sdr-460sx"; 101 compatible = "ibm,cpr-460sx"; 106 compatible = "ibm,plb-460sx", "ibm,plb4"; 113 compatible = "ibm,sdram-460sx", "ibm,sdram-405gp"; 118 compatible = "ibm,mcmal-460sx", "ibm,mcmal2"; 141 compatible = "ibm,opb-460sx", "ibm,opb"; [all …]
|
/kernel/linux/linux-5.10/drivers/video/fbdev/core/ |
D | tileblit.c | 21 int sx, int dy, int dx, int height, int width) in tile_bmove() argument 25 area.sx = sx; in tile_bmove() 36 int sx, int height, int width) in tile_clear() argument 46 rect.sx = sx; in tile_clear() 63 blit.sx = xx; in tile_putcs() 89 cursor.sx = vc->state.x; in tile_cursor()
|
/kernel/linux/linux-4.19/drivers/video/fbdev/core/ |
D | tileblit.c | 21 int sx, int dy, int dx, int height, int width) in tile_bmove() argument 25 area.sx = sx; in tile_bmove() 36 int sx, int height, int width) in tile_clear() argument 46 rect.sx = sx; in tile_clear() 63 blit.sx = xx; in tile_putcs() 89 cursor.sx = vc->vc_x; in tile_cursor()
|
/kernel/linux/linux-5.10/drivers/video/fbdev/aty/ |
D | radeon_accel.c | 102 u32 sx, sy, dx, dy, w, h; in radeonfb_prim_copyarea() local 106 sx = area->sx; sy = area->sy; in radeonfb_prim_copyarea() 107 xdir = sx - dx; in radeonfb_prim_copyarea() 110 if ( xdir < 0 ) { sx += w-1; dx += w-1; } in radeonfb_prim_copyarea() 129 OUTREG(SRC_Y_X, (sy << 16) | sx); in radeonfb_prim_copyarea() 140 modded.sx = area->sx; in radeonfb_copyarea() 160 modded.sx >= vxres || modded.sy >= vyres || in radeonfb_copyarea() 164 if(modded.sx + modded.width > vxres) modded.width = vxres - modded.sx; in radeonfb_copyarea()
|
/kernel/linux/linux-4.19/drivers/video/fbdev/aty/ |
D | radeon_accel.c | 102 u32 sx, sy, dx, dy, w, h; in radeonfb_prim_copyarea() local 106 sx = area->sx; sy = area->sy; in radeonfb_prim_copyarea() 107 xdir = sx - dx; in radeonfb_prim_copyarea() 110 if ( xdir < 0 ) { sx += w-1; dx += w-1; } in radeonfb_prim_copyarea() 129 OUTREG(SRC_Y_X, (sy << 16) | sx); in radeonfb_prim_copyarea() 140 modded.sx = area->sx; in radeonfb_copyarea() 160 modded.sx >= vxres || modded.sy >= vyres || in radeonfb_copyarea() 164 if(modded.sx + modded.width > vxres) modded.width = vxres - modded.sx; in radeonfb_copyarea()
|
/kernel/linux/linux-5.10/arch/mips/math-emu/ |
D | dp_sqrt.c | 68 ieee754_csr.sx &= ~IEEE754_INEXACT; in ieee754dp_sqrt() 114 ieee754_csr.sx &= ~IEEE754_INEXACT; in ieee754dp_sqrt() 119 if (ieee754_csr.sx & IEEE754_INEXACT || t.bits != y.bits) { in ieee754dp_sqrt() 121 if (!(ieee754_csr.sx & IEEE754_INEXACT)) in ieee754dp_sqrt() 127 oldcsr.sx |= IEEE754_INEXACT; in ieee754dp_sqrt()
|
/kernel/linux/linux-4.19/arch/mips/math-emu/ |
D | dp_sqrt.c | 81 ieee754_csr.sx &= ~IEEE754_INEXACT; in ieee754dp_sqrt() 127 ieee754_csr.sx &= ~IEEE754_INEXACT; in ieee754dp_sqrt() 132 if (ieee754_csr.sx & IEEE754_INEXACT || t.bits != y.bits) { in ieee754dp_sqrt() 134 if (!(ieee754_csr.sx & IEEE754_INEXACT)) in ieee754dp_sqrt() 140 oldcsr.sx |= IEEE754_INEXACT; in ieee754dp_sqrt()
|