Home
last modified time | relevance | path

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

/openbmc/linux/drivers/i3c/master/mipi-i3c-hci/
H A Dpio.c412 unsigned int room, left, chunk, bytes_to_move; in hci_pio_push_to_next_rx() local
430 bytes_to_move = xfer->data_len - xfer->data_left; in hci_pio_push_to_next_rx()
431 if (bytes_to_move & 3) { in hci_pio_push_to_next_rx()
435 xfer->data_word_before_partial = p[bytes_to_move / 4]; in hci_pio_push_to_next_rx()
437 memmove(xfer->data + chunk, xfer->data, bytes_to_move); in hci_pio_push_to_next_rx()
/openbmc/linux/lib/pldmfw/
H A Dpldmfw.c91 pldm_move_fw_offset(struct pldmfw_priv *data, size_t bytes_to_move) in pldm_move_fw_offset() argument
95 err = pldm_check_fw_space(data, data->offset, bytes_to_move); in pldm_move_fw_offset()
99 data->offset += bytes_to_move; in pldm_move_fw_offset()
/openbmc/linux/kernel/
H A Dkcov.c934 u64 dst_occupied, dst_free, bytes_to_move, entries_moved; in kcov_move_area() local
964 bytes_to_move = min(dst_free, src_len << entry_size_log); in kcov_move_area()
967 memcpy(dst_entries, src_entries, bytes_to_move); in kcov_move_area()
968 entries_moved = bytes_to_move >> entry_size_log; in kcov_move_area()