Lines Matching refs:copy
577 int copy = IWL_FIRST_TB_SIZE - copy_size; in iwl_pcie_gen2_enqueue_hcmd() local
579 if (copy > cmdlen[i]) in iwl_pcie_gen2_enqueue_hcmd()
580 copy = cmdlen[i]; in iwl_pcie_gen2_enqueue_hcmd()
581 cmdlen[i] -= copy; in iwl_pcie_gen2_enqueue_hcmd()
582 cmddata[i] += copy; in iwl_pcie_gen2_enqueue_hcmd()
583 copy_size += copy; in iwl_pcie_gen2_enqueue_hcmd()
667 int copy; in iwl_pcie_gen2_enqueue_hcmd() local
675 copy = cmd->len[i]; in iwl_pcie_gen2_enqueue_hcmd()
677 memcpy((u8 *)out_cmd + cmd_pos, cmd->data[i], copy); in iwl_pcie_gen2_enqueue_hcmd()
678 cmd_pos += copy; in iwl_pcie_gen2_enqueue_hcmd()
679 copy_size += copy; in iwl_pcie_gen2_enqueue_hcmd()
688 copy = min_t(int, TFD_MAX_PAYLOAD_SIZE - cmd_pos, cmd->len[i]); in iwl_pcie_gen2_enqueue_hcmd()
690 memcpy((u8 *)out_cmd + cmd_pos, cmd->data[i], copy); in iwl_pcie_gen2_enqueue_hcmd()
691 cmd_pos += copy; in iwl_pcie_gen2_enqueue_hcmd()
695 copy = IWL_FIRST_TB_SIZE - copy_size; in iwl_pcie_gen2_enqueue_hcmd()
697 if (copy > cmd->len[i]) in iwl_pcie_gen2_enqueue_hcmd()
698 copy = cmd->len[i]; in iwl_pcie_gen2_enqueue_hcmd()
699 copy_size += copy; in iwl_pcie_gen2_enqueue_hcmd()