Home | History | Annotate | Download | only in include

Lines Matching refs:BYTES

507 #define	__MACHINE_copy_region_N(BYTES)					\
508 static __inline void __CONCAT(bus_space_copy_region_,BYTES) \
515 __CONCAT(bus_space_copy_region_,BYTES)( \
527 for (o = 0; c != 0; c--, o += BYTES) \
528 __CONCAT(bus_space_write_,BYTES)(t, h2, o2 + o, \
529 __CONCAT(bus_space_read_,BYTES)(t, h1, o1 + o)); \
532 for (o = (c - 1) * BYTES; c != 0; c--, o -= BYTES) \
533 __CONCAT(bus_space_write_,BYTES)(t, h2, o2 + o, \
534 __CONCAT(bus_space_read_,BYTES)(t, h1, o1 + o)); \