| /linux/drivers/video/fbdev/ |
| H A 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);
|
| H A 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 …]
|
| H A 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 …]
|
| H A 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 …]
|
| H A 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()
|
| H A D | dnfb.c | 162 (area->sx >> 4)); in dnfb_copyarea() 166 y_delta = (info->fix.line_length * 8) - area->sx - area->width; in dnfb_copyarea() 172 (((area->dx & 0xf) - (area->sx & 0xf)) % 16) | (0x4 << 5)); in dnfb_copyarea() 173 if ((area->dx & 0xf) < (area->sx & 0xf)) in dnfb_copyarea() 176 y_delta = -((info->fix.line_length * 8) - area->sx - area->width); in dnfb_copyarea() 182 ((-((area->sx & 0xf) - (area->dx & 0xf))) % 16) | in dnfb_copyarea() 184 if ((area->dx & 0xf) > (area->sx & 0xf)) in dnfb_copyarea()
|
| H A D | hitfb.c | 90 static inline void hitfb_accel_bitblt(int truecolor, u16 sx, u16 sy, u16 dx, in hitfb_accel_bitblt() argument 100 if ((sy < dy) || ((sy == dy) && (sx <= dx))) { in hitfb_accel_bitblt() 101 saddr = WIDTH * (sy + height) + sx + width; in hitfb_accel_bitblt() 114 saddr = WIDTH * sy + sx; in hitfb_accel_bitblt() 167 hitfb_accel_bitblt(p->var.bits_per_pixel == 16, area->sx, area->sy, in hitfb_copyarea()
|
| /linux/arch/powerpc/boot/dts/ |
| H A D | eiger.dts | 2 * Device Tree Source for AMCC (AppliedMicro) Eiger(460SX) 35 model = "PowerPC,460SX"; 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"; [all …]
|
| H A D | redwood.dts | 2 * Device Tree Source for AMCC Redwood(460SX) 31 model = "PowerPC,460SX"; 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"; [all …]
|
| /linux/drivers/video/fbdev/aty/ |
| H A 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()
|
| H A D | mach64_accel.c | 203 u32 sx = area->sx, dx = area->dx, width = area->width, rotation = 0; in atyfb_copyarea() local 217 sx *= 3; in atyfb_copyarea() 228 if (sx < dx) { in atyfb_copyarea() 230 sx += width - 1; in atyfb_copyarea() 241 aty_st_le32(SRC_Y_X, (sx << 16) | sy, par); in atyfb_copyarea()
|
| /linux/drivers/video/fbdev/savage/ |
| H A D | savagefb_accel.c | 34 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()
|
| /linux/arch/mips/math-emu/ |
| H A 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()
|
| H A D | ieee754.h | 166 __BITFIELD_FIELD(unsigned sx:5, /* exceptions total */ 202 return (ieee754_csr.sx); in ieee754_getsx() 209 return (ieee754_csr.sx = 0); in ieee754_clrsx() 216 return (ieee754_csr.sx & n); in ieee754_sxtest()
|
| /linux/fs/fuse/ |
| H A D | dir.c | 1200 static void fuse_statx_to_attr(struct fuse_statx *sx, struct fuse_attr *attr) in fuse_statx_to_attr() argument 1203 attr->ino = sx->ino; in fuse_statx_to_attr() 1204 attr->size = sx->size; in fuse_statx_to_attr() 1205 attr->blocks = sx->blocks; in fuse_statx_to_attr() 1206 attr->atime = sx->atime.tv_sec; in fuse_statx_to_attr() 1207 attr->mtime = sx->mtime.tv_sec; in fuse_statx_to_attr() 1208 attr->ctime = sx->ctime.tv_sec; in fuse_statx_to_attr() 1209 attr->atimensec = sx->atime.tv_nsec; in fuse_statx_to_attr() 1210 attr->mtimensec = sx->mtime.tv_nsec; in fuse_statx_to_attr() 1211 attr->ctimensec = sx->ctime.tv_nsec; in fuse_statx_to_attr() [all …]
|
| /linux/drivers/eisa/ |
| H A D | eisa.ids | 28 ACR1341 "M1 486SX/20 CPU Board" 29 ACR1351 "M1 486SX/20 CPU Board" 282 CPQ9034 "Compaq 486SX/25 Processor Board" 283 CPQ9035 "Compaq 486SX/16 Processor Board" 284 CPQ9036 "Compaq 486SX/25 Processor Board (8 MB)" 285 CPQ9037 "Compaq 486SX/16 Processor Board (8 MB)" 286 CPQ9038 "Compaq 486SX/33 Processor Board (8 MB)" 287 CPQ903C "Compaq 486SX/33 Processor Board (4 MB)" 350 CPQ9901 "Compaq 486SX/16 Processor Board" 351 CPQ9902 "Compaq 486SX/16 Processor Board" [all …]
|
| /linux/tools/testing/selftests/filesystems/statmount/ |
| H A D | statmount_test.c | 88 struct statx sx; in get_mnt_id() local 91 ret = statx(AT_FDCWD, path, 0, mask, &sx); in get_mnt_id() 96 if (!(sx.stx_mask & mask)) in get_mnt_id() 101 return sx.stx_mnt_id; in get_mnt_id() 323 struct statx sx; in test_statmount_sb_basic() local 342 ret = statx(AT_FDCWD, "/", 0, 0, &sx); in test_statmount_sb_basic() 349 if (sm.sb_dev_major != sx.stx_dev_major || in test_statmount_sb_basic() 350 sm.sb_dev_minor != sx.stx_dev_minor) { in test_statmount_sb_basic() 353 sx.stx_dev_major, sx.stx_dev_minor); in test_statmount_sb_basic()
|
| H A D | statmount_test_ns.c | 83 struct statx sx; get_mnt_id() local
|
| /linux/tools/perf/pmu-events/arch/arm64/ampere/emag/ |
| H A D | pipeline.json | 39 "PublicDescription": "SX Op non-issue", 42 "BriefDescription": "SX stalled"
|
| /linux/drivers/video/fbdev/sis/ |
| H A D | sis_accel.c | 374 area->sx >= vxres || area->sy >= vyres || in fbcon_sis_copyarea() 379 if((area->sx + width) > vxres) width = vxres - area->sx; in fbcon_sis_copyarea() 388 if(area->sx < area->dx) xdir = 0; in fbcon_sis_copyarea() 395 SiS300SubsequentScreenToScreenCopy(ivideo, area->sx, area->sy, in fbcon_sis_copyarea() 403 SiS310SubsequentScreenToScreenCopy(ivideo, area->sx, area->sy, in fbcon_sis_copyarea()
|
| /linux/drivers/video/fbdev/i810/ |
| H A D | i810_accel.c | 329 u32 sx, sy, dx, dy, pitch, width, height, src, dest, xdir; in i810fb_copyarea() local 338 sx = region->sx * par->depth; in i810fb_copyarea() 344 if (dx <= sx) { in i810fb_copyarea() 349 sx += width - 1; in i810fb_copyarea() 360 src = info->fix.smem_start + (sy * info->fix.line_length) + sx; in i810fb_copyarea()
|
| /linux/arch/powerpc/platforms/44x/ |
| H A D | Kconfig | 137 select 460SX 148 select 460SX 283 config 460SX
|
| /linux/arch/powerpc/include/asm/nohash/32/ |
| H A D | pte-85xx.h | 12 RPN...................... 0 0 U0 U1 U2 U3 UX SX UW SW UR SR 24 #define _PAGE_EXEC 0x00010 /* H: SX permission */
|
| /linux/arch/x86/ |
| H A D | Kconfig.cpu | 14 AMD/Cyrix/Intel 386DX/DXL/SL/SLC/SX, Cyrix/TI 486DLC/DLC2, 15 UMC 486SX-S and the NexGen Nx586. 23 SL/SLC/SLC2/SLC3/SX/SX2 and UMC U5D or U5S. 50 bool "486SX" 54 AMD/Cyrix/IBM/Intel SL/SLC/SLC2/SLC3/SX/SX2 and UMC U5S.
|
| /linux/include/linux/mmc/ |
| H A D | mmc.h | 140 #define R1_CARD_IS_LOCKED (1 << 25) /* sx, a */ 150 #define R1_WP_ERASE_SKIP (1 << 15) /* sx, c */ 151 #define R1_CARD_ECC_DISABLED (1 << 14) /* sx, a */ 154 #define R1_CURRENT_STATE(x) ((x & 0x00001E00) >> 9) /* sx, b (4 bits) */ 155 #define R1_READY_FOR_DATA (1 << 8) /* sx, a */ 156 #define R1_SWITCH_ERROR (1 << 7) /* sx, c */
|