Lines Matching refs:l
163 __le32 l; in vm_get() local
184 l = cpu_to_le32(readl(base + offset)); in vm_get()
185 memcpy(buf, &l, sizeof l); in vm_get()
188 l = cpu_to_le32(readl(base + offset)); in vm_get()
189 memcpy(buf, &l, sizeof l); in vm_get()
190 l = cpu_to_le32(ioread32(base + offset + sizeof l)); in vm_get()
191 memcpy(buf + sizeof l, &l, sizeof l); in vm_get()
205 __le32 l; in vm_set() local
227 memcpy(&l, buf, sizeof l); in vm_set()
228 writel(le32_to_cpu(l), base + offset); in vm_set()
231 memcpy(&l, buf, sizeof l); in vm_set()
232 writel(le32_to_cpu(l), base + offset); in vm_set()
233 memcpy(&l, buf + sizeof l, sizeof l); in vm_set()
234 writel(le32_to_cpu(l), base + offset + sizeof l); in vm_set()