Lines Matching defs:start
94 if (rreg->res->start > offset)
111 offs = rreg->ops->map(offset - found->res->start,
257 unsigned long offs, start;
264 start = (unsigned long)addr & AREA_MASK;
267 area->ops->set(area->priv, start, value, size);
272 area->ops->write(area->priv, start + offs, 1, value);
281 unsigned long offs, start;
288 start = (unsigned long)addr & AREA_MASK;
291 area->ops->copy_from(area->priv, buffer, start, size);
296 buf[offs] = area->ops->read(area->priv, start + offs, 1);
304 unsigned long offs, start;
311 start = (unsigned long)addr & AREA_MASK;
314 area->ops->copy_to(area->priv, start, buffer, size);
319 area->ops->write(area->priv, start + offs, 1, buf[offs]);