Lines Matching defs:off
99 loff_t off, size_t count, size_t x_start,
108 if (off < x_start)
109 fillable = min(count, (size_t)(x_start - off));
110 else if (off >= x_end)
115 if (fillable >= 4 && !(off % 4)) {
123 val, io + off);
128 &val, io + off);
137 } else if (fillable >= 2 && !(off % 2)) {
145 val, io + off);
150 &val, io + off);
167 val, io + off);
172 &val, io + off);
183 filled = min(count, (size_t)(x_end - off));
196 off += filled;
295 loff_t off, pos = *ppos & VFIO_PCI_OFFSET_MASK;
311 off = pos - 0xa0000;
318 off = pos - 0x3b0;
325 off = pos - 0x3c0;
347 done = do_io_rw(vdev, false, iomem, buf, off, count, 0, 0, iswrite);