iy                 96 arch/sh/kernel/cpu/sh2a/fpu.c 	unsigned int ix, iy;
iy                101 arch/sh/kernel/cpu/sh2a/fpu.c 	iy = hy & 0x7fffffff;
iy                102 arch/sh/kernel/cpu/sh2a/fpu.c 	if (iy < 0x00800000 || ix == 0)
iy                105 arch/sh/kernel/cpu/sh2a/fpu.c 	exp = (iy & 0x7f800000) >> 23;
iy                107 arch/sh/kernel/cpu/sh2a/fpu.c 	iy = (iy & 0x007fffff) | 0x00800000;
iy                108 arch/sh/kernel/cpu/sh2a/fpu.c 	m = (unsigned long long)ix * iy;
iy                163 arch/sh/kernel/cpu/sh2a/fpu.c 	unsigned long long ix, iy;
iy                168 arch/sh/kernel/cpu/sh2a/fpu.c 	iy = hy & 0x7fffffffffffffffLL;
iy                169 arch/sh/kernel/cpu/sh2a/fpu.c 	if (iy < 0x0010000000000000LL || ix == 0)
iy                172 arch/sh/kernel/cpu/sh2a/fpu.c 	exp = (iy & 0x7ff0000000000000LL) >> 52;
iy                174 arch/sh/kernel/cpu/sh2a/fpu.c 	iy = (iy & 0x000fffffffffffffLL) | 0x0010000000000000LL;
iy                175 arch/sh/kernel/cpu/sh2a/fpu.c 	mult64(ix, iy, &mh, &ml);
iy                200 arch/sh/kernel/cpu/sh2a/fpu.c static int denormal_subf1(unsigned int ix, unsigned int iy)
iy                206 arch/sh/kernel/cpu/sh2a/fpu.c 		return ix - iy;
iy                211 arch/sh/kernel/cpu/sh2a/fpu.c 	iy >>= exp - 1;
iy                212 arch/sh/kernel/cpu/sh2a/fpu.c 	if (iy == 0)
iy                216 arch/sh/kernel/cpu/sh2a/fpu.c 	frac -= iy;
iy                227 arch/sh/kernel/cpu/sh2a/fpu.c static int denormal_addf1(unsigned int ix, unsigned int iy)
iy                233 arch/sh/kernel/cpu/sh2a/fpu.c 		return ix + iy;
iy                238 arch/sh/kernel/cpu/sh2a/fpu.c 	iy >>= exp - 1;
iy                239 arch/sh/kernel/cpu/sh2a/fpu.c 	if (iy == 0)
iy                243 arch/sh/kernel/cpu/sh2a/fpu.c 	frac += iy;
iy                254 arch/sh/kernel/cpu/sh2a/fpu.c 	unsigned int ix, iy;
iy                260 arch/sh/kernel/cpu/sh2a/fpu.c 		iy = hy & 0x7fffffff;
iy                261 arch/sh/kernel/cpu/sh2a/fpu.c 		if (iy < 0x00800000) {
iy                262 arch/sh/kernel/cpu/sh2a/fpu.c 			ix = denormal_subf1(ix, iy);
iy                268 arch/sh/kernel/cpu/sh2a/fpu.c 			ix = denormal_subf1(iy, ix);
iy                274 arch/sh/kernel/cpu/sh2a/fpu.c 		iy = hy & 0x7fffffff;
iy                275 arch/sh/kernel/cpu/sh2a/fpu.c 		if (iy < 0x00800000)
iy                276 arch/sh/kernel/cpu/sh2a/fpu.c 			ix = denormal_addf1(ix, iy);
iy                278 arch/sh/kernel/cpu/sh2a/fpu.c 			ix = denormal_addf1(iy, ix);
iy                285 arch/sh/kernel/cpu/sh2a/fpu.c static long long denormal_subd1(unsigned long long ix, unsigned long long iy)
iy                291 arch/sh/kernel/cpu/sh2a/fpu.c 		return ix - iy;
iy                296 arch/sh/kernel/cpu/sh2a/fpu.c 	iy >>= exp - 1;
iy                297 arch/sh/kernel/cpu/sh2a/fpu.c 	if (iy == 0)
iy                301 arch/sh/kernel/cpu/sh2a/fpu.c 	frac -= iy;
iy                312 arch/sh/kernel/cpu/sh2a/fpu.c static long long denormal_addd1(unsigned long long ix, unsigned long long iy)
iy                318 arch/sh/kernel/cpu/sh2a/fpu.c 		return ix + iy;
iy                323 arch/sh/kernel/cpu/sh2a/fpu.c 	iy >>= exp - 1;
iy                324 arch/sh/kernel/cpu/sh2a/fpu.c 	if (iy == 0)
iy                328 arch/sh/kernel/cpu/sh2a/fpu.c 	frac += iy;
iy                339 arch/sh/kernel/cpu/sh2a/fpu.c 	unsigned long long ix, iy;
iy                345 arch/sh/kernel/cpu/sh2a/fpu.c 		iy = hy & 0x7fffffffffffffffLL;
iy                346 arch/sh/kernel/cpu/sh2a/fpu.c 		if (iy < 0x0010000000000000LL) {
iy                347 arch/sh/kernel/cpu/sh2a/fpu.c 			ix = denormal_subd1(ix, iy);
iy                353 arch/sh/kernel/cpu/sh2a/fpu.c 			ix = denormal_subd1(iy, ix);
iy                359 arch/sh/kernel/cpu/sh2a/fpu.c 		iy = hy & 0x7fffffffffffffffLL;
iy                360 arch/sh/kernel/cpu/sh2a/fpu.c 		if (iy < 0x0010000000000000LL)
iy                361 arch/sh/kernel/cpu/sh2a/fpu.c 			ix = denormal_addd1(ix, iy);
iy                363 arch/sh/kernel/cpu/sh2a/fpu.c 			ix = denormal_addd1(iy, ix);
iy               1008 drivers/net/wireless/ath/ath9k/ar9003_calib.c 	int im, ix, iy, temp;
iy               1012 drivers/net/wireless/ath/ath9k/ar9003_calib.c 			for (iy = ix + 1; iy <= MAXIQCAL - 1; iy++) {
iy               1013 drivers/net/wireless/ath/ath9k/ar9003_calib.c 				if (coeff->mag_coeff[i][im][iy] <
iy               1017 drivers/net/wireless/ath/ath9k/ar9003_calib.c 						coeff->mag_coeff[i][im][iy];
iy               1018 drivers/net/wireless/ath/ath9k/ar9003_calib.c 					coeff->mag_coeff[i][im][iy] = temp;
iy               1020 drivers/net/wireless/ath/ath9k/ar9003_calib.c 				if (coeff->phs_coeff[i][im][iy] <
iy               1024 drivers/net/wireless/ath/ath9k/ar9003_calib.c 						coeff->phs_coeff[i][im][iy];
iy               1025 drivers/net/wireless/ath/ath9k/ar9003_calib.c 					coeff->phs_coeff[i][im][iy] = temp;
iy               1753 drivers/video/fbdev/intelfb/intelfbhw.c 	int dat, ix, iy, iw;
iy               1812 drivers/video/fbdev/intelfb/intelfbhw.c 	ix = iy = 0;
iy               1819 drivers/video/fbdev/intelfb/intelfbhw.c 					dat |= cdat[iy*iw + ix++] << (i+j*2)*8;
iy               1821 drivers/video/fbdev/intelfb/intelfbhw.c 			if (ix == iw && iy != (h-1)) {
iy               1823 drivers/video/fbdev/intelfb/intelfbhw.c 				++iy;