Lines Matching refs:h2
433 bus_size_t o1, bus_space_handle_t h2, bus_size_t o2, bus_size_t c) \
436 if ((h1 + o1) >= (h2 + o2)) { \
439 __write_##BYTES(VADDR(h2, o2 + o), \
444 __write_##BYTES(VADDR(h2, o2 + o), \
524 #define __pbs_copy(sz, tn, t, h1, o1, h2, o2, cnt) \
527 __BUS_SPACE_ADDRESS_SANITY((h2) + (o2), tn, "bus addr 2"); \
528 (*(t)->__pbs_opname(c,sz))((t)->pbs_cookie, h1, o1, h2, o2, cnt); \
683 #define bus_space_copy_region_1(t, h1, o1, h2, o2, c) \
684 __pbs_copy(1, u_int8_t, (t), (h1), (o1), (h2), (o2), (c))
685 #define bus_space_copy_region_2(t, h1, o1, h2, o2, c) \
686 __pbs_copy(2, u_int16_t, (t), (h1), (o1), (h2), (o2), (c))
687 #define bus_space_copy_region_4(t, h1, o1, h2, o2, c) \
688 __pbs_copy(4, u_int32_t, (t), (h1), (o1), (h2), (o2), (c))
689 #define bus_space_copy_region_8(t, h1, o1, h2, o2, c) \
690 __pbs_copy(8, u_int64_t, (t), (h1), (o1), (h2), (o2), (c))