Home
last modified time | relevance | path

Searched refs:sx (Results 1 - 25 of 183) sorted by relevance

12345678

/kernel/linux/linux-6.6/io_uring/
H A Dstatx.c25 struct io_statx *sx = io_kiocb_to_cmd(req, struct io_statx); in io_statx_prep() local
33 sx->dfd = READ_ONCE(sqe->fd); in io_statx_prep()
34 sx->mask = READ_ONCE(sqe->len); in io_statx_prep()
36 sx->buffer = u64_to_user_ptr(READ_ONCE(sqe->addr2)); in io_statx_prep()
37 sx->flags = READ_ONCE(sqe->statx_flags); in io_statx_prep()
39 sx->filename = getname_flags(path, in io_statx_prep()
40 getname_statx_lookup_flags(sx->flags), in io_statx_prep()
43 if (IS_ERR(sx->filename)) { in io_statx_prep()
44 int ret = PTR_ERR(sx->filename); in io_statx_prep()
46 sx in io_statx_prep()
57 struct io_statx *sx = io_kiocb_to_cmd(req, struct io_statx); io_statx() local
69 struct io_statx *sx = io_kiocb_to_cmd(req, struct io_statx); io_statx_cleanup() local
[all...]
/kernel/linux/linux-5.10/drivers/video/fbdev/
H A Datafb.h5 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);
H A Datafb_iplan2p4.c24 int sy, int sx, int dy, int dx, in atafb_iplan2p4_copyarea()
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 in atafb_iplan2p4_copyarea()
23 atafb_iplan2p4_copyarea(struct fb_info *info, u_long next_line, int sy, int sx, int dy, int dx, int height, int width) atafb_iplan2p4_copyarea() argument
206 atafb_iplan2p4_fillrect(struct fb_info *info, u_long next_line, u32 color, int sy, int sx, int height, int width) atafb_iplan2p4_fillrect() argument
[all...]
H A Datafb_iplan2p2.c24 int sy, int sx, int dy, int dx, in atafb_iplan2p2_copyarea()
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 in atafb_iplan2p2_copyarea()
23 atafb_iplan2p2_copyarea(struct fb_info *info, u_long next_line, int sy, int sx, int dy, int dx, int height, int width) atafb_iplan2p2_copyarea() argument
192 atafb_iplan2p2_fillrect(struct fb_info *info, u_long next_line, u32 color, int sy, int sx, int height, int width) atafb_iplan2p2_fillrect() argument
[all...]
H A Datafb_mfb.c24 int sy, int sx, int dy, int dx, in atafb_mfb_copyarea()
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()
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()
23 atafb_mfb_copyarea(struct fb_info *info, u_long next_line, int sy, int sx, int dy, int dx, int height, int width) atafb_mfb_copyarea() argument
53 atafb_mfb_fillrect(struct fb_info *info, u_long next_line, u32 color, int sy, int sx, int height, int width) atafb_mfb_fillrect() argument
H A Datafb_iplan2p8.c31 int sy, int sx, int dy, int dx, in atafb_iplan2p8_copyarea()
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 in atafb_iplan2p8_copyarea()
30 atafb_iplan2p8_copyarea(struct fb_info *info, u_long next_line, int sy, int sx, int dy, int dx, int height, int width) atafb_iplan2p8_copyarea() argument
241 atafb_iplan2p8_fillrect(struct fb_info *info, u_long next_line, u32 color, int sy, int sx, int height, int width) atafb_iplan2p8_fillrect() argument
[all...]
H A Ddnfb.c160 (area->sx >> 4)); in dnfb_copyarea()
164 y_delta = (info->fix.line_length * 8) - area->sx - area->width; in dnfb_copyarea()
170 (((area->dx & 0xf) - (area->sx & 0xf)) % 16) | (0x4 << 5)); in dnfb_copyarea()
171 if ((area->dx & 0xf) < (area->sx & 0xf)) in dnfb_copyarea()
174 y_delta = -((info->fix.line_length * 8) - area->sx - area->width); in dnfb_copyarea()
180 ((-((area->sx & 0xf) - (area->dx & 0xf))) % 16) | in dnfb_copyarea()
182 if ((area->dx & 0xf) > (area->sx & 0xf)) in dnfb_copyarea()
/kernel/linux/linux-6.6/drivers/video/fbdev/
H A Datafb.h5 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);
H A Datafb_iplan2p4.c24 int sy, int sx, int dy, int dx, in atafb_iplan2p4_copyarea()
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 in atafb_iplan2p4_copyarea()
23 atafb_iplan2p4_copyarea(struct fb_info *info, u_long next_line, int sy, int sx, int dy, int dx, int height, int width) atafb_iplan2p4_copyarea() argument
206 atafb_iplan2p4_fillrect(struct fb_info *info, u_long next_line, u32 color, int sy, int sx, int height, int width) atafb_iplan2p4_fillrect() argument
[all...]
H A Datafb_iplan2p2.c24 int sy, int sx, int dy, int dx, in atafb_iplan2p2_copyarea()
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 in atafb_iplan2p2_copyarea()
23 atafb_iplan2p2_copyarea(struct fb_info *info, u_long next_line, int sy, int sx, int dy, int dx, int height, int width) atafb_iplan2p2_copyarea() argument
192 atafb_iplan2p2_fillrect(struct fb_info *info, u_long next_line, u32 color, int sy, int sx, int height, int width) atafb_iplan2p2_fillrect() argument
[all...]
H A Datafb_mfb.c24 int sy, int sx, int dy, int dx, in atafb_mfb_copyarea()
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()
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()
23 atafb_mfb_copyarea(struct fb_info *info, u_long next_line, int sy, int sx, int dy, int dx, int height, int width) atafb_mfb_copyarea() argument
53 atafb_mfb_fillrect(struct fb_info *info, u_long next_line, u32 color, int sy, int sx, int height, int width) atafb_mfb_fillrect() argument
H A Datafb_iplan2p8.c31 int sy, int sx, int dy, int dx, in atafb_iplan2p8_copyarea()
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 in atafb_iplan2p8_copyarea()
30 atafb_iplan2p8_copyarea(struct fb_info *info, u_long next_line, int sy, int sx, int dy, int dx, int height, int width) atafb_iplan2p8_copyarea() argument
241 atafb_iplan2p8_fillrect(struct fb_info *info, u_long next_line, u32 color, int sy, int sx, int height, int width) atafb_iplan2p8_fillrect() argument
[all...]
H A Ddnfb.c160 (area->sx >> 4)); in dnfb_copyarea()
164 y_delta = (info->fix.line_length * 8) - area->sx - area->width; in dnfb_copyarea()
170 (((area->dx & 0xf) - (area->sx & 0xf)) % 16) | (0x4 << 5)); in dnfb_copyarea()
171 if ((area->dx & 0xf) < (area->sx & 0xf)) in dnfb_copyarea()
174 y_delta = -((info->fix.line_length * 8) - area->sx - area->width); in dnfb_copyarea()
180 ((-((area->sx & 0xf) - (area->dx & 0xf))) % 16) | in dnfb_copyarea()
182 if ((area->dx & 0xf) > (area->sx & 0xf)) in dnfb_copyarea()
/kernel/linux/linux-5.10/drivers/video/fbdev/matrox/
H A Dmatroxfb_accel.c209 int sx, int dy, int dx, int height, int width) in matrox_accel_bmove()
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()
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 >> in matroxfb_cfb4_copyarea()
208 matrox_accel_bmove(struct matrox_fb_info *minfo, int vxres, int sy, int sx, int dy, int dx, int height, int width) matrox_accel_bmove() argument
249 matrox_accel_bmove_lin(struct matrox_fb_info *minfo, int vxres, int sy, int sx, int dy, int dx, int height, int width) matrox_accel_bmove_lin() argument
307 matroxfb_accel_clear(struct matrox_fb_info *minfo, u_int32_t color, int sy, int sx, int height, int width) matroxfb_accel_clear() argument
337 matroxfb_cfb4_clear(struct matrox_fb_info *minfo, u_int32_t bgx, int sy, int sx, int height, int width) matroxfb_cfb4_clear() argument
[all...]
/kernel/linux/linux-5.10/fs/xfs/scrub/
H A Dattr.c114 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 in xchk_xattr_listent()
476 struct xchk_xattr sx; xchk_xattr() local
[all...]
/kernel/linux/linux-6.6/drivers/video/fbdev/matrox/
H A Dmatroxfb_accel.c209 int sx, int dy, int dx, int height, int width) in matrox_accel_bmove()
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()
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 >> in matroxfb_cfb4_copyarea()
208 matrox_accel_bmove(struct matrox_fb_info *minfo, int vxres, int sy, int sx, int dy, int dx, int height, int width) matrox_accel_bmove() argument
249 matrox_accel_bmove_lin(struct matrox_fb_info *minfo, int vxres, int sy, int sx, int dy, int dx, int height, int width) matrox_accel_bmove_lin() argument
307 matroxfb_accel_clear(struct matrox_fb_info *minfo, u_int32_t color, int sy, int sx, int height, int width) matroxfb_accel_clear() argument
337 matroxfb_cfb4_clear(struct matrox_fb_info *minfo, u_int32_t bgx, int sy, int sx, int height, int width) matroxfb_cfb4_clear() argument
[all...]
/kernel/linux/linux-5.10/drivers/video/fbdev/aty/
H A Dradeon_accel.c102 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 in radeonfb_copyarea()
[all...]
/kernel/linux/linux-6.6/drivers/video/fbdev/aty/
H A Dradeon_accel.c102 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 in radeonfb_copyarea()
[all...]
/kernel/linux/linux-6.6/fs/xfs/scrub/
H A Dattr.c174 struct xchk_xattr *sx; in xchk_xattr_listent() local
177 sx = container_of(context, struct xchk_xattr, context); in xchk_xattr_listent()
178 ab = sx->sc->buf; in xchk_xattr_listent()
180 if (xchk_should_terminate(sx->sc, &error)) { in xchk_xattr_listent()
187 xchk_ino_set_preen(sx->sc, context->dp->i_ino); in xchk_xattr_listent()
193 xchk_fblock_set_corrupt(sx->sc, XFS_ATTR_FORK, args.blkno); in xchk_xattr_listent()
199 xchk_fblock_set_corrupt(sx->sc, XFS_ATTR_FORK, args.blkno); in xchk_xattr_listent()
216 error = xchk_setup_xattr_buf(sx->sc, valuelen); in xchk_xattr_listent()
230 if (!xchk_fblock_process_error(sx->sc, XFS_ATTR_FORK, args.blkno, in xchk_xattr_listent()
234 xchk_fblock_set_corrupt(sx in xchk_xattr_listent()
596 struct xchk_xattr sx = { xchk_xattr() local
[all...]
/kernel/linux/linux-5.10/drivers/video/fbdev/core/
H A Dtileblit.c21 int sx, int dy, int dx, int height, int width) in tile_bmove()
25 area.sx = sx; in tile_bmove()
36 int sx, int height, int width) in tile_clear()
46 rect.sx = sx; in tile_clear()
63 blit.sx = xx; in tile_putcs()
89 cursor.sx = vc->state.x; in tile_cursor()
20 tile_bmove(struct vc_data *vc, struct fb_info *info, int sy, int sx, int dy, int dx, int height, int width) tile_bmove() argument
35 tile_clear(struct vc_data *vc, struct fb_info *info, int sy, int sx, int height, int width) tile_clear() argument
/kernel/linux/linux-6.6/drivers/video/fbdev/core/
H A Dtileblit.c20 int sx, int dy, int dx, int height, int width) in tile_bmove()
24 area.sx = sx; in tile_bmove()
35 int sx, int height, int width) in tile_clear()
45 rect.sx = sx; in tile_clear()
62 blit.sx = xx; in tile_putcs()
88 cursor.sx = vc->state.x; in tile_cursor()
19 tile_bmove(struct vc_data *vc, struct fb_info *info, int sy, int sx, int dy, int dx, int height, int width) tile_bmove() argument
34 tile_clear(struct vc_data *vc, struct fb_info *info, int sy, int sx, int height, int width) tile_clear() argument
/kernel/linux/linux-5.10/arch/mips/math-emu/
H A Ddp_sqrt.c68 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-6.6/arch/mips/math-emu/
H A Ddp_sqrt.c68 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-5.10/drivers/video/fbdev/savage/
H A Dsavagefb_accel.c34 int sx = region->sx, dx = region->dx; in savagefb_copyarea() local
44 if (dx <= sx) { in savagefb_copyarea()
47 sx += region->width - 1; in savagefb_copyarea()
60 BCI_SEND(BCI_X_Y(sx, sy)); in savagefb_copyarea()
/kernel/linux/linux-6.6/drivers/video/fbdev/savage/
H A Dsavagefb_accel.c34 int sx = region->sx, dx = region->dx; in savagefb_copyarea() local
44 if (dx <= sx) { in savagefb_copyarea()
47 sx += region->width - 1; in savagefb_copyarea()
60 BCI_SEND(BCI_X_Y(sx, sy)); in savagefb_copyarea()

Completed in 9 milliseconds

12345678