Lines Matching refs:count
148 size_t count) in __const_memcpy_toio_aligned32() argument
150 switch (count) { in __const_memcpy_toio_aligned32()
188 void __iowrite32_copy_full(void __iomem *to, const void *from, size_t count);
191 __iowrite32_copy(void __iomem *to, const void *from, size_t count) in __iowrite32_copy() argument
193 if (__builtin_constant_p(count) && in __iowrite32_copy()
194 (count == 8 || count == 4 || count == 2 || count == 1)) { in __iowrite32_copy()
195 __const_memcpy_toio_aligned32(to, from, count); in __iowrite32_copy()
198 __iowrite32_copy_full(to, from, count); in __iowrite32_copy()
205 size_t count) in __const_memcpy_toio_aligned64() argument
207 switch (count) { in __const_memcpy_toio_aligned64()
245 void __iowrite64_copy_full(void __iomem *to, const void *from, size_t count);
248 __iowrite64_copy(void __iomem *to, const void *from, size_t count) in __iowrite64_copy() argument
250 if (__builtin_constant_p(count) && in __iowrite64_copy()
251 (count == 8 || count == 4 || count == 2 || count == 1)) { in __iowrite64_copy()
252 __const_memcpy_toio_aligned64(to, from, count); in __iowrite64_copy()
255 __iowrite64_copy_full(to, from, count); in __iowrite64_copy()