Lines Matching refs:from
270 #define INVALIDATE_CACHED_RANGE(map, from, size) \ argument
271 do { if (map->inval_cache) map->inval_cache(map, from, size); } while (0)
452 static inline void inline_map_copy_from(struct map_info *map, void *to, unsigned long from, ssize_t… in inline_map_copy_from() argument
455 memcpy(to, (char *)map->cached + from, len); in inline_map_copy_from()
457 memcpy_fromio(to, map->virt + from, len); in inline_map_copy_from()
460 static inline void inline_map_copy_to(struct map_info *map, unsigned long to, const void *from, ssi… in inline_map_copy_to() argument
462 memcpy_toio(map->virt + to, from, len); in inline_map_copy_to()
467 #define map_copy_from(map, to, from, len) (map)->copy_from(map, to, from, len) argument
469 #define map_copy_to(map, to, from, len) (map)->copy_to(map, to, from, len) argument
476 #define map_copy_from(map, to, from, len) inline_map_copy_from(map, to, from, len) argument
478 #define map_copy_to(map, to, from, len) inline_map_copy_to(map, to, from, len) argument