Lines Matching refs:__force
463 __raw_readb((__force unsigned *)(addr)) in BUILDIO_MEM()
465 be16_to_cpu(__raw_readw((__force unsigned *)(addr))) in BUILDIO_MEM()
467 be32_to_cpu(__raw_readl((__force unsigned *)(addr))) in BUILDIO_MEM()
469 be64_to_cpu(__raw_readq((__force unsigned *)(addr))) in BUILDIO_MEM()
472 __raw_writeb((val), (__force unsigned *)(addr)) in BUILDIO_MEM()
474 __raw_writew(cpu_to_be16((val)), (__force unsigned *)(addr)) in BUILDIO_MEM()
476 __raw_writel(cpu_to_be32((val)), (__force unsigned *)(addr)) in BUILDIO_MEM()
478 __raw_writeq(cpu_to_be64((val)), (__force unsigned *)(addr)) in BUILDIO_MEM()
556 memset((void __force *) addr, val, count);
560 memcpy(dst, (void __force *) src, count); in memcpy_fromio()
564 memcpy((void __force *) dst, src, count); in memcpy_toio()