Lines Matching defs:np

197 #define INB_OFF(np, o)		ioread8(np->s.ioaddr + (o))  argument
198 #define INW_OFF(np, o) ioread16(np->s.ioaddr + (o)) argument
199 #define INL_OFF(np, o) ioread32(np->s.ioaddr + (o)) argument
201 #define OUTB_OFF(np, o, val) iowrite8((val), np->s.ioaddr + (o)) argument
202 #define OUTW_OFF(np, o, val) iowrite16((val), np->s.ioaddr + (o)) argument
203 #define OUTL_OFF(np, o, val) iowrite32((val), np->s.ioaddr + (o)) argument
205 #define INB(np, r) INB_OFF(np, offsetof(struct sym_reg, r)) argument
206 #define INW(np, r) INW_OFF(np, offsetof(struct sym_reg, r)) argument
207 #define INL(np, r) INL_OFF(np, offsetof(struct sym_reg, r)) argument
209 #define OUTB(np, r, v) OUTB_OFF(np, offsetof(struct sym_reg, r), (v)) argument
210 #define OUTW(np, r, v) OUTW_OFF(np, offsetof(struct sym_reg, r), (v)) argument
211 #define OUTL(np, r, v) OUTL_OFF(np, offsetof(struct sym_reg, r), (v)) argument
213 #define OUTONB(np, r, m) OUTB(np, r, INB(np, r) | (m)) argument
214 #define OUTOFFB(np, r, m) OUTB(np, r, INB(np, r) & ~(m)) argument
215 #define OUTONW(np, r, m) OUTW(np, r, INW(np, r) | (m)) argument
216 #define OUTOFFW(np, r, m) OUTW(np, r, INW(np, r) & ~(m)) argument
217 #define OUTONL(np, r, m) OUTL(np, r, INL(np, r) | (m)) argument
218 #define OUTOFFL(np, r, m) OUTL(np, r, INL(np, r) & ~(m)) argument
225 #define OUTL_DSP(np, v) \ argument
677 #define sym_set_script_dp(np, cp, dp) \ argument
684 #define sym_get_script_dp(np, cp) \ argument
688 #define sym_set_script_dp(np, cp, dp) \ argument
693 #define sym_get_script_dp(np, cp) (cp->phys.head.lastp) argument
1035 #define use_dac(np) 0 argument
1036 #define set_dac(np) do { } while (0) argument
1038 #define use_dac(np) (np)->use_dac argument
1039 #define set_dac(np) (np)->use_dac = 1 argument
1042 #define HCB_BA(np, lbl) (np->hcb_ba + offsetof(struct sym_hcb, lbl)) argument
1086 #define sym_build_sge(np, data, badd, len) \ argument
1093 #define sym_build_sge(np, data, badd, len) \ argument
1102 sym_build_sge(struct sym_hcb *np, struct sym_tblmove *data, u64 badd, int len) in sym_build_sge()
1192 #define _sym_calloc_dma(np, l, n) __sym_calloc_dma(np->bus_dmat, l, n) argument
1193 #define _sym_mfree_dma(np, p, l, n) \ argument