lx                245 arch/mips/kernel/rtlx.c 	struct rtlx_channel *lx;
lx                251 arch/mips/kernel/rtlx.c 	lx = &rtlx->channel[index];
lx                255 arch/mips/kernel/rtlx.c 	lx_write = lx->lx_write;
lx                259 arch/mips/kernel/rtlx.c 		     (size_t)(lx_write + lx->buffer_size - lx->lx_read)
lx                260 arch/mips/kernel/rtlx.c 		     % lx->buffer_size);
lx                263 arch/mips/kernel/rtlx.c 	fl = min(count, (size_t)lx->buffer_size - lx->lx_read);
lx                265 arch/mips/kernel/rtlx.c 	failed = copy_to_user(buff, lx->lx_buffer + lx->lx_read, fl);
lx                271 arch/mips/kernel/rtlx.c 		failed = copy_to_user(buff + fl, lx->lx_buffer, count - fl);
lx                277 arch/mips/kernel/rtlx.c 	lx->lx_read = (lx->lx_read + count) % lx->buffer_size;
lx               1046 drivers/hid/hid-wiimote-modules.c 	__s8 rx, ry, lx, ly, lt, rt;
lx               1092 drivers/hid/hid-wiimote-modules.c 		lx = ext[0] & 0x3e;
lx               1095 drivers/hid/hid-wiimote-modules.c 		lx = ext[0] & 0x3f;
lx               1113 drivers/hid/hid-wiimote-modules.c 	input_report_abs(wdata->extension.input, ABS_HAT1X, lx - 0x20);
lx               1606 drivers/hid/hid-wiimote-modules.c 	__s16 rx, ry, lx, ly;
lx               1649 drivers/hid/hid-wiimote-modules.c 	lx = (ext[0] & 0xff) | ((ext[1] & 0x0f) << 8);
lx               1655 drivers/hid/hid-wiimote-modules.c 	lx -= 0x800;
lx               1667 drivers/hid/hid-wiimote-modules.c 		if (abs(lx) < 500)
lx               1668 drivers/hid/hid-wiimote-modules.c 			wdata->state.calib_pro_sticks[0] = -lx;
lx               1678 drivers/hid/hid-wiimote-modules.c 	lx += wdata->state.calib_pro_sticks[0];
lx               1683 drivers/hid/hid-wiimote-modules.c 	input_report_abs(wdata->extension.input, ABS_X, lx);
lx               4272 drivers/net/wireless/ath/ath9k/ar9003_eeprom.c 	int lx = 0, ly = 0, lhave = 0;
lx               4295 drivers/net/wireless/ath/ath9k/ar9003_eeprom.c 			if (!lhave || dx < (x - lx)) {
lx               4297 drivers/net/wireless/ath/ath9k/ar9003_eeprom.c 				lx = px[ip];
lx               4309 drivers/net/wireless/ath/ath9k/ar9003_eeprom.c 			if (hx == lx)
lx               4312 drivers/net/wireless/ath/ath9k/ar9003_eeprom.c 				y = interpolate(x, lx, hx, ly, hy);
lx                111 lib/hexdump.c  	int j, lx = 0;
lx                138 lib/hexdump.c  			ret = snprintf(linebuf + lx, linebuflen - lx,
lx                141 lib/hexdump.c  			if (ret >= linebuflen - lx)
lx                143 lib/hexdump.c  			lx += ret;
lx                149 lib/hexdump.c  			ret = snprintf(linebuf + lx, linebuflen - lx,
lx                152 lib/hexdump.c  			if (ret >= linebuflen - lx)
lx                154 lib/hexdump.c  			lx += ret;
lx                160 lib/hexdump.c  			ret = snprintf(linebuf + lx, linebuflen - lx,
lx                163 lib/hexdump.c  			if (ret >= linebuflen - lx)
lx                165 lib/hexdump.c  			lx += ret;
lx                169 lib/hexdump.c  			if (linebuflen < lx + 2)
lx                172 lib/hexdump.c  			linebuf[lx++] = hex_asc_hi(ch);
lx                173 lib/hexdump.c  			if (linebuflen < lx + 2)
lx                175 lib/hexdump.c  			linebuf[lx++] = hex_asc_lo(ch);
lx                176 lib/hexdump.c  			if (linebuflen < lx + 2)
lx                178 lib/hexdump.c  			linebuf[lx++] = ' ';
lx                181 lib/hexdump.c  			lx--;
lx                186 lib/hexdump.c  	while (lx < ascii_column) {
lx                187 lib/hexdump.c  		if (linebuflen < lx + 2)
lx                189 lib/hexdump.c  		linebuf[lx++] = ' ';
lx                192 lib/hexdump.c  		if (linebuflen < lx + 2)
lx                195 lib/hexdump.c  		linebuf[lx++] = (isascii(ch) && isprint(ch)) ? ch : '.';
lx                198 lib/hexdump.c  	linebuf[lx] = '\0';
lx                199 lib/hexdump.c  	return lx;
lx                201 lib/hexdump.c  	linebuf[lx++] = '\0';
lx               1026 lib/zlib_deflate/deftree.c     unsigned lx = 0;    /* running index in l_buf */
lx               1031 lib/zlib_deflate/deftree.c         dist = s->d_buf[lx];
lx               1032 lib/zlib_deflate/deftree.c         lc = s->l_buf[lx++];
lx               1058 lib/zlib_deflate/deftree.c         Assert(s->pending < s->lit_bufsize + 2*lx, "pendingBuf overflow");
lx               1060 lib/zlib_deflate/deftree.c     } while (lx < s->last_lit);