Lines Matching refs:l
162 __le32 l; in vm_get() local
183 l = cpu_to_le32(readl(base + offset)); in vm_get()
184 memcpy(buf, &l, sizeof l); in vm_get()
187 l = cpu_to_le32(readl(base + offset)); in vm_get()
188 memcpy(buf, &l, sizeof l); in vm_get()
189 l = cpu_to_le32(ioread32(base + offset + sizeof l)); in vm_get()
190 memcpy(buf + sizeof l, &l, sizeof l); in vm_get()
204 __le32 l; in vm_set() local
226 memcpy(&l, buf, sizeof l); in vm_set()
227 writel(le32_to_cpu(l), base + offset); in vm_set()
230 memcpy(&l, buf, sizeof l); in vm_set()
231 writel(le32_to_cpu(l), base + offset); in vm_set()
232 memcpy(&l, buf + sizeof l, sizeof l); in vm_set()
233 writel(le32_to_cpu(l), base + offset + sizeof l); in vm_set()