Lines Matching refs:h2
93 #define __dbs_copy(sz, tn, t, h1, o1, h2, o2, cnt) \
96 __BUS_SPACE_ADDRESS_SANITY((h2) + (o2), tn, "bus addr 2"); \
97 (*(t)->__dbs_opname(c,sz))((t)->dbs_cookie, h1, o1, h2, o2, cnt); \
237 #define bus_space_copy_region_1(t, h1, o1, h2, o2, c) \
238 __dbs_copy(1, uint8_t, (t), (h1), (o1), (h2), (o2), (c))
239 #define bus_space_copy_region_2(t, h1, o1, h2, o2, c) \
240 __dbs_copy(2, uint16_t, (t), (h1), (o1), (h2), (o2), (c))
241 #define bus_space_copy_region_4(t, h1, o1, h2, o2, c) \
242 __dbs_copy(4, uint32_t, (t), (h1), (o1), (h2), (o2), (c))
243 #define bus_space_copy_region_8(t, h1, o1, h2, o2, c) \
244 __dbs_copy(8, uint64_t, (t), (h1), (o1), (h2), (o2), (c))