Lines Matching refs:bytes_to_copy
548 int offset, bytes_to_copy; in copy_strings() local
560 bytes_to_copy = offset; in copy_strings()
561 if (bytes_to_copy > len) in copy_strings()
562 bytes_to_copy = len; in copy_strings()
564 offset -= bytes_to_copy; in copy_strings()
565 pos -= bytes_to_copy; in copy_strings()
566 str -= bytes_to_copy; in copy_strings()
567 len -= bytes_to_copy; in copy_strings()
588 if (copy_from_user(kaddr+offset, str, bytes_to_copy)) { in copy_strings()
624 unsigned int bytes_to_copy = min_t(unsigned int, len, in copy_string_kernel() local
629 pos -= bytes_to_copy; in copy_string_kernel()
630 arg -= bytes_to_copy; in copy_string_kernel()
631 len -= bytes_to_copy; in copy_string_kernel()
638 memcpy(kaddr + offset_in_page(pos), arg, bytes_to_copy); in copy_string_kernel()