Lines Matching refs:from
256 #define INVALIDATE_CACHED_RANGE(map, from, size) \ argument
257 do { if (map->inval_cache) map->inval_cache(map, from, size); } while (0)
430 static inline void inline_map_copy_from(struct map_info *map, void *to, unsigned long from, ssize_t… in inline_map_copy_from() argument
433 memcpy(to, (char *)map->cached + from, len); in inline_map_copy_from()
435 memcpy_fromio(to, map->virt + from, len); in inline_map_copy_from()
438 static inline void inline_map_copy_to(struct map_info *map, unsigned long to, const void *from, ssi… in inline_map_copy_to() argument
440 memcpy_toio(map->virt + to, from, len); in inline_map_copy_to()
445 #define map_copy_from(map, to, from, len) (map)->copy_from(map, to, from, len) argument
447 #define map_copy_to(map, to, from, len) (map)->copy_to(map, to, from, len) argument
454 #define map_copy_from(map, to, from, len) inline_map_copy_from(map, to, from, len) argument
456 #define map_copy_to(map, to, from, len) inline_map_copy_to(map, to, from, len) argument