Lines Matching refs:dst
29 u8 __iomem *dst = addr; in cx18_memset_io() local
34 if ((count > 0) && ((unsigned long)dst & 1)) { in cx18_memset_io()
35 cx18_writeb(cx, (u8) val, dst); in cx18_memset_io()
37 dst++; in cx18_memset_io()
39 if ((count > 1) && ((unsigned long)dst & 2)) { in cx18_memset_io()
40 cx18_writew(cx, val2, dst); in cx18_memset_io()
42 dst += 2; in cx18_memset_io()
45 cx18_writel(cx, val4, dst); in cx18_memset_io()
47 dst += 4; in cx18_memset_io()
50 cx18_writew(cx, val2, dst); in cx18_memset_io()
52 dst += 2; in cx18_memset_io()
55 cx18_writeb(cx, (u8) val, dst); in cx18_memset_io()