Lines Matching refs:h2
98 #define __hbs_copy(sz, tn, t, h1, o1, h2, o2, cnt) \
101 __BUS_SPACE_ADDRESS_SANITY((h2) + (o2), tn, "bus addr 2"); \
102 (*(t)->__hbs_opname(c,sz))((t)->hbs_cookie, h1, o1, h2, o2, cnt); \
236 #define bus_space_copy_region_1(t, h1, o1, h2, o2, c) \
237 __hbs_copy(1, uint8_t, (t), (h1), (o1), (h2), (o2), (c))
238 #define bus_space_copy_region_2(t, h1, o1, h2, o2, c) \
239 __hbs_copy(2, uint16_t, (t), (h1), (o1), (h2), (o2), (c))
240 #define bus_space_copy_region_4(t, h1, o1, h2, o2, c) \
241 __hbs_copy(4, uint32_t, (t), (h1), (o1), (h2), (o2), (c))
242 #define bus_space_copy_region_8(t, h1, o1, h2, o2, c) \
243 __hbs_copy(8, uint64_t, (t), (h1), (o1), (h2), (o2), (c))