xe                117 arch/mips/math-emu/dp_add.c 	if (xe > ye) {
xe                121 arch/mips/math-emu/dp_add.c 		s = xe - ye;
xe                124 arch/mips/math-emu/dp_add.c 	} else if (ye > xe) {
xe                128 arch/mips/math-emu/dp_add.c 		s = ye - xe;
xe                130 arch/mips/math-emu/dp_add.c 		xe += s;
xe                132 arch/mips/math-emu/dp_add.c 	assert(xe == ye);
xe                133 arch/mips/math-emu/dp_add.c 	assert(xe <= DP_EMAX);
xe                144 arch/mips/math-emu/dp_add.c 			xe++;
xe                161 arch/mips/math-emu/dp_add.c 			xe--;
xe                165 arch/mips/math-emu/dp_add.c 	return ieee754dp_format(xs, xe, xm);
xe                117 arch/mips/math-emu/dp_div.c 	re = xe - ye;
xe                 15 arch/mips/math-emu/dp_fint.c 	int xe;
xe                 38 arch/mips/math-emu/dp_fint.c 	xe = DP_FBITS;
xe                 41 arch/mips/math-emu/dp_fint.c 		xe--;
xe                 43 arch/mips/math-emu/dp_fint.c 	return builddp(xs, xe + DP_EBIAS, xm & ~DP_HIDDEN_BIT);
xe                 15 arch/mips/math-emu/dp_flong.c 	int xe;
xe                 38 arch/mips/math-emu/dp_flong.c 	xe = DP_FBITS + 3;
xe                 48 arch/mips/math-emu/dp_flong.c 			xe--;
xe                 52 arch/mips/math-emu/dp_flong.c 	return ieee754dp_format(xs, xe, xm);
xe                120 arch/mips/math-emu/dp_fmax.c 		if (xe > ye)
xe                122 arch/mips/math-emu/dp_fmax.c 		else if (xe < ye)
xe                126 arch/mips/math-emu/dp_fmax.c 		if (xe > ye)
xe                128 arch/mips/math-emu/dp_fmax.c 		else if (xe < ye)
xe                241 arch/mips/math-emu/dp_fmax.c 	if (xe > ye)
xe                243 arch/mips/math-emu/dp_fmax.c 	else if (xe < ye)
xe                120 arch/mips/math-emu/dp_fmin.c 		if (xe > ye)
xe                122 arch/mips/math-emu/dp_fmin.c 		else if (xe < ye)
xe                126 arch/mips/math-emu/dp_fmin.c 		if (xe > ye)
xe                128 arch/mips/math-emu/dp_fmin.c 		else if (xe < ye)
xe                241 arch/mips/math-emu/dp_fmin.c 	if (xe > ye)
xe                243 arch/mips/math-emu/dp_fmin.c 	else if (xe < ye)
xe                 46 arch/mips/math-emu/dp_fsp.c 			xe--;
xe                 61 arch/mips/math-emu/dp_fsp.c 	return builddp(xs, xe + DP_EBIAS,
xe                189 arch/mips/math-emu/dp_maddf.c 	re = xe + ye;
xe                109 arch/mips/math-emu/dp_mul.c 	re = xe + ye;
xe                 37 arch/mips/math-emu/dp_rint.c 	if (xe >= DP_FBITS)
xe                 40 arch/mips/math-emu/dp_rint.c 	if (xe < -1) {
xe                 46 arch/mips/math-emu/dp_rint.c 		residue = xm << (64 - DP_FBITS + xe);
xe                 49 arch/mips/math-emu/dp_rint.c 		xm >>= DP_FBITS - xe;
xe                 74 arch/mips/math-emu/dp_sqrt.c 	if (xe > 512) {		/* x > 2**-512? */
xe                 75 arch/mips/math-emu/dp_sqrt.c 		xe -= 512;	/* x = x / 2**512 */
xe                 77 arch/mips/math-emu/dp_sqrt.c 	} else if (xe < -512) { /* x < 2**-512? */
xe                 78 arch/mips/math-emu/dp_sqrt.c 		xe += 512;	/* x = x * 2**512 */
xe                 82 arch/mips/math-emu/dp_sqrt.c 	x = builddp(0, xe + DP_EBIAS, xm & ~DP_HIDDEN_BIT);
xe                123 arch/mips/math-emu/dp_sub.c 	if (xe > ye) {
xe                127 arch/mips/math-emu/dp_sub.c 		s = xe - ye;
xe                130 arch/mips/math-emu/dp_sub.c 	} else if (ye > xe) {
xe                134 arch/mips/math-emu/dp_sub.c 		s = ye - xe;
xe                136 arch/mips/math-emu/dp_sub.c 		xe += s;
xe                138 arch/mips/math-emu/dp_sub.c 	assert(xe == ye);
xe                139 arch/mips/math-emu/dp_sub.c 	assert(xe <= DP_EMAX);
xe                148 arch/mips/math-emu/dp_sub.c 			xe++;
xe                168 arch/mips/math-emu/dp_sub.c 			xe--;
xe                172 arch/mips/math-emu/dp_sub.c 	return ieee754dp_format(xs, xe, xm);
xe                 43 arch/mips/math-emu/dp_tint.c 	if (xe > 31) {
xe                 50 arch/mips/math-emu/dp_tint.c 	if (xe > DP_FBITS) {
xe                 51 arch/mips/math-emu/dp_tint.c 		xm <<= xe - DP_FBITS;
xe                 52 arch/mips/math-emu/dp_tint.c 	} else if (xe < DP_FBITS) {
xe                 53 arch/mips/math-emu/dp_tint.c 		if (xe < -1) {
xe                 59 arch/mips/math-emu/dp_tint.c 			residue = xm << (64 - DP_FBITS + xe);
xe                 62 arch/mips/math-emu/dp_tint.c 			xm >>= DP_FBITS - xe;
xe                 43 arch/mips/math-emu/dp_tlong.c 	if (xe >= 63) {
xe                 45 arch/mips/math-emu/dp_tlong.c 		if (xe == 63 && xs && xm == DP_HIDDEN_BIT)
xe                 53 arch/mips/math-emu/dp_tlong.c 	if (xe > DP_FBITS) {
xe                 54 arch/mips/math-emu/dp_tlong.c 		xm <<= xe - DP_FBITS;
xe                 55 arch/mips/math-emu/dp_tlong.c 	} else if (xe < DP_FBITS) {
xe                 56 arch/mips/math-emu/dp_tlong.c 		if (xe < -1) {
xe                 65 arch/mips/math-emu/dp_tlong.c 			residue = xm << (xe + 1);
xe                 69 arch/mips/math-emu/dp_tlong.c 			xm >>= DP_FBITS - xe;
xe                 87 arch/mips/math-emu/ieee754dp.c union ieee754dp ieee754dp_format(int sn, int xe, u64 xm)
xe                 94 arch/mips/math-emu/ieee754dp.c 	if (xe < DP_EMIN) {
xe                 96 arch/mips/math-emu/ieee754dp.c 		int es = DP_EMIN - xe;
xe                119 arch/mips/math-emu/ieee754dp.c 		if (xe == DP_EMIN - 1 &&
xe                128 arch/mips/math-emu/ieee754dp.c 			xe++;
xe                134 arch/mips/math-emu/ieee754dp.c 			xe += es;
xe                136 arch/mips/math-emu/ieee754dp.c 			assert(xe == DP_EMIN);
xe                153 arch/mips/math-emu/ieee754dp.c 			xe++;
xe                160 arch/mips/math-emu/ieee754dp.c 	assert(xe >= DP_EMIN);
xe                162 arch/mips/math-emu/ieee754dp.c 	if (xe > DP_EMAX) {
xe                187 arch/mips/math-emu/ieee754dp.c 		assert(xe == DP_EMIN);
xe                195 arch/mips/math-emu/ieee754dp.c 		return builddp(sn, xe + DP_EBIAS, xm & ~DP_HIDDEN_BIT);
xe                 41 arch/mips/math-emu/ieee754dp.h 	(xe++, (xm = (xm >> 1) | (xm & 1)))
xe                 52 arch/mips/math-emu/ieee754dp.h #define DPDNORMX	DPDNORMx(xm, xe)
xe                 45 arch/mips/math-emu/ieee754int.h 	unsigned int xm; int xe; int xs __maybe_unused; int xc
xe                 77 arch/mips/math-emu/ieee754int.h #define EXPLODEXSP EXPLODESP(x, xc, xs, xe, xm)
xe                 83 arch/mips/math-emu/ieee754int.h 	u64 xm; int xe; int xs __maybe_unused; int xc
xe                115 arch/mips/math-emu/ieee754int.h #define EXPLODEXDP EXPLODEDP(x, xc, xs, xe, xm)
xe                141 arch/mips/math-emu/ieee754int.h #define FLUSHXDP FLUSHDP(x, xc, xs, xe, xm)
xe                144 arch/mips/math-emu/ieee754int.h #define FLUSHXSP FLUSHSP(x, xc, xs, xe, xm)
xe                 87 arch/mips/math-emu/ieee754sp.c union ieee754sp ieee754sp_format(int sn, int xe, unsigned int xm)
xe                 94 arch/mips/math-emu/ieee754sp.c 	if (xe < SP_EMIN) {
xe                 96 arch/mips/math-emu/ieee754sp.c 		int es = SP_EMIN - xe;
xe                119 arch/mips/math-emu/ieee754sp.c 		if (xe == SP_EMIN - 1 &&
xe                128 arch/mips/math-emu/ieee754sp.c 			xe++;
xe                133 arch/mips/math-emu/ieee754sp.c 			xe += es;
xe                135 arch/mips/math-emu/ieee754sp.c 			assert(xe == SP_EMIN);
xe                152 arch/mips/math-emu/ieee754sp.c 			xe++;
xe                159 arch/mips/math-emu/ieee754sp.c 	assert(xe >= SP_EMIN);
xe                161 arch/mips/math-emu/ieee754sp.c 	if (xe > SP_EMAX) {
xe                186 arch/mips/math-emu/ieee754sp.c 		assert(xe == SP_EMIN);
xe                194 arch/mips/math-emu/ieee754sp.c 		return buildsp(sn, xe + SP_EBIAS, xm & ~SP_HIDDEN_BIT);
xe                 48 arch/mips/math-emu/ieee754sp.h 	(xe++, (xm = XSPSRS1(xm)))
xe                 56 arch/mips/math-emu/ieee754sp.h #define SPDNORMX	SPDNORMx(xm, xe)
xe                117 arch/mips/math-emu/sp_add.c 	if (xe > ye) {
xe                121 arch/mips/math-emu/sp_add.c 		s = xe - ye;
xe                124 arch/mips/math-emu/sp_add.c 	} else if (ye > xe) {
xe                128 arch/mips/math-emu/sp_add.c 		s = ye - xe;
xe                130 arch/mips/math-emu/sp_add.c 		xe += s;
xe                132 arch/mips/math-emu/sp_add.c 	assert(xe == ye);
xe                133 arch/mips/math-emu/sp_add.c 	assert(xe <= SP_EMAX);
xe                160 arch/mips/math-emu/sp_add.c 			xe--;
xe                164 arch/mips/math-emu/sp_add.c 	return ieee754sp_format(xs, xe, xm);
xe                117 arch/mips/math-emu/sp_div.c 	re = xe - ye;
xe                 73 arch/mips/math-emu/sp_fdp.c 	return ieee754sp_format(xs, xe, rm);
xe                 15 arch/mips/math-emu/sp_fint.c 	int xe;
xe                 36 arch/mips/math-emu/sp_fint.c 	xe = SP_FBITS + 3;
xe                 49 arch/mips/math-emu/sp_fint.c 			xe--;
xe                 52 arch/mips/math-emu/sp_fint.c 	return ieee754sp_format(xs, xe, xm);
xe                 15 arch/mips/math-emu/sp_flong.c 	int xe;
xe                 36 arch/mips/math-emu/sp_flong.c 	xe = SP_FBITS + 3;
xe                 48 arch/mips/math-emu/sp_flong.c 			xe--;
xe                 51 arch/mips/math-emu/sp_flong.c 	return ieee754sp_format(xs, xe, xm);
xe                120 arch/mips/math-emu/sp_fmax.c 		if (xe > ye)
xe                122 arch/mips/math-emu/sp_fmax.c 		else if (xe < ye)
xe                126 arch/mips/math-emu/sp_fmax.c 		if (xe > ye)
xe                128 arch/mips/math-emu/sp_fmax.c 		else if (xe < ye)
xe                241 arch/mips/math-emu/sp_fmax.c 	if (xe > ye)
xe                243 arch/mips/math-emu/sp_fmax.c 	else if (xe < ye)
xe                120 arch/mips/math-emu/sp_fmin.c 		if (xe > ye)
xe                122 arch/mips/math-emu/sp_fmin.c 		else if (xe < ye)
xe                126 arch/mips/math-emu/sp_fmin.c 		if (xe > ye)
xe                128 arch/mips/math-emu/sp_fmin.c 		else if (xe < ye)
xe                241 arch/mips/math-emu/sp_fmin.c 	if (xe > ye)
xe                243 arch/mips/math-emu/sp_fmin.c 	else if (xe < ye)
xe                160 arch/mips/math-emu/sp_maddf.c 	re = xe + ye;
xe                109 arch/mips/math-emu/sp_mul.c 	re = xe + ye;
xe                 37 arch/mips/math-emu/sp_rint.c 	if (xe >= SP_FBITS)
xe                 40 arch/mips/math-emu/sp_rint.c 	if (xe < -1) {
xe                 46 arch/mips/math-emu/sp_rint.c 		residue = xm << (xe + 1);
xe                 50 arch/mips/math-emu/sp_rint.c 		xm >>= SP_FBITS - xe;
xe                121 arch/mips/math-emu/sp_sub.c 	if (xe > ye) {
xe                125 arch/mips/math-emu/sp_sub.c 		s = xe - ye;
xe                128 arch/mips/math-emu/sp_sub.c 	} else if (ye > xe) {
xe                132 arch/mips/math-emu/sp_sub.c 		s = ye - xe;
xe                134 arch/mips/math-emu/sp_sub.c 		xe += s;
xe                136 arch/mips/math-emu/sp_sub.c 	assert(xe == ye);
xe                137 arch/mips/math-emu/sp_sub.c 	assert(xe <= SP_EMAX);
xe                164 arch/mips/math-emu/sp_sub.c 			xe--;
xe                168 arch/mips/math-emu/sp_sub.c 	return ieee754sp_format(xs, xe, xm);
xe                 43 arch/mips/math-emu/sp_tint.c 	if (xe >= 31) {
xe                 45 arch/mips/math-emu/sp_tint.c 		if (xe == 31 && xs && xm == SP_HIDDEN_BIT)
xe                 53 arch/mips/math-emu/sp_tint.c 	if (xe > SP_FBITS) {
xe                 54 arch/mips/math-emu/sp_tint.c 		xm <<= xe - SP_FBITS;
xe                 56 arch/mips/math-emu/sp_tint.c 		if (xe < -1) {
xe                 65 arch/mips/math-emu/sp_tint.c 			residue = xm << (xe + 1);
xe                 69 arch/mips/math-emu/sp_tint.c 			xm >>= SP_FBITS - xe;
xe                 43 arch/mips/math-emu/sp_tlong.c 	if (xe >= 63) {
xe                 45 arch/mips/math-emu/sp_tlong.c 		if (xe == 63 && xs && xm == SP_HIDDEN_BIT)
xe                 53 arch/mips/math-emu/sp_tlong.c 	if (xe > SP_FBITS) {
xe                 54 arch/mips/math-emu/sp_tlong.c 		xm <<= xe - SP_FBITS;
xe                 55 arch/mips/math-emu/sp_tlong.c 	} else if (xe < SP_FBITS) {
xe                 56 arch/mips/math-emu/sp_tlong.c 		if (xe < -1) {
xe                 62 arch/mips/math-emu/sp_tlong.c 			residue = xm << (32 - SP_FBITS + xe);
xe                 65 arch/mips/math-emu/sp_tlong.c 			xm >>= SP_FBITS - xe;
xe                226 drivers/staging/fbtft/fb_agm1264k-fl.c 	int xs, ys_page, xe, ye_page;
xe                230 drivers/staging/fbtft/fb_agm1264k-fl.c static void set_addr_win(struct fbtft_par *par, int xs, int ys, int xe, int ye)
xe                234 drivers/staging/fbtft/fb_agm1264k-fl.c 	addr_win.xe = xe;
xe                240 drivers/staging/fbtft/fb_agm1264k-fl.c 		      int xs, int xe, int y)
xe                244 drivers/staging/fbtft/fb_agm1264k-fl.c 	for (x = xs; x < xe; ++x) {
xe                375 drivers/staging/fbtft/fb_agm1264k-fl.c 		if (addr_win.xe >= par->info->var.xres / 2) {
xe                379 drivers/staging/fbtft/fb_agm1264k-fl.c 					      addr_win.xe + 1, y);
xe                381 drivers/staging/fbtft/fb_agm1264k-fl.c 			len = addr_win.xe + 1 - par->info->var.xres / 2;
xe                108 drivers/staging/fbtft/fb_bd663474.c static void set_addr_win(struct fbtft_par *par, int xs, int ys, int xe, int ye)
xe                109 drivers/staging/fbtft/fb_hx8340bn.c static void set_addr_win(struct fbtft_par *par, int xs, int ys, int xe, int ye)
xe                111 drivers/staging/fbtft/fb_hx8340bn.c 	write_reg(par, MIPI_DCS_SET_COLUMN_ADDRESS, 0x00, xs, 0x00, xe);
xe                 77 drivers/staging/fbtft/fb_hx8347d.c static void set_addr_win(struct fbtft_par *par, int xs, int ys, int xe, int ye)
xe                 81 drivers/staging/fbtft/fb_hx8347d.c 	write_reg(par, 0x04, (xe >> 8) & 0xFF);
xe                 82 drivers/staging/fbtft/fb_hx8347d.c 	write_reg(par, 0x05, xe & 0xFF);
xe                 64 drivers/staging/fbtft/fb_hx8353d.c static void set_addr_win(struct fbtft_par *par, int xs, int ys, int xe, int ye)
xe                 67 drivers/staging/fbtft/fb_hx8353d.c 	write_reg(par, 0x2a, xs >> 8, xs & 0xff, xe >> 8, xe & 0xff);
xe                132 drivers/staging/fbtft/fb_hx8357d.c static void set_addr_win(struct fbtft_par *par, int xs, int ys, int xe, int ye)
xe                136 drivers/staging/fbtft/fb_hx8357d.c 		  xe >> 8, xe & 0xff); /* XEND */
xe                116 drivers/staging/fbtft/fb_ili9163.c 			 int xe, int ye)
xe                121 drivers/staging/fbtft/fb_ili9163.c 			  xs >> 8, xs & 0xff, xe >> 8, xe & 0xff);
xe                129 drivers/staging/fbtft/fb_ili9163.c 			  (xe + __OFFSET) >> 8, (xe + __OFFSET) & 0xff);
xe                136 drivers/staging/fbtft/fb_ili9163.c 			  xs >> 8, xs & 0xff, xe >> 8, xe & 0xff);
xe                165 drivers/staging/fbtft/fb_ili9320.c static void set_addr_win(struct fbtft_par *par, int xs, int ys, int xe, int ye)
xe                157 drivers/staging/fbtft/fb_ili9325.c static void set_addr_win(struct fbtft_par *par, int xs, int ys, int xe, int ye)
xe                 82 drivers/staging/fbtft/fb_ili9340.c static void set_addr_win(struct fbtft_par *par, int xs, int ys, int xe, int ye)
xe                 85 drivers/staging/fbtft/fb_ili9340.c 		  xs >> 8, xs & 0xFF, xe >> 8, xe & 0xFF);
xe                 68 drivers/staging/fbtft/fb_ili9341.c static void set_addr_win(struct fbtft_par *par, int xs, int ys, int xe, int ye)
xe                 71 drivers/staging/fbtft/fb_ili9341.c 		  (xs >> 8) & 0xFF, xs & 0xFF, (xe >> 8) & 0xFF, xe & 0xFF);
xe                 45 drivers/staging/fbtft/fb_ili9481.c static void set_addr_win(struct fbtft_par *par, int xs, int ys, int xe, int ye)
xe                 48 drivers/staging/fbtft/fb_ili9481.c 		  xs >> 8, xs & 0xff, xe >> 8, xe & 0xff);
xe                 46 drivers/staging/fbtft/fb_ili9486.c static void set_addr_win(struct fbtft_par *par, int xs, int ys, int xe, int ye)
xe                 49 drivers/staging/fbtft/fb_ili9486.c 		  xs >> 8, xs & 0xFF, xe >> 8, xe & 0xFF);
xe                 86 drivers/staging/fbtft/fb_pcd8544.c static void set_addr_win(struct fbtft_par *par, int xs, int ys, int xe, int ye)
xe                169 drivers/staging/fbtft/fb_ra8875.c static void set_addr_win(struct fbtft_par *par, int xs, int ys, int xe, int ye)
xe                176 drivers/staging/fbtft/fb_ra8875.c 	write_reg(par, 0x34, (xs + xe) & 0x00FF);
xe                177 drivers/staging/fbtft/fb_ra8875.c 	write_reg(par, 0x35, ((xs + xe) & 0xFF00) >> 8);
xe                100 drivers/staging/fbtft/fb_s6d02a1.c static void set_addr_win(struct fbtft_par *par, int xs, int ys, int xe, int ye)
xe                103 drivers/staging/fbtft/fb_s6d02a1.c 		  xs >> 8, xs & 0xFF, xe >> 8, xe & 0xFF);
xe                 72 drivers/staging/fbtft/fb_s6d1121.c static void set_addr_win(struct fbtft_par *par, int xs, int ys, int xe, int ye)
xe                 86 drivers/staging/fbtft/fb_sh1106.c static void set_addr_win(struct fbtft_par *par, int xs, int ys, int xe, int ye)
xe                 69 drivers/staging/fbtft/fb_ssd1289.c static void set_addr_win(struct fbtft_par *par, int xs, int ys, int xe, int ye)
xe                122 drivers/staging/fbtft/fb_ssd1305.c static void set_addr_win(struct fbtft_par *par, int xs, int ys, int xe, int ye)
xe                136 drivers/staging/fbtft/fb_ssd1306.c static void set_addr_win(struct fbtft_par *par, int xs, int ys, int xe, int ye)
xe                 75 drivers/staging/fbtft/fb_ssd1325.c static void set_addr_win(struct fbtft_par *par, int xs, int ys, int xe, int ye)
xe                 78 drivers/staging/fbtft/fb_ssd1325.c 		      "%s(xs=%d, ys=%d, xe=%d, ye=%d)\n", __func__, xs, ys, xe,
xe                 60 drivers/staging/fbtft/fb_ssd1331.c static void set_addr_win(struct fbtft_par *par, int xs, int ys, int xe, int ye)
xe                 62 drivers/staging/fbtft/fb_ssd1331.c 	write_reg(par, 0x15, xs, xe);
xe                 61 drivers/staging/fbtft/fb_ssd1351.c static void set_addr_win(struct fbtft_par *par, int xs, int ys, int xe, int ye)
xe                 63 drivers/staging/fbtft/fb_ssd1351.c 	write_reg(par, 0x15, xs, xe);
xe                 86 drivers/staging/fbtft/fb_st7735r.c static void set_addr_win(struct fbtft_par *par, int xs, int ys, int xe, int ye)
xe                 89 drivers/staging/fbtft/fb_st7735r.c 		  xs >> 8, xs & 0xFF, xe >> 8, xe & 0xFF);
xe                 50 drivers/staging/fbtft/fb_tinylcd.c static void set_addr_win(struct fbtft_par *par, int xs, int ys, int xe, int ye)
xe                 53 drivers/staging/fbtft/fb_tinylcd.c 		  xs >> 8, xs & 0xFF, xe >> 8, xe & 0xFF);
xe                 72 drivers/staging/fbtft/fb_tls8204.c static void set_addr_win(struct fbtft_par *par, int xs, int ys, int xe, int ye)
xe                105 drivers/staging/fbtft/fb_uc1611.c static void set_addr_win(struct fbtft_par *par, int xs, int ys, int xe, int ye)
xe                110 drivers/staging/fbtft/fb_uc1701.c static void set_addr_win(struct fbtft_par *par, int xs, int ys, int xe, int ye)
xe                117 drivers/staging/fbtft/fb_upd161704.c static void set_addr_win(struct fbtft_par *par, int xs, int ys, int xe, int ye)
xe                181 drivers/staging/fbtft/fb_watterott.c static void set_addr_win(struct fbtft_par *par, int xs, int ys, int xe, int ye)
xe                217 drivers/staging/fbtft/fbtft-core.c static void fbtft_set_addr_win(struct fbtft_par *par, int xs, int ys, int xe,
xe                221 drivers/staging/fbtft/fbtft-core.c 		  (xs >> 8) & 0xFF, xs & 0xFF, (xe >> 8) & 0xFF, xe & 0xFF);
xe                 67 drivers/staging/fbtft/fbtft.h 			     int xs, int ys, int xe, int ye);
xe                 86 drivers/staging/speakup/selection.c 	speakup_sel_work.sel.xe = spk_xe + 1;
xe                202 drivers/tty/vt/selection.c 	v->xe = min_t(u16, v->xe - 1, vc->vc_cols - 1);
xe                205 drivers/tty/vt/selection.c 	pe = v->ye * vc->vc_size_row + (v->xe << 1);
xe                303 fs/f2fs/xattr.c 				const char *name, struct f2fs_xattr_entry **xe,
xe                328 fs/f2fs/xattr.c 		*xe = __find_inline_xattr(inode, txattr_addr, &last_addr,
xe                330 fs/f2fs/xattr.c 		if (*xe) {
xe                348 fs/f2fs/xattr.c 	*xe = __find_xattr(cur_addr, last_txattr_addr, index, len, name);
xe                349 fs/f2fs/xattr.c 	if (!*xe) {
xe                357 fs/f2fs/xattr.c 	if (IS_XATTR_LAST_ENTRY(*xe)) {
xe               1094 fs/ocfs2/ocfs2_fs.h static inline void ocfs2_xattr_set_local(struct ocfs2_xattr_entry *xe,
xe               1098 fs/ocfs2/ocfs2_fs.h 		xe->xe_type |= OCFS2_XATTR_ENTRY_LOCAL;
xe               1100 fs/ocfs2/ocfs2_fs.h 		xe->xe_type &= ~OCFS2_XATTR_ENTRY_LOCAL;
xe               1103 fs/ocfs2/ocfs2_fs.h static inline int ocfs2_xattr_is_local(struct ocfs2_xattr_entry *xe)
xe               1105 fs/ocfs2/ocfs2_fs.h 	return xe->xe_type & OCFS2_XATTR_ENTRY_LOCAL;
xe               1108 fs/ocfs2/ocfs2_fs.h static inline void ocfs2_xattr_set_type(struct ocfs2_xattr_entry *xe, int type)
xe               1110 fs/ocfs2/ocfs2_fs.h 	xe->xe_type |= type & OCFS2_XATTR_TYPE_MASK;
xe               1113 fs/ocfs2/ocfs2_fs.h static inline int ocfs2_xattr_get_type(struct ocfs2_xattr_entry *xe)
xe               1115 fs/ocfs2/ocfs2_fs.h 	return xe->xe_type & OCFS2_XATTR_TYPE_MASK;
xe                233 fs/ocfs2/xattr.c static int namevalue_size_xe(struct ocfs2_xattr_entry *xe)
xe                235 fs/ocfs2/xattr.c 	u64 value_len = le64_to_cpu(xe->xe_value_size);
xe                238 fs/ocfs2/xattr.c 	       ocfs2_xattr_is_local(xe));
xe                239 fs/ocfs2/xattr.c 	return namevalue_size(xe->xe_name_len, value_len);
xe                572 fs/ocfs2/xattr.c static int ocfs2_xe_entry_usage(struct ocfs2_xattr_entry *xe)
xe                574 fs/ocfs2/xattr.c 	return namevalue_size_xe(xe) +
xe               3048 fs/ocfs2/xattr.c 	struct ocfs2_xattr_entry *xe = NULL;
xe               3078 fs/ocfs2/xattr.c 		xe = xis->here;
xe               3079 fs/ocfs2/xattr.c 		name_offset = le16_to_cpu(xe->xe_name_offset);
xe               3080 fs/ocfs2/xattr.c 		name_len = OCFS2_XATTR_SIZE(xe->xe_name_len);
xe               3086 fs/ocfs2/xattr.c 		xe = xbs->here;
xe               3087 fs/ocfs2/xattr.c 		name_offset = le16_to_cpu(xe->xe_name_offset);
xe               3088 fs/ocfs2/xattr.c 		name_len = OCFS2_XATTR_SIZE(xe->xe_name_len);
xe               3113 fs/ocfs2/xattr.c 		if (!ocfs2_xattr_is_local(xe))
xe               3120 fs/ocfs2/xattr.c 	value_size = le64_to_cpu(xe->xe_value_size);
xe               3133 fs/ocfs2/xattr.c 			if (!ocfs2_xattr_is_local(xe))
xe               3145 fs/ocfs2/xattr.c 		if (!ocfs2_xattr_is_local(xe)) {
xe               3172 fs/ocfs2/xattr.c 		if ((ocfs2_xattr_is_local(xe) &&
xe               3174 fs/ocfs2/xattr.c 		    (!ocfs2_xattr_is_local(xe) &&
xe               3759 fs/ocfs2/xattr.c 	struct ocfs2_xattr_entry *xe = NULL;
xe               3767 fs/ocfs2/xattr.c 		xe = &xh->xh_entries[i];
xe               3769 fs/ocfs2/xattr.c 		if (name_hash > le32_to_cpu(xe->xe_name_hash))
xe               3771 fs/ocfs2/xattr.c 		else if (name_hash < le32_to_cpu(xe->xe_name_hash))
xe               3774 fs/ocfs2/xattr.c 		cmp = name_index - ocfs2_xattr_get_type(xe);
xe               3776 fs/ocfs2/xattr.c 			cmp = name_len - xe->xe_name_len;
xe               3823 fs/ocfs2/xattr.c 	struct ocfs2_xattr_entry *xe = NULL;
xe               3857 fs/ocfs2/xattr.c 		xe = &xh->xh_entries[0];
xe               3858 fs/ocfs2/xattr.c 		if (name_hash < le32_to_cpu(xe->xe_name_hash)) {
xe               3869 fs/ocfs2/xattr.c 			xe = &xh->xh_entries[le16_to_cpu(xh->xh_count) - 1];
xe               3874 fs/ocfs2/xattr.c 		if (name_hash > le32_to_cpu(xe->xe_name_hash)) {
xe               4191 fs/ocfs2/xattr.c 	struct ocfs2_xattr_entry *xe;
xe               4213 fs/ocfs2/xattr.c 	xe = &xb_xh->xh_entries[count - 1];
xe               4214 fs/ocfs2/xattr.c 	offset = le16_to_cpu(xe->xe_name_offset) + off_change;
xe               4396 fs/ocfs2/xattr.c 	struct ocfs2_xattr_entry *xe;
xe               4439 fs/ocfs2/xattr.c 	xe = xh->xh_entries;
xe               4441 fs/ocfs2/xattr.c 	for (i = 0; i < le16_to_cpu(xh->xh_count); i++, xe++) {
xe               4442 fs/ocfs2/xattr.c 		offset = le16_to_cpu(xe->xe_name_offset);
xe               4443 fs/ocfs2/xattr.c 		len = namevalue_size_xe(xe);
xe               4457 fs/ocfs2/xattr.c 			xe->xe_name_offset = cpu_to_le16(end - len);
xe               4636 fs/ocfs2/xattr.c 	struct ocfs2_xattr_entry *xe;
xe               4692 fs/ocfs2/xattr.c 		xe = &xh->xh_entries[start-1];
xe               4704 fs/ocfs2/xattr.c 		xh->xh_entries[0].xe_name_hash = xe->xe_name_hash;
xe               4723 fs/ocfs2/xattr.c 		xe = &xh->xh_entries[i];
xe               4724 fs/ocfs2/xattr.c 		name_value_len += namevalue_size_xe(xe);
xe               4725 fs/ocfs2/xattr.c 		if (le16_to_cpu(xe->xe_name_offset) < name_offset)
xe               4726 fs/ocfs2/xattr.c 			name_offset = le16_to_cpu(xe->xe_name_offset);
xe               4737 fs/ocfs2/xattr.c 	xe = &xh->xh_entries[start];
xe               4740 fs/ocfs2/xattr.c 			(int)((char *)xe - (char *)xh),
xe               4742 fs/ocfs2/xattr.c 	memmove((char *)xh->xh_entries, (char *)xe, len);
xe               4743 fs/ocfs2/xattr.c 	xe = &xh->xh_entries[count - start];
xe               4745 fs/ocfs2/xattr.c 	memset((char *)xe, 0, len);
xe               4753 fs/ocfs2/xattr.c 		xe = &xh->xh_entries[i];
xe               4754 fs/ocfs2/xattr.c 		if (le16_to_cpu(xe->xe_name_offset) <
xe               4756 fs/ocfs2/xattr.c 			xh->xh_free_start = xe->xe_name_offset;
xe               5362 fs/ocfs2/xattr.c 	struct ocfs2_xattr_entry *xe;
xe               5369 fs/ocfs2/xattr.c 	xe = &xh->xh_entries[xe_off];
xe               5371 fs/ocfs2/xattr.c 	BUG_ON(!xe || ocfs2_xattr_is_local(xe));
xe               5373 fs/ocfs2/xattr.c 	offset = le16_to_cpu(xe->xe_name_offset) +
xe               5374 fs/ocfs2/xattr.c 		 OCFS2_XATTR_SIZE(xe->xe_name_len);
xe               5409 fs/ocfs2/xattr.c 	xe->xe_value_size = cpu_to_le64(len);
xe               5660 fs/ocfs2/xattr.c 	struct ocfs2_xattr_entry *xe;
xe               5672 fs/ocfs2/xattr.c 		xe = &xh->xh_entries[i];
xe               5673 fs/ocfs2/xattr.c 		if (ocfs2_xattr_is_local(xe))
xe               5770 fs/ocfs2/xattr.c 	struct ocfs2_xattr_entry *xe;
xe               5783 fs/ocfs2/xattr.c 		xe = xis->here;
xe               5784 fs/ocfs2/xattr.c 		name_offset = le16_to_cpu(xe->xe_name_offset);
xe               5785 fs/ocfs2/xattr.c 		name_len = OCFS2_XATTR_SIZE(xe->xe_name_len);
xe               5792 fs/ocfs2/xattr.c 		xe = xbs->here;
xe               5793 fs/ocfs2/xattr.c 		name_offset = le16_to_cpu(xe->xe_name_offset);
xe               5794 fs/ocfs2/xattr.c 		name_len = OCFS2_XATTR_SIZE(xe->xe_name_len);
xe               5826 fs/ocfs2/xattr.c 	if (ocfs2_xattr_is_local(xe))
xe               5945 fs/ocfs2/xattr.c 	struct ocfs2_xattr_entry *xe;
xe               5951 fs/ocfs2/xattr.c 		xe = &header->xh_entries[i];
xe               5953 fs/ocfs2/xattr.c 		if (ocfs2_xattr_is_local(xe))
xe               5957 fs/ocfs2/xattr.c 			le16_to_cpu(xe->xe_name_offset) +
xe               5958 fs/ocfs2/xattr.c 			OCFS2_XATTR_SIZE(xe->xe_name_len));
xe               6008 fs/ocfs2/xattr.c 	struct ocfs2_xattr_entry *xe = &xh->xh_entries[offset];
xe               6024 fs/ocfs2/xattr.c 			 OCFS2_XATTR_SIZE(xe->xe_name_len));
xe               6046 fs/ocfs2/xattr.c 	struct ocfs2_xattr_entry *xe;
xe               6065 fs/ocfs2/xattr.c 		xe = &xh->xh_entries[i];
xe               6067 fs/ocfs2/xattr.c 		if (ocfs2_xattr_is_local(xe))
xe               6180 fs/ocfs2/xattr.c typedef int (should_xattr_reflinked)(struct ocfs2_xattr_entry *xe);
xe               6224 fs/ocfs2/xattr.c 	struct ocfs2_xattr_entry *xe;
xe               6227 fs/ocfs2/xattr.c 		xe = &xh->xh_entries[i];
xe               6228 fs/ocfs2/xattr.c 		if (ocfs2_xattr_is_local(xe))
xe               6266 fs/ocfs2/xattr.c 	struct ocfs2_xattr_entry *xe = &xh->xh_entries[offset];
xe               6269 fs/ocfs2/xattr.c 		le16_to_cpu(xe->xe_name_offset) +
xe               6270 fs/ocfs2/xattr.c 		OCFS2_XATTR_SIZE(xe->xe_name_len));
xe               6352 fs/ocfs2/xattr.c 	struct ocfs2_xattr_entry *xe, *last;
xe               6363 fs/ocfs2/xattr.c 		xe = &xh->xh_entries[i];
xe               6365 fs/ocfs2/xattr.c 		if (args->xattr_reflinked && !args->xattr_reflinked(xe)) {
xe               6366 fs/ocfs2/xattr.c 			xe = &new_xh->xh_entries[j];
xe               6370 fs/ocfs2/xattr.c 				memmove(xe, xe + 1,
xe               6371 fs/ocfs2/xattr.c 					(void *)last - (void *)xe);
xe               6384 fs/ocfs2/xattr.c 		if (ocfs2_xattr_is_local(xe))
xe               7121 fs/ocfs2/xattr.c static int ocfs2_reflink_xattr_no_security(struct ocfs2_xattr_entry *xe)
xe               7123 fs/ocfs2/xattr.c 	int type = ocfs2_xattr_get_type(xe);
xe                 17 include/uapi/linux/tiocl.h 	unsigned short xe;	/* X end */