Lines Matching refs:typ
78 #define IOFUNC_MEMIO(name, hws, typ, adr) \ argument
81 return readb(((typ *)hw->adr) + off); \
85 writeb(val, ((typ *)hw->adr) + off); \
90 *dp++ = readb(((typ *)hw->adr) + off); \
95 writeb(*dp++, ((typ *)hw->adr) + off); \
98 #define ASSIGN_FUNC(typ, name, dest) do { \ argument
99 dest.read_reg = &Read##name##_##typ; \
100 dest.write_reg = &Write##name##_##typ; \
101 dest.read_fifo = &ReadFiFo##name##_##typ; \
102 dest.write_fifo = &WriteFiFo##name##_##typ; \
104 #define ASSIGN_FUNC_IPAC(typ, target) do { \ argument
105 ASSIGN_FUNC(typ, ISAC, target.isac); \
106 ASSIGN_FUNC(typ, IPAC, target); \