/drivers/usb/host/ |
D | uhci-debug.c | 46 char *out = buf; in uhci_show_td() local 51 out += sprintf(out, "%*s[%p] link (%08x) ", space, "", td, in uhci_show_td() 53 out += sprintf(out, "e%d %s%s%s%s%s%s%s%s%s%sLength=%x ", in uhci_show_td() 66 if (out - buf > len) in uhci_show_td() 85 out += sprintf(out, "MaxLen=%x DT%d EndPt=%x Dev=%x, PID=%x(%s) ", in uhci_show_td() 92 out += sprintf(out, "(buf=%08x)\n", hc32_to_cpu(uhci, td->buffer)); in uhci_show_td() 95 if (out - buf > len) in uhci_show_td() 96 out += sprintf(out, " ...\n"); in uhci_show_td() 97 return out - buf; in uhci_show_td() 103 char *out = buf; in uhci_show_urbp() local [all …]
|
/drivers/net/ethernet/mellanox/mlx5/core/ |
D | port.c | 43 u32 *out = NULL; in mlx5_core_access_reg() local 48 out = kvzalloc(outlen, GFP_KERNEL); in mlx5_core_access_reg() 49 if (!in || !out) in mlx5_core_access_reg() 50 goto out; in mlx5_core_access_reg() 60 err = mlx5_cmd_exec(dev, in, inlen, out, outlen); in mlx5_core_access_reg() 62 goto out; in mlx5_core_access_reg() 64 data = MLX5_ADDR_OF(access_register_out, out, register_data); in mlx5_core_access_reg() 67 out: in mlx5_core_access_reg() 68 kvfree(out); in mlx5_core_access_reg() 123 struct mlx5_reg_pcap out; in mlx5_set_port_caps() local [all …]
|
D | transobj.c | 40 u32 out[MLX5_ST_SZ_DW(alloc_transport_domain_out)] = {0}; in mlx5_core_alloc_transport_domain() local 46 err = mlx5_cmd_exec(dev, in, sizeof(in), out, sizeof(out)); in mlx5_core_alloc_transport_domain() 48 *tdn = MLX5_GET(alloc_transport_domain_out, out, in mlx5_core_alloc_transport_domain() 58 u32 out[MLX5_ST_SZ_DW(dealloc_transport_domain_out)] = {0}; in mlx5_core_dealloc_transport_domain() local 63 mlx5_cmd_exec(dev, in, sizeof(in), out, sizeof(out)); in mlx5_core_dealloc_transport_domain() 69 u32 out[MLX5_ST_SZ_DW(create_rq_out)] = {0}; in mlx5_core_create_rq() local 73 err = mlx5_cmd_exec(dev, in, inlen, out, sizeof(out)); in mlx5_core_create_rq() 75 *rqn = MLX5_GET(create_rq_out, out, rqn); in mlx5_core_create_rq() 83 u32 out[MLX5_ST_SZ_DW(modify_rq_out)]; in mlx5_core_modify_rq() local 88 memset(out, 0, sizeof(out)); in mlx5_core_modify_rq() [all …]
|
D | vport.c | 44 u16 vport, u32 *out, int outlen) in _mlx5_query_vport_state() argument 55 return mlx5_cmd_exec(mdev, in, sizeof(in), out, outlen); in _mlx5_query_vport_state() 60 u32 out[MLX5_ST_SZ_DW(query_vport_state_out)] = {0}; in mlx5_query_vport_state() local 62 _mlx5_query_vport_state(mdev, opmod, vport, out, sizeof(out)); in mlx5_query_vport_state() 64 return MLX5_GET(query_vport_state_out, out, state); in mlx5_query_vport_state() 71 u32 out[MLX5_ST_SZ_DW(modify_vport_state_out)] = {0}; in mlx5_modify_vport_admin_state() local 80 return mlx5_cmd_exec(mdev, in, sizeof(in), out, sizeof(out)); in mlx5_modify_vport_admin_state() 84 u32 *out, int outlen) in mlx5_query_nic_vport_context() argument 94 return mlx5_cmd_exec(mdev, in, sizeof(in), out, outlen); in mlx5_query_nic_vport_context() 100 u32 out[MLX5_ST_SZ_DW(modify_nic_vport_context_out)] = {0}; in mlx5_modify_nic_vport_context() local [all …]
|
D | fw.c | 71 static int mlx5_cmd_query_adapter(struct mlx5_core_dev *dev, u32 *out, in mlx5_cmd_query_adapter() argument 77 return mlx5_cmd_exec(dev, in, sizeof(in), out, outlen); in mlx5_cmd_query_adapter() 82 u32 *out; in mlx5_query_board_id() local 86 out = kzalloc(outlen, GFP_KERNEL); in mlx5_query_board_id() 87 if (!out) in mlx5_query_board_id() 90 err = mlx5_cmd_query_adapter(dev, out, outlen); in mlx5_query_board_id() 92 goto out; in mlx5_query_board_id() 95 MLX5_ADDR_OF(query_adapter_out, out, in mlx5_query_board_id() 100 out: in mlx5_query_board_id() 101 kfree(out); in mlx5_query_board_id() [all …]
|
/drivers/media/platform/mtk-vcodec/ |
D | venc_vpu_if.c | 88 struct venc_ap_ipi_msg_init out; in vpu_enc_init() local 103 memset(&out, 0, sizeof(out)); in vpu_enc_init() 104 out.msg_id = AP_IPIMSG_ENC_INIT; in vpu_enc_init() 105 out.venc_inst = (unsigned long)vpu; in vpu_enc_init() 106 if (vpu_enc_send_msg(vpu, &out, sizeof(out))) { in vpu_enc_init() 120 struct venc_ap_ipi_msg_set_param out; in vpu_enc_set_param() local 124 memset(&out, 0, sizeof(out)); in vpu_enc_set_param() 125 out.msg_id = AP_IPIMSG_ENC_SET_PARAM; in vpu_enc_set_param() 126 out.vpu_inst_addr = vpu->inst_addr; in vpu_enc_set_param() 127 out.param_id = id; in vpu_enc_set_param() [all …]
|
/drivers/media/platform/vicodec/ |
D | codec-fwht.c | 254 s16 *out = output_block; in fwht() local 259 for (i = 0; i < 8; i++, tmp += stride, out += 8) { in fwht() 327 out[0] = workspace2[0] + workspace2[4]; in fwht() 328 out[1] = workspace2[0] - workspace2[4]; in fwht() 329 out[2] = workspace2[1] - workspace2[5]; in fwht() 330 out[3] = workspace2[1] + workspace2[5]; in fwht() 331 out[4] = workspace2[2] + workspace2[6]; in fwht() 332 out[5] = workspace2[2] - workspace2[6]; in fwht() 333 out[6] = workspace2[3] - workspace2[7]; in fwht() 334 out[7] = workspace2[3] + workspace2[7]; in fwht() [all …]
|
/drivers/infiniband/hw/mlx5/ |
D | cmd.c | 37 u32 out[MLX5_ST_SZ_DW(query_special_contexts_out)] = {0}; in mlx5_cmd_dump_fill_mkey() local 43 err = mlx5_cmd_exec(dev, in, sizeof(in), out, sizeof(out)); in mlx5_cmd_dump_fill_mkey() 45 *mkey = MLX5_GET(query_special_contexts_out, out, in mlx5_cmd_dump_fill_mkey() 52 u32 out[MLX5_ST_SZ_DW(query_special_contexts_out)] = {}; in mlx5_cmd_null_mkey() local 58 err = mlx5_cmd_exec(dev, in, sizeof(in), out, sizeof(out)); in mlx5_cmd_null_mkey() 60 *null_mkey = MLX5_GET(query_special_contexts_out, out, in mlx5_cmd_null_mkey() 66 void *out, int out_size) in mlx5_cmd_query_cong_params() argument 74 return mlx5_cmd_exec(dev, in, sizeof(in), out, out_size); in mlx5_cmd_query_cong_params() 80 u32 out[MLX5_ST_SZ_DW(modify_cong_params_out)] = { }; in mlx5_cmd_modify_cong_params() local 82 return mlx5_cmd_exec(dev, in, in_size, out, sizeof(out)); in mlx5_cmd_modify_cong_params() [all …]
|
/drivers/video/fbdev/omap2/omapfb/dss/ |
D | output.c | 20 int omapdss_output_set_device(struct omap_dss_device *out, in omapdss_output_set_device() argument 27 if (out->dst) { in omapdss_output_set_device() 29 out->dst->name); in omapdss_output_set_device() 34 if (out->output_type != dssdev->type) { in omapdss_output_set_device() 40 out->dst = dssdev; in omapdss_output_set_device() 41 dssdev->src = out; in omapdss_output_set_device() 53 int omapdss_output_unset_device(struct omap_dss_device *out) in omapdss_output_unset_device() argument 59 if (!out->dst) { in omapdss_output_unset_device() 65 if (out->dst->state != OMAP_DSS_DISPLAY_DISABLED) { in omapdss_output_unset_device() 67 out->dst->name); in omapdss_output_unset_device() [all …]
|
/drivers/net/ethernet/intel/igb/ |
D | e1000_phy.c | 66 goto out; in igb_get_phy_id() 72 goto out; in igb_get_phy_id() 77 out: in igb_get_phy_id() 92 goto out; in igb_phy_reset_dsp() 96 goto out; in igb_phy_reset_dsp() 100 out: in igb_phy_reset_dsp() 122 goto out; in igb_read_phy_reg_mdic() 148 goto out; in igb_read_phy_reg_mdic() 153 goto out; in igb_read_phy_reg_mdic() 157 out: in igb_read_phy_reg_mdic() [all …]
|
/drivers/pci/hotplug/ |
D | cpqphp_sysfs.c | 30 char *out = buf; in show_ctrl() local 34 out += sprintf(buf, "Free resources: memory\n"); in show_ctrl() 38 out += sprintf(out, "start = %8.8x, length = %8.8x\n", res->base, res->length); in show_ctrl() 41 out += sprintf(out, "Free resources: prefetchable memory\n"); in show_ctrl() 45 out += sprintf(out, "start = %8.8x, length = %8.8x\n", res->base, res->length); in show_ctrl() 48 out += sprintf(out, "Free resources: IO\n"); in show_ctrl() 52 out += sprintf(out, "start = %8.8x, length = %8.8x\n", res->base, res->length); in show_ctrl() 55 out += sprintf(out, "Free resources: bus numbers\n"); in show_ctrl() 59 out += sprintf(out, "start = %8.8x, length = %8.8x\n", res->base, res->length); in show_ctrl() 63 return out - buf; in show_ctrl() [all …]
|
D | shpchp_sysfs.c | 27 char *out = buf; in show_ctrl() local 35 out += sprintf(buf, "Free resources: memory\n"); in show_ctrl() 39 out += sprintf(out, "start = %8.8llx, length = %8.8llx\n", in show_ctrl() 44 out += sprintf(out, "Free resources: prefetchable memory\n"); in show_ctrl() 48 out += sprintf(out, "start = %8.8llx, length = %8.8llx\n", in show_ctrl() 53 out += sprintf(out, "Free resources: IO\n"); in show_ctrl() 56 out += sprintf(out, "start = %8.8llx, length = %8.8llx\n", in show_ctrl() 61 out += sprintf(out, "Free resources: bus numbers\n"); in show_ctrl() 67 out += sprintf(out, "start = %8.8x, length = %8.8x\n", in show_ctrl() 70 return out - buf; in show_ctrl()
|
/drivers/net/ethernet/mellanox/mlx5/core/steering/ |
D | dr_cmd.c | 12 u32 out[MLX5_ST_SZ_DW(query_esw_vport_context_out)] = {}; in mlx5dr_cmd_query_esw_vport_context() local 21 err = mlx5_cmd_exec(mdev, in, sizeof(in), out, sizeof(out)); in mlx5dr_cmd_query_esw_vport_context() 26 MLX5_GET64(query_esw_vport_context_out, out, in mlx5dr_cmd_query_esw_vport_context() 29 MLX5_GET64(query_esw_vport_context_out, out, in mlx5dr_cmd_query_esw_vport_context() 39 void *out; in mlx5dr_cmd_query_gvmi() local 43 out = kzalloc(out_size, GFP_KERNEL); in mlx5dr_cmd_query_gvmi() 44 if (!out) in mlx5dr_cmd_query_gvmi() 54 err = mlx5_cmd_exec(mdev, in, sizeof(in), out, out_size); in mlx5dr_cmd_query_gvmi() 56 kfree(out); in mlx5dr_cmd_query_gvmi() 60 *gvmi = MLX5_GET(query_hca_cap_out, out, capability.cmd_hca_cap.vhca_id); in mlx5dr_cmd_query_gvmi() [all …]
|
/drivers/usb/usbip/ |
D | vhci_sysfs.c | 38 static void port_show_vhci(char **out, int hub, int port, struct vhci_device *vdev) in port_show_vhci() argument 41 *out += sprintf(*out, "hs %04u %03u ", in port_show_vhci() 44 *out += sprintf(*out, "ss %04u %03u ", in port_show_vhci() 48 *out += sprintf(*out, "%03u %08x ", in port_show_vhci() 50 *out += sprintf(*out, "%06u %s", in port_show_vhci() 55 *out += sprintf(*out, "000 00000000 "); in port_show_vhci() 56 *out += sprintf(*out, "000000 0-0"); in port_show_vhci() 59 *out += sprintf(*out, "\n"); in port_show_vhci() 63 static ssize_t status_show_vhci(int pdev_nr, char *out) in status_show_vhci() argument 69 char *s = out; in status_show_vhci() [all …]
|
/drivers/net/ethernet/mellanox/mlx5/core/en/ |
D | port.c | 95 u32 out[MLX5_ST_SZ_DW(ptys_reg)]; in mlx5_port_query_eth_proto() local 101 err = mlx5_query_port_ptys(dev, out, sizeof(out), MLX5_PTYS_EN, port); in mlx5_port_query_eth_proto() 105 eproto->cap = MLX5_GET_ETH_PROTO(ptys_reg, out, ext, in mlx5_port_query_eth_proto() 107 eproto->admin = MLX5_GET_ETH_PROTO(ptys_reg, out, ext, eth_proto_admin); in mlx5_port_query_eth_proto() 108 eproto->oper = MLX5_GET_ETH_PROTO(ptys_reg, out, ext, eth_proto_oper); in mlx5_port_query_eth_proto() 115 u32 out[MLX5_ST_SZ_DW(ptys_reg)]; in mlx5_port_query_eth_autoneg() local 121 if (mlx5_query_port_ptys(dev, out, sizeof(out), MLX5_PTYS_EN, 1)) in mlx5_port_query_eth_autoneg() 124 *an_status = MLX5_GET(ptys_reg, out, an_status); in mlx5_port_query_eth_autoneg() 125 *an_disable_cap = MLX5_GET(ptys_reg, out, an_disable_cap); in mlx5_port_query_eth_autoneg() 126 *an_disable_admin = MLX5_GET(ptys_reg, out, an_disable_admin); in mlx5_port_query_eth_autoneg() [all …]
|
/drivers/net/ethernet/mellanox/mlx5/core/fpga/ |
D | cmd.c | 48 u32 out[MLX5_FPGA_ACCESS_REG_SZ]; in mlx5_fpga_access_reg() local 63 err = mlx5_core_access_reg(dev, in, sizeof(in), out, sizeof(out), in mlx5_fpga_access_reg() 69 memcpy(buf, MLX5_ADDR_OF(fpga_access_reg, out, data), size); in mlx5_fpga_access_reg() 86 u32 out[MLX5_ST_SZ_DW(fpga_ctrl)]; in mlx5_fpga_ctrl_op() local 90 return mlx5_core_access_reg(dev, in, sizeof(in), out, sizeof(out), in mlx5_fpga_ctrl_op() 129 u32 out[MLX5_ST_SZ_DW(fpga_ctrl)]; in mlx5_fpga_query() local 132 err = mlx5_core_access_reg(dev, in, sizeof(in), out, sizeof(out), in mlx5_fpga_query() 137 query->status = MLX5_GET(fpga_ctrl, out, status); in mlx5_fpga_query() 138 query->admin_image = MLX5_GET(fpga_ctrl, out, flash_select_admin); in mlx5_fpga_query() 139 query->oper_image = MLX5_GET(fpga_ctrl, out, flash_select_oper); in mlx5_fpga_query() [all …]
|
/drivers/net/wireless/ti/wlcore/ |
D | acx.c | 34 goto out; in wl1271_acx_wake_up_conditions() 45 goto out; in wl1271_acx_wake_up_conditions() 48 out: in wl1271_acx_wake_up_conditions() 63 goto out; in wl1271_acx_sleep_auth() 72 goto out; in wl1271_acx_sleep_auth() 76 out: in wl1271_acx_sleep_auth() 96 goto out; in wl1271_acx_tx_power() 105 goto out; in wl1271_acx_tx_power() 108 out: in wl1271_acx_tx_power() 123 goto out; in wl1271_acx_feature_cfg() [all …]
|
/drivers/media/pci/solo6x10/ |
D | solo6x10-core.c | 244 char *out = buf; in input_map_show() local 247 out += sprintf(out, "Channel 0 => Input %d\n", val & 0x1f); in input_map_show() 248 out += sprintf(out, "Channel 1 => Input %d\n", (val >> 5) & 0x1f); in input_map_show() 249 out += sprintf(out, "Channel 2 => Input %d\n", (val >> 10) & 0x1f); in input_map_show() 250 out += sprintf(out, "Channel 3 => Input %d\n", (val >> 15) & 0x1f); in input_map_show() 251 out += sprintf(out, "Channel 4 => Input %d\n", (val >> 20) & 0x1f); in input_map_show() 252 out += sprintf(out, "Channel 5 => Input %d\n", (val >> 25) & 0x1f); in input_map_show() 255 out += sprintf(out, "Channel 6 => Input %d\n", val & 0x1f); in input_map_show() 256 out += sprintf(out, "Channel 7 => Input %d\n", (val >> 5) & 0x1f); in input_map_show() 257 out += sprintf(out, "Channel 8 => Input %d\n", (val >> 10) & 0x1f); in input_map_show() [all …]
|
/drivers/target/iscsi/ |
D | iscsi_target_auth.c | 62 goto out; in chap_check_algorithm() 66 goto out; in chap_check_algorithm() 71 goto out; in chap_check_algorithm() 79 out: in chap_check_algorithm() 182 goto out; in chap_server_compute_md5() 188 goto out; in chap_server_compute_md5() 196 goto out; in chap_server_compute_md5() 200 goto out; in chap_server_compute_md5() 207 goto out; in chap_server_compute_md5() 216 goto out; in chap_server_compute_md5() [all …]
|
/drivers/gpu/drm/omapdrm/dss/ |
D | output.c | 20 int omapdss_device_init_output(struct omap_dss_device *out) in omapdss_device_init_output() argument 24 remote_node = of_graph_get_remote_node(out->dev->of_node, in omapdss_device_init_output() 25 ffs(out->of_ports) - 1, 0); in omapdss_device_init_output() 27 dev_dbg(out->dev, "failed to find video sink\n"); in omapdss_device_init_output() 31 out->next = omapdss_find_device_by_node(remote_node); in omapdss_device_init_output() 32 out->bridge = of_drm_find_bridge(remote_node); in omapdss_device_init_output() 33 out->panel = of_drm_find_panel(remote_node); in omapdss_device_init_output() 34 if (IS_ERR(out->panel)) in omapdss_device_init_output() 35 out->panel = NULL; in omapdss_device_init_output() 39 if (out->next && out->type != out->next->type) { in omapdss_device_init_output() [all …]
|
/drivers/crypto/vmx/ |
D | aesp8-ppc.pl | 120 my ($inp,$bits,$out,$ptr,$cnt,$rounds)=map("r$_",(3..8)); 154 ${UCMP}i $out,0 155 beq- Lenc_key_abort # if ($out==0) return -1; 188 ?lvsr $outperm,0,$out 190 lvx $outhead,0,$out 207 stvx $stage,0,$out 208 addi $out,$out,16 227 stvx $stage,0,$out 228 addi $out,$out,16 244 stvx $stage,0,$out [all …]
|
/drivers/xen/xen-pciback/ |
D | xenbus.c | 43 goto out; in alloc_pdev() 63 out: in alloc_pdev() 121 goto out; in xen_pcibk_do_attach() 132 goto out; in xen_pcibk_do_attach() 138 out: in xen_pcibk_do_attach() 153 goto out; in xen_pcibk_attach() 158 goto out; in xen_pcibk_attach() 170 goto out; in xen_pcibk_attach() 179 goto out; in xen_pcibk_attach() 184 goto out; in xen_pcibk_attach() [all …]
|
/drivers/net/wireless/ti/wl18xx/ |
D | acx.c | 29 goto out; in wl18xx_acx_host_if_cfg_bitmap() 41 goto out; in wl18xx_acx_host_if_cfg_bitmap() 44 out: in wl18xx_acx_host_if_cfg_bitmap() 60 goto out; in wl18xx_acx_set_checksum_state() 68 goto out; in wl18xx_acx_set_checksum_state() 71 out: in wl18xx_acx_set_checksum_state() 86 goto out; in wl18xx_acx_clear_statistics() 92 goto out; in wl18xx_acx_clear_statistics() 95 out: in wl18xx_acx_clear_statistics() 111 goto out; in wl18xx_acx_peer_ht_operation_mode() [all …]
|
/drivers/net/wireless/ti/wl1251/ |
D | acx.c | 33 goto out; in wl1251_acx_frame_rates() 36 out: in wl1251_acx_frame_rates() 79 goto out; in wl1251_acx_default_key() 84 out: in wl1251_acx_default_key() 108 goto out; in wl1251_acx_wake_up_conditions() 111 out: in wl1251_acx_wake_up_conditions() 149 goto out; in wl1251_acx_fw_version() 162 out: in wl1251_acx_fw_version() 186 goto out; in wl1251_acx_tx_power() 189 out: in wl1251_acx_tx_power() [all …]
|
/drivers/parisc/ |
D | pdc_stable.c | 223 char *out = buf; in pdcspath_hwpath_read() local 241 out += sprintf(out, "%u/", (unsigned char)devpath->bc[i]); in pdcspath_hwpath_read() 243 out += sprintf(out, "%u\n", (unsigned char)devpath->mod); in pdcspath_hwpath_read() 245 return out - buf; in pdcspath_hwpath_read() 344 char *out = buf; in pdcspath_layer_read() local 360 out += sprintf(out, "%u ", devpath->layers[i]); in pdcspath_layer_read() 362 out += sprintf(out, "\n"); in pdcspath_layer_read() 364 return out - buf; in pdcspath_layer_read() 519 char *out = buf; in pdcs_size_read() local 525 out += sprintf(out, "%ld\n", pdcs_size); in pdcs_size_read() [all …]
|