smooth            213 drivers/input/mouse/appletouch.c 	int			smooth[ATP_SMOOTHSIZE];
smooth            391 drivers/input/mouse/appletouch.c 	memset(dev->smooth, 0, 4 * sizeof(dev->smooth[0]));
smooth            394 drivers/input/mouse/appletouch.c 		dev->smooth[i + 4] = xy_sensors[i] << ATP_SCALE;
smooth            395 drivers/input/mouse/appletouch.c 	memset(&dev->smooth[nb_sensors + 4], 0, 4 * sizeof(dev->smooth[0]));
smooth            399 drivers/input/mouse/appletouch.c 		dev->smooth_tmp[0] = (dev->smooth[0] + dev->smooth[1]) / 2;
smooth            403 drivers/input/mouse/appletouch.c 			dev->smooth_tmp[i] = (dev->smooth[i - 1] +
smooth            404 drivers/input/mouse/appletouch.c 					      dev->smooth[i] * 2 +
smooth            405 drivers/input/mouse/appletouch.c 					      dev->smooth[i + 1]) / 4;
smooth            408 drivers/input/mouse/appletouch.c 		dev->smooth_tmp[i] = (dev->smooth[i - 1] + dev->smooth[i]) / 2;
smooth            410 drivers/input/mouse/appletouch.c 		memcpy(dev->smooth, dev->smooth_tmp, sizeof(dev->smooth));
smooth            418 drivers/input/mouse/appletouch.c 		if ((dev->smooth[i] >> ATP_SCALE) > 0) {
smooth            419 drivers/input/mouse/appletouch.c 			pcum += dev->smooth[i] * i;
smooth            420 drivers/input/mouse/appletouch.c 			psum += dev->smooth[i];
smooth            441 drivers/video/fbdev/mmp/hw/mmp_ctrl.h #define	 CFG_GRA_HSMOOTH(smooth)		((smooth)<<14)
smooth            462 drivers/video/fbdev/mmp/hw/mmp_ctrl.h #define	 CFG_DMA_HSMOOTH(smooth)		((smooth)<<6)
smooth            232 drivers/video/fbdev/pxa168fb.h #define     CFG_GRA_HSMOOTH(smooth)		((smooth) << 14)
smooth            249 drivers/video/fbdev/pxa168fb.h #define     CFG_DMA_HSMOOTH(smooth)		((smooth) << 6)