Searched refs:bytes_to_move (Results 1 - 3 of 3) sorted by relevance

/linux-master/drivers/i3c/master/mipi-i3c-hci/
H A Dpio.c412 unsigned int room, left, chunk, bytes_to_move; local
430 bytes_to_move = xfer->data_len - xfer->data_left;
431 if (bytes_to_move & 3) {
435 xfer->data_word_before_partial = p[bytes_to_move / 4];
437 memmove(xfer->data + chunk, xfer->data, bytes_to_move);
/linux-master/lib/pldmfw/
H A Dpldmfw.c82 * @bytes_to_move: number of bytes to move the offset forward by
91 pldm_move_fw_offset(struct pldmfw_priv *data, size_t bytes_to_move) argument
95 err = pldm_check_fw_space(data, data->offset, bytes_to_move);
99 data->offset += bytes_to_move;
/linux-master/kernel/
H A Dkcov.c933 u64 dst_occupied, dst_free, bytes_to_move, entries_moved; local
963 bytes_to_move = min(dst_free, src_len << entry_size_log);
966 memcpy(dst_entries, src_entries, bytes_to_move);
967 entries_moved = bytes_to_move >> entry_size_log;

Completed in 125 milliseconds