Lines Matching refs:count
60 unsigned int count)
63 insw(port, addr, count);
64 __ide_flush_dcache_range((unsigned long)addr, count * 2);
68 static inline void __ide_insl(unsigned long port, void *addr, unsigned int count)
71 insl(port, addr, count);
72 __ide_flush_dcache_range((unsigned long)addr, count * 4);
77 unsigned long count)
80 outsw(port, addr, count);
81 __ide_flush_dcache_range((unsigned long)addr, count * 2);
86 unsigned long count)
89 outsl(port, addr, count);
90 __ide_flush_dcache_range((unsigned long)addr, count * 4);
94 static inline void __ide_mm_insw(void __iomem *port, void *addr, u32 count)
97 readsw(port, addr, count);
98 __ide_flush_dcache_range((unsigned long)addr, count * 2);
102 static inline void __ide_mm_insl(void __iomem *port, void *addr, u32 count)
105 readsl(port, addr, count);
106 __ide_flush_dcache_range((unsigned long)addr, count * 4);
110 static inline void __ide_mm_outsw(void __iomem *port, void *addr, u32 count)
113 writesw(port, addr, count);
114 __ide_flush_dcache_range((unsigned long)addr, count * 2);
118 static inline void __ide_mm_outsl(void __iomem * port, void *addr, u32 count)
121 writesl(port, addr, count);
122 __ide_flush_dcache_range((unsigned long)addr, count * 4);
131 #define insw(port, addr, count) __ide_insw(port, addr, count)
132 #define insl(port, addr, count) __ide_insl(port, addr, count)
133 #define outsw(port, addr, count) __ide_outsw(port, addr, count)
134 #define outsl(port, addr, count) __ide_outsl(port, addr, count)