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