Home | History | Annotate | Download | only in include

Lines Matching refs:h2

115     #define	__abs_copy(sz, t, h1, o1, h2, o2, cnt)			\
116 (*(t)->__abs_opname(c,sz))(t, h1, o1, h2, o2, cnt)
118 #define __abs_copy(sz, t, h1, o1, h2, o2, cnt) do { \
119 memcpy((void*)(h2 + o2), (void *)(h1 + o1), sz * cnt); \
294 #define bus_space_copy_region_1(t, h1, o1, h2, o2, c) \
295 __abs_copy(1, (t), (h1), (o1), (h2), (o2), (c))
296 #define bus_space_copy_region_2(t, h1, o1, h2, o2, c) \
297 __abs_copy(2, (t), (h1), (o1), (h2), (o2), (c))
298 #define bus_space_copy_region_4(t, h1, o1, h2, o2, c) \
299 __abs_copy(4, (t), (h1), (o1), (h2), (o2), (c))
300 #define bus_space_copy_region_8(t, h1, o1, h2, o2, c) \
301 __abs_copy(8, (t), (h1), (o1), (h2), (o2), (c))