Lines Matching refs:from
75 static void dc21285_copy_from(struct map_info *map, void *to, unsigned long from, ssize_t len) in dc21285_copy_from() argument
77 memcpy(to, (void*)(map->virt + from), len); in dc21285_copy_from()
105 static void dc21285_copy_to_32(struct map_info *map, unsigned long to, const void *from, ssize_t le… in dc21285_copy_to_32() argument
109 d.x[0] = *((uint32_t*)from); in dc21285_copy_to_32()
111 from += 4; in dc21285_copy_to_32()
117 static void dc21285_copy_to_16(struct map_info *map, unsigned long to, const void *from, ssize_t le… in dc21285_copy_to_16() argument
121 d.x[0] = *((uint16_t*)from); in dc21285_copy_to_16()
123 from += 2; in dc21285_copy_to_16()
129 static void dc21285_copy_to_8(struct map_info *map, unsigned long to, const void *from, ssize_t len) in dc21285_copy_to_8() argument
132 d.x[0] = *((uint8_t*)from); in dc21285_copy_to_8()
134 from++; in dc21285_copy_to_8()