Home | History | Annotate | Download | only in include

Lines Matching refs:BYTES

556 #define	__VIRT68K_copy_region_N(BYTES)					\
557 static __inline void __CONCAT(bus_space_copy_region_,BYTES) \
564 __CONCAT(bus_space_copy_region_,BYTES)( \
577 for (o = 0; c != 0; c--, o += BYTES) \
578 __CONCAT(bus_space_write_,BYTES)(t, h2, o2 + o, \
579 __CONCAT(bus_space_read_,BYTES)(t, h1, o1 + o)); \
582 for (o = (c - 1) * BYTES; c != 0; c--, o -= BYTES) \
583 __CONCAT(bus_space_write_,BYTES)(t, h2, o2 + o, \
584 __CONCAT(bus_space_read_,BYTES)(t, h1, o1 + o)); \