Searched refs:xs (Results 1 - 25 of 108) sorted by path

12345

/linux-master/arch/m68k/lib/
H A Dmemset.c12 void *xs = s; local
16 return xs;
72 return xs;
/linux-master/arch/mips/math-emu/
H A Ddp_2008class.c41 return 0x04 << (xs ? 0 : 4);
43 return 0x08 << (xs ? 0 : 4);
45 return 0x10 << (xs ? 0 : 4);
47 return 0x20 << (xs ? 0 : 4);
H A Ddp_fint.c16 int xs; local
27 xs = (x < 0);
28 if (xs) {
43 return builddp(xs, xe + DP_EBIAS, xm & ~DP_HIDDEN_BIT);
H A Ddp_flong.c16 int xs; local
27 xs = (x < 0);
28 if (xs) {
52 return ieee754dp_format(xs, xe, xm);
H A Ddp_fsp.c13 static inline union ieee754dp ieee754dp_nan_fsp(int xs, u64 xm) argument
15 return builddp(xs, DP_EMAX + 1 + DP_EBIAS,
31 return ieee754dp_nanxcpt(ieee754dp_nan_fsp(xs, xm));
34 return ieee754dp_nan_fsp(xs, xm);
37 return ieee754dp_inf(xs);
40 return ieee754dp_zero(xs);
61 return builddp(xs, xe + DP_EBIAS,
H A Ddp_rint.c62 if ((round || sticky) && !xs)
66 if ((round || sticky) && xs)
75 DPSIGN(ret) = xs;
H A Ddp_tint.c34 return ieee754si_overflow(xs);
47 return ieee754si_overflow(xs);
75 if ((round || sticky) && !xs)
79 if ((round || sticky) && xs)
84 if ((xm >> 31) != 0 && (xs == 0 || xm != 0x80000000)) {
87 return ieee754si_overflow(xs);
92 if (xs)
H A Ddp_tlong.c34 return ieee754di_overflow(xs);
45 if (xe == 63 && xs && xm == DP_HIDDEN_BIT)
50 return ieee754di_overflow(xs);
80 if ((round || sticky) && !xs)
84 if ((round || sticky) && xs)
91 return ieee754di_overflow(xs);
96 if (xs)
H A Dsp_2008class.c41 return 0x04 << (xs ? 0 : 4);
43 return 0x08 << (xs ? 0 : 4);
45 return 0x10 << (xs ? 0 : 4);
47 return 0x20 << (xs ? 0 : 4);
H A Dsp_fint.c16 int xs; local
27 xs = (x < 0);
28 if (xs) {
52 return ieee754sp_format(xs, xe, xm);
H A Dsp_flong.c16 int xs; local
27 xs = (x < 0);
28 if (xs) {
51 return ieee754sp_format(xs, xe, xm);
H A Dsp_rint.c63 if ((round || sticky) && !xs)
67 if ((round || sticky) && xs)
76 SPSIGN(ret) = xs;
H A Dsp_sqrt.c38 if (xs) {
48 if (xs) {
H A Dsp_tint.c34 return ieee754si_overflow(xs);
45 if (xe == 31 && xs && xm == SP_HIDDEN_BIT)
50 return ieee754si_overflow(xs);
80 if ((round || sticky) && !xs)
84 if ((round || sticky) && xs)
91 return ieee754si_overflow(xs);
96 if (xs)
H A Dsp_tlong.c34 return ieee754di_overflow(xs);
45 if (xe == 63 && xs && xm == SP_HIDDEN_BIT)
50 return ieee754di_overflow(xs);
76 if ((round || sticky) && !xs)
80 if ((round || sticky) && xs)
87 return ieee754di_overflow(xs);
92 if (xs)
/linux-master/arch/nios2/lib/
H A Dmemset.c23 char *xs = (char *) s; local
26 *xs++ = c;
/linux-master/arch/x86/boot/
H A Dvideo.c259 int xs = boot_params.screen_info.orig_video_cols; local
279 int copy = (xs < saved.x) ? xs : saved.x;
283 npad = (xs < saved.x) ? 0 : xs-saved.x;
285 npad = xs;
303 if (saved.curx >= xs)
304 saved.curx = xs-1;
/linux-master/drivers/staging/fbtft/
H A Dfb_hx8353d.c64 static void set_addr_win(struct fbtft_par *par, int xs, int ys, int xe, int ye) argument
67 write_reg(par, 0x2a, xs >> 8, xs & 0xff, xe >> 8, xe & 0xff);
H A Dfb_hx8357d.c132 static void set_addr_win(struct fbtft_par *par, int xs, int ys, int xe, int ye) argument
135 xs >> 8, xs & 0xff, /* XSTART */
H A Dfb_ili9481.c45 static void set_addr_win(struct fbtft_par *par, int xs, int ys, int xe, int ye) argument
48 xs >> 8, xs & 0xff, xe >> 8, xe & 0xff);
H A Dfb_ili9486.c46 static void set_addr_win(struct fbtft_par *par, int xs, int ys, int xe, int ye) argument
49 xs >> 8, xs & 0xFF, xe >> 8, xe & 0xFF);
H A Dfb_ra8875.c169 static void set_addr_win(struct fbtft_par *par, int xs, int ys, int xe, int ye) argument
172 write_reg(par, 0x30, xs & 0x00FF);
173 write_reg(par, 0x31, (xs & 0xFF00) >> 8);
176 write_reg(par, 0x34, (xs + xe) & 0x00FF);
177 write_reg(par, 0x35, ((xs + xe) & 0xFF00) >> 8);
182 write_reg(par, 0x46, xs & 0xff);
183 write_reg(par, 0x47, (xs >> 8) & 0x03);
H A Dfb_s6d02a1.c100 static void set_addr_win(struct fbtft_par *par, int xs, int ys, int xe, int ye) argument
103 xs >> 8, xs & 0xFF, xe >> 8, xe & 0xFF);
H A Dfb_ssd1305.c122 static void set_addr_win(struct fbtft_par *par, int xs, int ys, int xe, int ye) argument
H A Dfb_ssd1306.c136 static void set_addr_win(struct fbtft_par *par, int xs, int ys, int xe, int ye) argument

Completed in 316 milliseconds

12345