Lines Matching refs:l
185 __le32 l; in vp_get() local
199 l = cpu_to_le32(ioread32(vp_dev->device + offset)); in vp_get()
200 memcpy(buf, &l, sizeof l); in vp_get()
203 l = cpu_to_le32(ioread32(vp_dev->device + offset)); in vp_get()
204 memcpy(buf, &l, sizeof l); in vp_get()
205 l = cpu_to_le32(ioread32(vp_dev->device + offset + sizeof l)); in vp_get()
206 memcpy(buf + sizeof l, &l, sizeof l); in vp_get()
221 __le32 l; in vp_set() local
235 memcpy(&l, buf, sizeof l); in vp_set()
236 iowrite32(le32_to_cpu(l), vp_dev->device + offset); in vp_set()
239 memcpy(&l, buf, sizeof l); in vp_set()
240 iowrite32(le32_to_cpu(l), vp_dev->device + offset); in vp_set()
241 memcpy(&l, buf + sizeof l, sizeof l); in vp_set()
242 iowrite32(le32_to_cpu(l), vp_dev->device + offset + sizeof l); in vp_set()