Lines Matching +defs:debug +defs:o

327 #define ncr_offb(o)	(((o)&~3)+((~((o)&3))&3))  argument
328 #define ncr_offw(o) (((o)&~3)+((~((o)&3))&2)) argument
332 #define ncr_offb(o) (o) argument
333 #define ncr_offw(o) (o) argument
379 #define INB_OFF(o) readb_raw((char __iomem *)np->reg + ncr_offb(o)) argument
380 #define OUTB_OFF(o, val) writeb_raw((val), (char __iomem *)np->reg + ncr_offb(o)) argument
384 #define INW_OFF(o) readw_l2b((char __iomem *)np->reg + ncr_offw(o)) argument
385 #define INL_OFF(o) readl_l2b((char __iomem *)np->reg + (o)) argument
387 #define OUTW_OFF(o, val) writew_b2l((val), (char __iomem *)np->reg + ncr_offw(o)) argument
388 #define OUTL_OFF(o, val) writel_b2l((val), (char __iomem *)np->reg + (o)) argument
392 #define INW_OFF(o) readw_b2l((char __iomem *)np->reg + ncr_offw(o)) argument
393 #define INL_OFF(o) readl_b2l((char __iomem *)np->reg + (o)) argument
395 #define OUTW_OFF(o, val) writew_l2b((val), (char __iomem *)np->reg + ncr_offw(o)) argument
396 #define OUTL_OFF(o, val) writel_l2b((val), (char __iomem *)np->reg + (o)) argument
402 #define INW_OFF(o) (readb((char __iomem *)np->reg + ncr_offw(o)) << 8 | readb((char __iomem *)np->… argument
404 #define INW_OFF(o) readw_raw((char __iomem *)np->reg + ncr_offw(o)) argument
406 #define INL_OFF(o) readl_raw((char __iomem *)np->reg + (o)) argument
410 #define OUTW_OFF(o, val) do { writeb((char)((val) >> 8), (char __iomem *)np->reg + ncr_offw(o)); wr… argument
412 #define OUTW_OFF(o, val) writew_raw((val), (char __iomem *)np->reg + ncr_offw(o)) argument
414 #define OUTL_OFF(o, val) writel_raw((val), (char __iomem *)np->reg + (o)) argument
518 u16 debug; member