/drivers/net/ethernet/microchip/sparx5/ |
D | sparx5_vcap_debugfs.c | 79 struct vcap_output_print *out) in sparx5_vcap_is0_port_keys() argument 84 out->prf(out->dst, " port[%02d] (%s): ", port->portno, in sparx5_vcap_is0_port_keys() 87 out->prf(out->dst, "\n Lookup %d: ", lookup); in sparx5_vcap_is0_port_keys() 92 out->prf(out->dst, "\n state: "); in sparx5_vcap_is0_port_keys() 94 out->prf(out->dst, "on"); in sparx5_vcap_is0_port_keys() 96 out->prf(out->dst, "off"); in sparx5_vcap_is0_port_keys() 98 out->prf(out->dst, "\n etype: %s", in sparx5_vcap_is0_port_keys() 101 out->prf(out->dst, "\n ipv4: %s", in sparx5_vcap_is0_port_keys() 104 out->prf(out->dst, "\n ipv6: %s", in sparx5_vcap_is0_port_keys() 107 out->prf(out->dst, "\n mpls_uc: %s", in sparx5_vcap_is0_port_keys() [all …]
|
/drivers/net/ethernet/microchip/lan966x/ |
D | lan966x_vcap_debugfs.c | 10 struct vcap_output_print *out) in lan966x_vcap_is1_port_keys() argument 15 out->prf(out->dst, " port[%d] (%s): ", port->chip_port, in lan966x_vcap_is1_port_keys() 19 out->prf(out->dst, "\n state: "); in lan966x_vcap_is1_port_keys() 21 out->prf(out->dst, "on"); in lan966x_vcap_is1_port_keys() 23 out->prf(out->dst, "off"); in lan966x_vcap_is1_port_keys() 26 out->prf(out->dst, "\n Lookup %d: ", l); in lan966x_vcap_is1_port_keys() 28 out->prf(out->dst, "\n other: "); in lan966x_vcap_is1_port_keys() 31 out->prf(out->dst, "normal"); in lan966x_vcap_is1_port_keys() 34 out->prf(out->dst, "7tuple"); in lan966x_vcap_is1_port_keys() 37 out->prf(out->dst, "dbl_vid"); in lan966x_vcap_is1_port_keys() [all …]
|
/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/microchip/vcap/ |
D | vcap_api_debugfs.c | 23 struct vcap_output_print *out, in vcap_debugfs_show_rule_keyfield() argument 32 out->prf(out->dst, " %s: W%d: ", vcap_keyfield_name(vctrl, key), in vcap_debugfs_show_rule_keyfield() 37 out->prf(out->dst, "%d/%d", data->u1.value, data->u1.mask); in vcap_debugfs_show_rule_keyfield() 44 out->prf(out->dst, "%pI4h/%pI4h", &data->u32.value, in vcap_debugfs_show_rule_keyfield() 55 out->prf(out->dst, "%u/%u", data->u32.value & fmsk, in vcap_debugfs_show_rule_keyfield() 63 out->prf(out->dst, "%pMR/%pMR", data->u48.value, in vcap_debugfs_show_rule_keyfield() 98 out->prf(out->dst, "%pI6/%pI6", nvalue, nmask); in vcap_debugfs_show_rule_keyfield() 106 out->prf(out->dst, "0x"); in vcap_debugfs_show_rule_keyfield() 108 out->prf(out->dst, "%02x", value[bytes - idx - 1]); in vcap_debugfs_show_rule_keyfield() 109 out->prf(out->dst, "/0x"); in vcap_debugfs_show_rule_keyfield() [all …]
|
/drivers/media/platform/mediatek/vcodec/encoder/ |
D | venc_vpu_if.c | 135 struct venc_ap_ipi_msg_init out; in vpu_enc_init() local 151 memset(&out, 0, sizeof(out)); in vpu_enc_init() 152 out.msg_id = AP_IPIMSG_ENC_INIT; in vpu_enc_init() 153 out.venc_inst = (unsigned long)vpu; in vpu_enc_init() 154 if (vpu_enc_send_msg(vpu, &out, sizeof(out))) { in vpu_enc_init() 194 struct venc_ap_ipi_msg_set_param_ext out; in vpu_enc_set_param() local 198 memset(&out, 0, sizeof(out)); in vpu_enc_set_param() 199 out.base.msg_id = AP_IPIMSG_ENC_SET_PARAM; in vpu_enc_set_param() 200 out.base.vpu_inst_addr = vpu->inst_addr; in vpu_enc_set_param() 201 out.base.param_id = id; in vpu_enc_set_param() [all …]
|
/drivers/net/ethernet/mellanox/mlx5/core/ |
D | port.c | 44 u32 *out = NULL; in mlx5_access_reg() local 49 out = kvzalloc(outlen, GFP_KERNEL); in mlx5_access_reg() 50 if (!in || !out) in mlx5_access_reg() 51 goto out; in mlx5_access_reg() 61 err = mlx5_cmd_do(dev, in, inlen, out, outlen); in mlx5_access_reg() 63 err = mlx5_cmd_check(dev, err, in, out); in mlx5_access_reg() 65 goto out; in mlx5_access_reg() 67 data = MLX5_ADDR_OF(access_register_out, out, register_data); in mlx5_access_reg() 70 out: in mlx5_access_reg() 71 kvfree(out); in mlx5_access_reg() [all …]
|
D | vport.c | 46 u32 out[MLX5_ST_SZ_DW(query_vport_state_out)] = {}; in mlx5_query_vport_state() local 57 err = mlx5_cmd_exec_inout(mdev, query_vport_state, in, out); in mlx5_query_vport_state() 61 return MLX5_GET(query_vport_state_out, out, state); in mlx5_query_vport_state() 80 u32 *out) in mlx5_query_nic_vport_context() argument 90 return mlx5_cmd_exec_inout(mdev, query_nic_vport_context, in, out); in mlx5_query_nic_vport_context() 96 u32 out[MLX5_ST_SZ_DW(query_nic_vport_context_out)] = {}; in mlx5_query_nic_vport_min_inline() local 99 err = mlx5_query_nic_vport_context(mdev, vport, out); in mlx5_query_nic_vport_min_inline() 101 *min_inline = MLX5_GET(query_nic_vport_context_out, out, in mlx5_query_nic_vport_min_inline() 149 u32 out[MLX5_ST_SZ_DW(query_nic_vport_context_out)] = {}; in mlx5_query_nic_vport_mac_address() local 154 out_addr = MLX5_ADDR_OF(query_nic_vport_context_out, out, in mlx5_query_nic_vport_mac_address() [all …]
|
/drivers/media/test-drivers/vicodec/ |
D | codec-fwht.c | 255 s16 *out = output_block; in fwht() local 260 for (i = 0; i < 8; i++, tmp += stride, out += 8) { in fwht() 328 out[0] = workspace2[0] + workspace2[4]; in fwht() 329 out[1] = workspace2[0] - workspace2[4]; in fwht() 330 out[2] = workspace2[1] - workspace2[5]; in fwht() 331 out[3] = workspace2[1] + workspace2[5]; in fwht() 332 out[4] = workspace2[2] + workspace2[6]; in fwht() 333 out[5] = workspace2[2] - workspace2[6]; in fwht() 334 out[6] = workspace2[3] - workspace2[7]; in fwht() 335 out[7] = workspace2[3] + workspace2[7]; in fwht() [all …]
|
/drivers/md/bcache/ |
D | features.c | 35 out += snprintf(out, buf + size - out, \ 38 out += snprintf(out, buf + size - out, \ 42 out += snprintf(out, buf + size - out, " "); \ 45 out += snprintf(out, buf + size - out, "%s", f->string);\ 48 out += snprintf(out, buf + size - out, "]"); \ 53 out += snprintf(out, buf + size - out, "\n"); \ 58 char *out = buf; in bch_print_cache_set_feature_compat() local 60 return out - buf; in bch_print_cache_set_feature_compat() 65 char *out = buf; in bch_print_cache_set_feature_ro_compat() local 67 return out - buf; in bch_print_cache_set_feature_ro_compat() [all …]
|
/drivers/net/ethernet/mellanox/mlx5/core/en/ |
D | port.c | 38 u32 out[MLX5_ST_SZ_DW(ptys_reg)]; in mlx5_port_query_eth_autoneg() local 44 if (mlx5_query_port_ptys(dev, out, sizeof(out), MLX5_PTYS_EN, 1)) in mlx5_port_query_eth_autoneg() 47 *an_status = MLX5_GET(ptys_reg, out, an_status); in mlx5_port_query_eth_autoneg() 48 *an_disable_cap = MLX5_GET(ptys_reg, out, an_disable_cap); in mlx5_port_query_eth_autoneg() 49 *an_disable_admin = MLX5_GET(ptys_reg, out, an_disable_admin); in mlx5_port_query_eth_autoneg() 55 u32 out[MLX5_ST_SZ_DW(ptys_reg)]; in mlx5_port_set_eth_ptys() local 76 return mlx5_core_access_reg(dev, in, sizeof(in), out, in mlx5_port_set_eth_ptys() 77 sizeof(out), MLX5_REG_PTYS, 0, 1); in mlx5_port_set_eth_ptys() 90 goto out; in mlx5e_port_linkspeed() 95 goto out; in mlx5e_port_linkspeed() [all …]
|
/drivers/gpu/drm/amd/display/modules/hdcp/ |
D | hdcp2_execution.c | 111 goto out; in check_h_prime_available() 124 out: in check_h_prime_available() 135 goto out; in check_pairing_info_available() 148 out: in check_pairing_info_available() 191 goto out; in check_stream_ready_available() 198 out: in check_stream_ready_available() 232 goto out; in process_rxstatus() 236 goto out; in process_rxstatus() 241 goto out; in process_rxstatus() 256 out: in process_rxstatus() [all …]
|
D | hdcp1_execution.c | 156 goto out; in wait_for_active_rx() 162 goto out; in wait_for_active_rx() 166 goto out; in wait_for_active_rx() 167 out: in wait_for_active_rx() 179 goto out; in exchange_ksvs() 185 goto out; in exchange_ksvs() 189 goto out; in exchange_ksvs() 193 goto out; in exchange_ksvs() 197 goto out; in exchange_ksvs() 201 goto out; in exchange_ksvs() [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/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/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 …]
|
/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 26 remote_node = of_graph_get_remote_node(out->dev->of_node, in omapdss_device_init_output() 27 out->of_port, 0); in omapdss_device_init_output() 29 dev_dbg(out->dev, "failed to find video sink\n"); in omapdss_device_init_output() 33 out->bridge = of_drm_find_bridge(remote_node); in omapdss_device_init_output() 34 out->panel = of_drm_find_panel(remote_node); in omapdss_device_init_output() 35 if (IS_ERR(out->panel)) in omapdss_device_init_output() 36 out->panel = NULL; in omapdss_device_init_output() 40 if (out->panel) { in omapdss_device_init_output() 43 bridge = drm_panel_bridge_add(out->panel); in omapdss_device_init_output() [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/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/target/iscsi/ |
D | iscsi_target_auth.c | 55 goto out; in chap_gen_challenge() 68 out: in chap_gen_challenge() 100 goto out; in chap_check_algorithm() 104 goto out; in chap_check_algorithm() 109 goto out; in chap_check_algorithm() 123 goto out; in chap_check_algorithm() 126 out: in chap_check_algorithm() 266 goto out; in chap_server_compute_hash() 272 goto out; in chap_server_compute_hash() 278 goto out; in chap_server_compute_hash() [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/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() 154 goto out; in xen_pcibk_attach() 159 goto out; in xen_pcibk_attach() 171 goto out; in xen_pcibk_attach() 180 goto out; in xen_pcibk_attach() 185 goto out; in xen_pcibk_attach() [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/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/platform/x86/amd/pmf/ |
D | cnqf.c | 236 static void amd_pmf_update_trans_data(int idx, struct apmf_dyn_slider_output *out) in amd_pmf_update_trans_data() argument 241 tp->time_constant = out->t_balanced_to_quiet; in amd_pmf_update_trans_data() 246 tp->time_constant = out->t_balanced_to_perf; in amd_pmf_update_trans_data() 251 tp->time_constant = out->t_quiet_to_balanced; in amd_pmf_update_trans_data() 256 tp->time_constant = out->t_perf_to_balanced; in amd_pmf_update_trans_data() 261 tp->time_constant = out->t_turbo_to_perf; in amd_pmf_update_trans_data() 266 tp->time_constant = out->t_perf_to_turbo; in amd_pmf_update_trans_data() 271 static void amd_pmf_update_mode_set(int idx, struct apmf_dyn_slider_output *out) in amd_pmf_update_mode_set() argument 277 ms->power_floor = out->ps[APMF_CNQF_QUIET].pfloor; in amd_pmf_update_mode_set() 278 ms->power_control.fppt = out->ps[APMF_CNQF_QUIET].fppt; in amd_pmf_update_mode_set() [all …]
|
/drivers/net/ethernet/mellanox/mlx5/core/fpga/ |
D | cmd.c | 47 u32 out[MLX5_FPGA_ACCESS_REG_SZ]; in mlx5_fpga_access_reg() local 62 err = mlx5_core_access_reg(dev, in, sizeof(in), out, sizeof(out), in mlx5_fpga_access_reg() 68 memcpy(buf, MLX5_ADDR_OF(fpga_access_reg, out, data), size); in mlx5_fpga_access_reg() 85 u32 out[MLX5_ST_SZ_DW(fpga_ctrl)]; in mlx5_fpga_ctrl_op() local 89 return mlx5_core_access_reg(dev, in, sizeof(in), out, sizeof(out), in mlx5_fpga_ctrl_op() 128 u32 out[MLX5_ST_SZ_DW(fpga_ctrl)]; in mlx5_fpga_query() local 131 err = mlx5_core_access_reg(dev, in, sizeof(in), out, sizeof(out), in mlx5_fpga_query() 136 query->status = MLX5_GET(fpga_ctrl, out, status); in mlx5_fpga_query() 137 query->admin_image = MLX5_GET(fpga_ctrl, out, flash_select_admin); in mlx5_fpga_query() 138 query->oper_image = MLX5_GET(fpga_ctrl, out, flash_select_oper); in mlx5_fpga_query() [all …]
|