Lines Matching refs:h2
391 bus_size_t o1, bus_space_handle_t h2, bus_size_t o2, bus_size_t c) \
394 if ((h1 + o1) >= (h2 + o2)) { \
397 __write_##BYTES(VADDR(h2, o2 + o), \
402 __write_##BYTES(VADDR(h2, o2 + o), \
482 #define __ebs_copy(sz, tn, t, h1, o1, h2, o2, cnt) \
485 __BUS_SPACE_ADDRESS_SANITY((h2) + (o2), tn, "bus addr 2"); \
486 (*(t)->__ebs_opname(c,sz))((t)->ebs_cookie, h1, o1, h2, o2, cnt); \
642 #define bus_space_copy_region_1(t, h1, o1, h2, o2, c) \
643 __ebs_copy(1, uint8_t, (t), (h1), (o1), (h2), (o2), (c))
644 #define bus_space_copy_region_2(t, h1, o1, h2, o2, c) \
645 __ebs_copy(2, uint16_t, (t), (h1), (o1), (h2), (o2), (c))
646 #define bus_space_copy_region_4(t, h1, o1, h2, o2, c) \
647 __ebs_copy(4, uint32_t, (t), (h1), (o1), (h2), (o2), (c))
648 #define bus_space_copy_region_8(t, h1, o1, h2, o2, c) \
649 __ebs_copy(8, uint64_t, (t), (h1), (o1), (h2), (o2), (c))