Lines Matching refs:l
71 __le32 l; in vp_get() local
85 l = cpu_to_le32(ioread32(device + offset)); in vp_get()
86 memcpy(buf, &l, sizeof l); in vp_get()
89 l = cpu_to_le32(ioread32(device + offset)); in vp_get()
90 memcpy(buf, &l, sizeof l); in vp_get()
91 l = cpu_to_le32(ioread32(device + offset + sizeof l)); in vp_get()
92 memcpy(buf + sizeof l, &l, sizeof l); in vp_get()
109 __le32 l; in vp_set() local
123 memcpy(&l, buf, sizeof l); in vp_set()
124 iowrite32(le32_to_cpu(l), device + offset); in vp_set()
127 memcpy(&l, buf, sizeof l); in vp_set()
128 iowrite32(le32_to_cpu(l), device + offset); in vp_set()
129 memcpy(&l, buf + sizeof l, sizeof l); in vp_set()
130 iowrite32(le32_to_cpu(l), device + offset + sizeof l); in vp_set()