Lines Matching refs:h2
93 #define __bs_copy(sz, tn, t, h1, o1, h2, o2, cnt) \
96 __BUS_SPACE_ADDRESS_SANITY((h2) + (o2), tn, "bus addr 2"); \
97 (*(t)->__bs_opname(c,sz))((t)->bs_cookie, h1, o1, h2, o2, cnt); \
302 #define bus_space_copy_region_1(t, h1, o1, h2, o2, c) \
303 __bs_copy(1, uint8_t, (t), (h1), (o1), (h2), (o2), (c))
304 #define bus_space_copy_region_2(t, h1, o1, h2, o2, c) \
305 __bs_copy(2, uint16_t, (t), (h1), (o1), (h2), (o2), (c))
306 #define bus_space_copy_region_4(t, h1, o1, h2, o2, c) \
307 __bs_copy(4, uint32_t, (t), (h1), (o1), (h2), (o2), (c))
308 #define bus_space_copy_region_8(t, h1, o1, h2, o2, c) \
309 __bs_copy(8, uint64_t, (t), (h1), (o1), (h2), (o2), (c))