Home | History | Annotate | Download | only in include

Lines Matching refs:h2

93 #define	__abs_copy(sz, tn, t, h1, o1, h2, o2, cnt)			\
96 __BUS_SPACE_ADDRESS_SANITY((h2) + (o2), tn, "bus addr 2"); \
97 (*(t)->__abs_opname(c,sz))((t)->abs_cookie, h1, o1, h2, o2, cnt); \
249 #define bus_space_copy_region_1(t, h1, o1, h2, o2, c) \
250 __abs_copy(1, uint8_t, (t), (h1), (o1), (h2), (o2), (c))
251 #define bus_space_copy_region_2(t, h1, o1, h2, o2, c) \
252 __abs_copy(2, uint16_t, (t), (h1), (o1), (h2), (o2), (c))
253 #define bus_space_copy_region_4(t, h1, o1, h2, o2, c) \
254 __abs_copy(4, uint32_t, (t), (h1), (o1), (h2), (o2), (c))
255 #define bus_space_copy_region_8(t, h1, o1, h2, o2, c) \
256 __abs_copy(8, uint64_t, (t), (h1), (o1), (h2), (o2), (c))