• Home
  • Raw
  • Download

Lines Matching defs:c

120 #define readb_relaxed(c)	({ u8  __r = __raw_readb(c); __r; })  argument
121 #define readw_relaxed(c) ({ u16 __r = le16_to_cpu((__force __le16)__raw_readw(c)); __r; }) argument
122 #define readl_relaxed(c) ({ u32 __r = le32_to_cpu((__force __le32)__raw_readl(c)); __r; }) argument
123 #define readq_relaxed(c) ({ u64 __r = le64_to_cpu((__force __le64)__raw_readq(c)); __r; }) argument
125 #define writeb_relaxed(v,c) ((void)__raw_writeb((v),(c))) argument
126 #define writew_relaxed(v,c) ((void)__raw_writew((__force u16)cpu_to_le16(v),(c))) argument
127 #define writel_relaxed(v,c) ((void)__raw_writel((__force u32)cpu_to_le32(v),(c))) argument
128 #define writeq_relaxed(v,c) ((void)__raw_writeq((__force u64)cpu_to_le64(v),(c))) argument
135 #define readb(c) ({ u8 __v = readb_relaxed(c); __iormb(__v); __v; }) argument
136 #define readw(c) ({ u16 __v = readw_relaxed(c); __iormb(__v); __v; }) argument
137 #define readl(c) ({ u32 __v = readl_relaxed(c); __iormb(__v); __v; }) argument
138 #define readq(c) ({ u64 __v = readq_relaxed(c); __iormb(__v); __v; }) argument
140 #define writeb(v,c) ({ __iowmb(); writeb_relaxed((v),(c)); }) argument
141 #define writew(v,c) ({ __iowmb(); writew_relaxed((v),(c)); }) argument
142 #define writel(v,c) ({ __iowmb(); writel_relaxed((v),(c)); }) argument
143 #define writeq(v,c) ({ __iowmb(); writeq_relaxed((v),(c)); }) argument
159 #define memset_io(c,v,l) __memset_io((c),(v),(l)) argument
160 #define memcpy_fromio(a,c,l) __memcpy_fromio((a),(c),(l)) argument
161 #define memcpy_toio(c,a,l) __memcpy_toio((c),(a),(l)) argument