Lines Matching refs:BYTES
544 #define __COLDFIRE_copy_region_N(BYTES) \
545 static __inline void __CONCAT(bus_space_copy_region_,BYTES) \
552 __CONCAT(bus_space_copy_region_,BYTES)( \
564 for (o = 0; c != 0; c--, o += BYTES) \
565 __CONCAT(bus_space_write_,BYTES)(t, h2, o2 + o, \
566 __CONCAT(bus_space_read_,BYTES)(t, h1, o1 + o)); \
569 for (o = (c - 1) * BYTES; c != 0; c--, o -= BYTES) \
570 __CONCAT(bus_space_write_,BYTES)(t, h2, o2 + o, \
571 __CONCAT(bus_space_read_,BYTES)(t, h1, o1 + o)); \