Searched refs:bytes_to_copy (Results 1 – 1 of 1) sorted by relevance
863 size_t bytes_to_copy = (char *)dst_next_page - (char *)src_iter; in lwp_data_get() local864 if (bytes_to_copy > size) in lwp_data_get()866 bytes_to_copy = size; in lwp_data_get()869 if (ALIGNED(src_iter) && bytes_to_copy == ARCH_PAGE_SIZE) in lwp_data_get()885 memcpy(dst_iter, temp_page + (src_iter - src_iter_aligned), bytes_to_copy); in lwp_data_get()888 dst_iter = dst_iter + bytes_to_copy; in lwp_data_get()889 src_iter = src_iter + bytes_to_copy; in lwp_data_get()890 size -= bytes_to_copy; in lwp_data_get()892 copy_len += bytes_to_copy; in lwp_data_get()
Completed in 8 milliseconds