Lines Matching defs:o

339 #define ncr_offb(o)	(((o)&~3)+((~((o)&3))&3))  argument
340 #define ncr_offw(o) (((o)&~3)+((~((o)&3))&2)) argument
344 #define ncr_offb(o) (o) argument
345 #define ncr_offw(o) (o) argument
391 #define INB_OFF(o) readb_raw((char __iomem *)np->reg + ncr_offb(o)) argument
392 #define OUTB_OFF(o, val) writeb_raw((val), (char __iomem *)np->reg + ncr_offb(o)) argument
396 #define INW_OFF(o) readw_l2b((char __iomem *)np->reg + ncr_offw(o)) argument
397 #define INL_OFF(o) readl_l2b((char __iomem *)np->reg + (o)) argument
399 #define OUTW_OFF(o, val) writew_b2l((val), (char __iomem *)np->reg + ncr_offw(o)) argument
400 #define OUTL_OFF(o, val) writel_b2l((val), (char __iomem *)np->reg + (o)) argument
404 #define INW_OFF(o) readw_b2l((char __iomem *)np->reg + ncr_offw(o)) argument
405 #define INL_OFF(o) readl_b2l((char __iomem *)np->reg + (o)) argument
407 #define OUTW_OFF(o, val) writew_l2b((val), (char __iomem *)np->reg + ncr_offw(o)) argument
408 #define OUTL_OFF(o, val) writel_l2b((val), (char __iomem *)np->reg + (o)) argument
414 #define INW_OFF(o) (readb((char __iomem *)np->reg + ncr_offw(o)) << 8 | readb((char __iomem *)np->… argument
416 #define INW_OFF(o) readw_raw((char __iomem *)np->reg + ncr_offw(o)) argument
418 #define INL_OFF(o) readl_raw((char __iomem *)np->reg + (o)) argument
422 #define OUTW_OFF(o, val) do { writeb((char)((val) >> 8), (char __iomem *)np->reg + ncr_offw(o)); wr… argument
424 #define OUTW_OFF(o, val) writew_raw((val), (char __iomem *)np->reg + ncr_offw(o)) argument
426 #define OUTL_OFF(o, val) writel_raw((val), (char __iomem *)np->reg + (o)) argument