/kernel/linux/linux-5.10/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 …]
|
/kernel/linux/linux-5.10/fs/ocfs2/dlm/ |
D | dlmdebug.c | 239 int out = 0; in stringify_lockname() local 247 out += scnprintf(buf + out, len - out, "%.*s%08x", in stringify_lockname() 251 out += scnprintf(buf + out, len - out, "%.*s", in stringify_lockname() 253 return out; in stringify_lockname() 259 int out = 0; in stringify_nodemap() local 263 out += scnprintf(buf + out, len - out, "%d ", i); in stringify_nodemap() 265 return out; in stringify_nodemap() 270 int out = 0; in dump_mle() local 280 out += stringify_lockname(mle->mname, mle->mnamelen, buf + out, len - out); in dump_mle() 281 out += scnprintf(buf + out, len - out, in dump_mle() [all …]
|
/kernel/linux/linux-5.10/lib/ |
D | string_helpers.c | 62 goto out; in string_get_size() 122 out: in string_get_size() 270 char *out = dst; in string_unescape() local 278 unescape_space(&src, &out)) in string_unescape() 282 unescape_octal(&src, &out)) in string_unescape() 286 unescape_hex(&src, &out)) in string_unescape() 290 unescape_special(&src, &out)) in string_unescape() 293 *out++ = '\\'; in string_unescape() 295 *out++ = *src++; in string_unescape() 297 *out = '\0'; in string_unescape() [all …]
|
D | test-string_helpers.c | 36 const char *out; member 43 .out = "\f\\ \n\r\t\v", 48 .out = " \001\00387\0064\005 \\8aH?7", 53 .out = "\\xv\n,\ro2", 58 .out = "\\h\\\"\a\e\\", 73 goto out; in test_string_unescape() 85 s = strings[i].out; in test_string_unescape() 86 len = strlen(strings[i].out); in test_string_unescape() 108 out: in test_string_unescape() 115 const char *out; member [all …]
|
/kernel/linux/linux-5.10/fs/udf/ |
D | udfend.h | 10 struct kernel_lb_addr out; in lelb_to_cpu() local 12 out.logicalBlockNum = le32_to_cpu(in.logicalBlockNum); in lelb_to_cpu() 13 out.partitionReferenceNum = le16_to_cpu(in.partitionReferenceNum); in lelb_to_cpu() 15 return out; in lelb_to_cpu() 20 struct lb_addr out; in cpu_to_lelb() local 22 out.logicalBlockNum = cpu_to_le32(in.logicalBlockNum); in cpu_to_lelb() 23 out.partitionReferenceNum = cpu_to_le16(in.partitionReferenceNum); in cpu_to_lelb() 25 return out; in cpu_to_lelb() 30 struct short_ad out; in lesa_to_cpu() local 32 out.extLength = le32_to_cpu(in.extLength); in lesa_to_cpu() [all …]
|
/kernel/linux/linux-5.10/drivers/media/platform/mtk-vcodec/ |
D | venc_vpu_if.c | 111 struct venc_ap_ipi_msg_init out; in vpu_enc_init() local 127 memset(&out, 0, sizeof(out)); in vpu_enc_init() 128 out.msg_id = AP_IPIMSG_ENC_INIT; in vpu_enc_init() 129 out.venc_inst = (unsigned long)vpu; in vpu_enc_init() 130 if (vpu_enc_send_msg(vpu, &out, sizeof(out))) { in vpu_enc_init() 167 struct venc_ap_ipi_msg_set_param_ext out; in vpu_enc_set_param() local 171 memset(&out, 0, sizeof(out)); in vpu_enc_set_param() 172 out.base.msg_id = AP_IPIMSG_ENC_SET_PARAM; in vpu_enc_set_param() 173 out.base.vpu_inst_addr = vpu->inst_addr; in vpu_enc_set_param() 174 out.base.param_id = id; in vpu_enc_set_param() [all …]
|
/kernel/linux/linux-5.10/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 …]
|
/kernel/linux/linux-5.10/tools/testing/selftests/openat2/ |
D | resolve_test.c | 118 } out; member 140 .out.err = -EXDEV, .pass = false }, in test_openat2_opath_tests() 143 .out.err = -EXDEV, .pass = false }, in test_openat2_opath_tests() 146 .out.err = -EXDEV, .pass = false }, in test_openat2_opath_tests() 149 .out.err = -EXDEV, .pass = false }, in test_openat2_opath_tests() 152 .out.err = -EXDEV, .pass = false }, in test_openat2_opath_tests() 155 .out.err = -EXDEV, .pass = false }, in test_openat2_opath_tests() 158 .out.err = -EXDEV, .pass = false }, in test_openat2_opath_tests() 161 .out.err = -EXDEV, .pass = false }, in test_openat2_opath_tests() 164 .out.err = -EXDEV, .pass = false }, in test_openat2_opath_tests() [all …]
|
/kernel/linux/linux-5.10/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 …]
|
/kernel/linux/linux-5.10/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->next = omapdss_find_device_by_node(remote_node); in omapdss_device_init_output() 34 out->bridge = of_drm_find_bridge(remote_node); in omapdss_device_init_output() 35 out->panel = of_drm_find_panel(remote_node); in omapdss_device_init_output() 36 if (IS_ERR(out->panel)) in omapdss_device_init_output() 37 out->panel = NULL; in omapdss_device_init_output() 41 if (out->next && out->type != out->next->type) { in omapdss_device_init_output() [all …]
|
/kernel/linux/linux-5.10/tools/testing/selftests/bpf/progs/ |
D | test_core_reloc_type_based.c | 14 char out[256]; member 81 struct core_reloc_type_based_output *out = (void *)&data.out; in test_core_type_based() local 83 out->struct_exists = bpf_core_type_exists(struct a_struct); in test_core_type_based() 84 out->union_exists = bpf_core_type_exists(union a_union); in test_core_type_based() 85 out->enum_exists = bpf_core_type_exists(enum an_enum); in test_core_type_based() 86 out->typedef_named_struct_exists = bpf_core_type_exists(named_struct_typedef); in test_core_type_based() 87 out->typedef_anon_struct_exists = bpf_core_type_exists(anon_struct_typedef); in test_core_type_based() 88 out->typedef_struct_ptr_exists = bpf_core_type_exists(struct_ptr_typedef); in test_core_type_based() 89 out->typedef_int_exists = bpf_core_type_exists(int_typedef); in test_core_type_based() 90 out->typedef_enum_exists = bpf_core_type_exists(enum_typedef); in test_core_type_based() [all …]
|
D | test_core_reloc_type_id.c | 14 char out[256]; member 86 struct core_reloc_type_id_output *out = (void *)&data.out; in test_core_type_id() local 88 out->local_anon_struct = bpf_core_type_id_local(struct { int marker_field; }); in test_core_type_id() 89 out->local_anon_union = bpf_core_type_id_local(union { int marker_field; }); in test_core_type_id() 90 out->local_anon_enum = bpf_core_type_id_local(enum { MARKER_ENUM_VAL = 123 }); in test_core_type_id() 91 out->local_anon_func_proto_ptr = bpf_core_type_id_local(_Bool(*)(int)); in test_core_type_id() 92 out->local_anon_void_ptr = bpf_core_type_id_local(void *); in test_core_type_id() 93 out->local_anon_arr = bpf_core_type_id_local(_Bool[47]); in test_core_type_id() 95 out->local_struct = bpf_core_type_id_local(struct a_struct); in test_core_type_id() 96 out->local_union = bpf_core_type_id_local(union a_union); in test_core_type_id() [all …]
|
D | test_core_reloc_existence.c | 13 char out[256]; member 45 struct core_reloc_existence_output *out = (void *)&data.out; in test_core_existence() local 47 out->a_exists = bpf_core_field_exists(in->a); in test_core_existence() 49 out->a_value = BPF_CORE_READ(in, a); in test_core_existence() 51 out->a_value = 0xff000001u; in test_core_existence() 53 out->b_exists = bpf_core_field_exists(in->b); in test_core_existence() 55 out->b_value = BPF_CORE_READ(in, b); in test_core_existence() 57 out->b_value = 0xff000002u; in test_core_existence() 59 out->c_exists = bpf_core_field_exists(in->c); in test_core_existence() 61 out->c_value = BPF_CORE_READ(in, c); in test_core_existence() [all …]
|
/kernel/linux/linux-5.10/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 …]
|
/kernel/linux/linux-5.10/drivers/media/test-drivers/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 …]
|
/kernel/linux/linux-5.10/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 …]
|
/kernel/linux/linux-5.10/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() 224 goto out; in process_rxstatus() 228 goto out; in process_rxstatus() 233 goto out; in process_rxstatus() 248 out: in process_rxstatus() [all …]
|
D | hdcp1_execution.c | 147 goto out; in wait_for_active_rx() 153 goto out; in wait_for_active_rx() 157 goto out; in wait_for_active_rx() 158 out: in wait_for_active_rx() 170 goto out; in exchange_ksvs() 176 goto out; in exchange_ksvs() 180 goto out; in exchange_ksvs() 184 goto out; in exchange_ksvs() 188 goto out; in exchange_ksvs() 192 goto out; in exchange_ksvs() [all …]
|
/kernel/linux/linux-5.10/fs/btrfs/tests/ |
D | inode-tests.c | 243 goto out; in test_btrfs_get_extent() 249 goto out; in test_btrfs_get_extent() 255 goto out; in test_btrfs_get_extent() 268 goto out; in test_btrfs_get_extent() 272 goto out; in test_btrfs_get_extent() 287 goto out; in test_btrfs_get_extent() 291 goto out; in test_btrfs_get_extent() 297 goto out; in test_btrfs_get_extent() 301 goto out; in test_btrfs_get_extent() 309 goto out; in test_btrfs_get_extent() [all …]
|
/kernel/linux/linux-5.10/fs/nls/ |
D | nls_euc-jp.c | 410 unsigned char *out, int boundlen) in uni2char() argument 416 if ((n = p_nls->uni2char(uni, out, boundlen)) < 0) in uni2char() 421 if (IS_SJIS_JISX0201KANA(out[0])) { in uni2char() 426 out[1] = out[0]; in uni2char() 427 out[0] = SS2; in uni2char() 432 sjisnec2sjisibm(out, out[0], out[1]); in uni2char() 434 if (IS_SJIS_UDC_LOW(out[0], out[1])) { in uni2char() 436 MAP_SJIS2EUC(out[0], out[1], 0xF0, out[0], out[1], 0xF5); in uni2char() 437 } else if (IS_SJIS_UDC_HI(out[0], out[1])) { in uni2char() 444 n = 3; ch = out[0]; cl = out[1]; in uni2char() [all …]
|
/kernel/linux/linux-5.10/tools/perf/util/ |
D | demangle-rust.c | 51 static bool unescape(const char **in, char **out, const char *seq, char value); 185 char *out; in rust_demangle_sym() local 192 out = sym; in rust_demangle_sym() 198 if (!(unescape(&in, &out, "$C$", ',') in rust_demangle_sym() 199 || unescape(&in, &out, "$SP$", '@') in rust_demangle_sym() 200 || unescape(&in, &out, "$BP$", '*') in rust_demangle_sym() 201 || unescape(&in, &out, "$RF$", '&') in rust_demangle_sym() 202 || unescape(&in, &out, "$LT$", '<') in rust_demangle_sym() 203 || unescape(&in, &out, "$GT$", '>') in rust_demangle_sym() 204 || unescape(&in, &out, "$LP$", '(') in rust_demangle_sym() [all …]
|
/kernel/linux/linux-5.10/tools/testing/selftests/bpf/prog_tests/ |
D | tailcalls.c | 26 goto out; in test_tailcall_1() 30 goto out; in test_tailcall_1() 34 goto out; in test_tailcall_1() 38 goto out; in test_tailcall_1() 45 goto out; in test_tailcall_1() 49 goto out; in test_tailcall_1() 53 goto out; in test_tailcall_1() 64 goto out; in test_tailcall_1() 77 goto out; in test_tailcall_1() 81 goto out; in test_tailcall_1() [all …]
|
/kernel/linux/linux-5.10/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 …]
|
/kernel/linux/linux-5.10/drivers/net/ethernet/mellanox/mlx5/core/en/ |
D | port.c | 113 u32 out[MLX5_ST_SZ_DW(ptys_reg)]; in mlx5_port_query_eth_proto() local 119 err = mlx5_query_port_ptys(dev, out, sizeof(out), MLX5_PTYS_EN, port); in mlx5_port_query_eth_proto() 123 eproto->cap = MLX5_GET_ETH_PROTO(ptys_reg, out, ext, in mlx5_port_query_eth_proto() 125 eproto->admin = MLX5_GET_ETH_PROTO(ptys_reg, out, ext, eth_proto_admin); in mlx5_port_query_eth_proto() 126 eproto->oper = MLX5_GET_ETH_PROTO(ptys_reg, out, ext, eth_proto_oper); in mlx5_port_query_eth_proto() 133 u32 out[MLX5_ST_SZ_DW(ptys_reg)]; in mlx5_port_query_eth_autoneg() local 139 if (mlx5_query_port_ptys(dev, out, sizeof(out), MLX5_PTYS_EN, 1)) in mlx5_port_query_eth_autoneg() 142 *an_status = MLX5_GET(ptys_reg, out, an_status); in mlx5_port_query_eth_autoneg() 143 *an_disable_cap = MLX5_GET(ptys_reg, out, an_disable_cap); in mlx5_port_query_eth_autoneg() 144 *an_disable_admin = MLX5_GET(ptys_reg, out, an_disable_admin); in mlx5_port_query_eth_autoneg() [all …]
|
/kernel/linux/linux-5.10/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 …]
|