Home | History | Annotate | Download | only in include

Lines Matching refs:BYTES

690 #define	__MAC68K_copy_region_N(BYTES)					\
691 static __inline void __CONCAT(bus_space_copy_region_,BYTES) \
698 __CONCAT(bus_space_copy_region_,BYTES)( \
710 for (o = 0; c != 0; c--, o += BYTES) \
711 __CONCAT(bus_space_write_,BYTES)(t, h2, o2 + o, \
712 __CONCAT(bus_space_read_,BYTES)(t, h1, o1 + o)); \
715 for (o = (c - 1) * BYTES; c != 0; c--, o -= BYTES) \
716 __CONCAT(bus_space_write_,BYTES)(t, h2, o2 + o, \
717 __CONCAT(bus_space_read_,BYTES)(t, h1, o1 + o)); \