Lines Matching defs:mapped
31 void *mapped;
53 if (channel->mapped) {
54 memunmap(channel->mapped);
117 memcpy(dest, channel->mapped + offset, nbytes);
135 memcpy(channel->mapped + offset, dest, nbytes);
375 channel->mapped = memremap(physaddr, size, MEMREMAP_WB);
376 if (!channel->mapped) {
386 memunmap(channel->mapped);
389 channel->mapped = NULL;
395 channel->mapped = memremap(channel->physaddr, size, MEMREMAP_WB);
396 if (!channel->mapped) {