/linux-4.4.14/fs/udf/ |
H A D | udfend.h | 9 struct kernel_lb_addr out; lelb_to_cpu() local 11 out.logicalBlockNum = le32_to_cpu(in.logicalBlockNum); lelb_to_cpu() 12 out.partitionReferenceNum = le16_to_cpu(in.partitionReferenceNum); lelb_to_cpu() 14 return out; lelb_to_cpu() 19 struct lb_addr out; cpu_to_lelb() local 21 out.logicalBlockNum = cpu_to_le32(in.logicalBlockNum); cpu_to_lelb() 22 out.partitionReferenceNum = cpu_to_le16(in.partitionReferenceNum); cpu_to_lelb() 24 return out; cpu_to_lelb() 29 struct short_ad out; lesa_to_cpu() local 31 out.extLength = le32_to_cpu(in.extLength); lesa_to_cpu() 32 out.extPosition = le32_to_cpu(in.extPosition); lesa_to_cpu() 34 return out; lesa_to_cpu() 39 struct short_ad out; cpu_to_lesa() local 41 out.extLength = cpu_to_le32(in.extLength); cpu_to_lesa() 42 out.extPosition = cpu_to_le32(in.extPosition); cpu_to_lesa() 44 return out; cpu_to_lesa() 49 struct kernel_long_ad out; lela_to_cpu() local 51 out.extLength = le32_to_cpu(in.extLength); lela_to_cpu() 52 out.extLocation = lelb_to_cpu(in.extLocation); lela_to_cpu() 54 return out; lela_to_cpu() 59 struct long_ad out; cpu_to_lela() local 61 out.extLength = cpu_to_le32(in.extLength); cpu_to_lela() 62 out.extLocation = cpu_to_lelb(in.extLocation); cpu_to_lela() 64 return out; cpu_to_lela() 69 struct kernel_extent_ad out; leea_to_cpu() local 71 out.extLength = le32_to_cpu(in.extLength); leea_to_cpu() 72 out.extLocation = le32_to_cpu(in.extLocation); leea_to_cpu() 74 return out; leea_to_cpu()
|
/linux-4.4.14/drivers/usb/host/ |
H A D | uhci-debug.c | 45 char *out = buf; uhci_show_td() local 50 out += sprintf(out, "%*s[%p] link (%08x) ", space, "", td, uhci_show_td() 52 out += sprintf(out, "e%d %s%s%s%s%s%s%s%s%s%sLength=%x ", uhci_show_td() 65 if (out - buf > len) uhci_show_td() 84 out += sprintf(out, "MaxLen=%x DT%d EndPt=%x Dev=%x, PID=%x(%s) ", uhci_show_td() 91 out += sprintf(out, "(buf=%08x)\n", hc32_to_cpu(uhci, td->buffer)); uhci_show_td() 94 if (out - buf > len) uhci_show_td() 95 out += sprintf(out, " ...\n"); uhci_show_td() 96 return out - buf; uhci_show_td() 102 char *out = buf; uhci_show_urbp() local 108 out += sprintf(out, "urb_priv [%p] ", urbp); uhci_show_urbp() 109 out += sprintf(out, "urb [%p] ", urbp->urb); uhci_show_urbp() 110 out += sprintf(out, "qh [%p] ", urbp->qh); uhci_show_urbp() 111 out += sprintf(out, "Dev=%d ", usb_pipedevice(urbp->urb->pipe)); uhci_show_urbp() 112 out += sprintf(out, "EP=%x(%s) ", usb_pipeendpoint(urbp->urb->pipe), uhci_show_urbp() 114 if (out - buf > len) uhci_show_urbp() 125 out += sprintf(out, "%s%s", ptype, (urbp->fsbr ? " FSBR" : "")); uhci_show_urbp() 126 out += sprintf(out, " Actlen=%d%s", urbp->urb->actual_length, uhci_show_urbp() 131 out += sprintf(out, " Unlinked=%d", urbp->urb->unlinked); uhci_show_urbp() 132 out += sprintf(out, "\n"); uhci_show_urbp() 134 if (out - buf > len) uhci_show_urbp() 141 out += sprintf(out, "%*s%d: ", space + 2, "", i); uhci_show_urbp() 142 out += uhci_show_td(uhci, td, out, uhci_show_urbp() 143 len - (out - buf), 0); uhci_show_urbp() 144 if (out - buf > len) uhci_show_urbp() 154 out += sprintf(out, uhci_show_urbp() 158 if (out - buf > len) uhci_show_urbp() 159 out += sprintf(out, " ...\n"); uhci_show_urbp() 161 return out - buf; uhci_show_urbp() 167 char *out = buf; uhci_show_qh() local 180 out += sprintf(out, "%*s[%p] %s QH link (%08x) element (%08x)\n", uhci_show_qh() 185 out += sprintf(out, uhci_show_qh() 190 out += sprintf(out, "%*s period %d phase %d load %d us\n", uhci_show_qh() 192 if (out - buf > len) uhci_show_qh() 196 out += sprintf(out, "%*s Element points to QH (bug?)\n", space, ""); uhci_show_qh() 199 out += sprintf(out, "%*s Depth traverse\n", space, ""); uhci_show_qh() 202 out += sprintf(out, "%*s Bit 3 set (bug?)\n", space, ""); uhci_show_qh() 205 out += sprintf(out, "%*s Element is NULL (bug?)\n", space, ""); uhci_show_qh() 207 if (out - buf > len) uhci_show_qh() 211 out += sprintf(out, "%*s queue is empty\n", space, ""); uhci_show_qh() 213 out += uhci_show_td(uhci, uhci->term_td, out, uhci_show_qh() 214 len - (out - buf), 0); uhci_show_qh() 215 if (out - buf > len) uhci_show_qh() 225 out += sprintf(out, "%*s Element != First TD\n", uhci_show_qh() 230 out += uhci_show_urbp(uhci, urbp, out, uhci_show_qh() 231 len - (out - buf), space + 2); uhci_show_qh() 232 if (out - buf > len) uhci_show_qh() 239 out += sprintf(out, "%*s Skipped %d URBs\n", uhci_show_qh() 243 if (out - buf > len) uhci_show_qh() 247 out += sprintf(out, "%*s Dummy TD\n", space, ""); uhci_show_qh() 248 out += uhci_show_td(uhci, qh->dummy_td, out, uhci_show_qh() 249 len - (out - buf), 0); uhci_show_qh() 250 if (out - buf > len) uhci_show_qh() 255 if (out - buf > len) uhci_show_qh() 256 out += sprintf(out, " ...\n"); uhci_show_qh() 258 return out - buf; uhci_show_qh() 306 char *out = buf; uhci_show_status() local 322 out += sprintf(out, " usbcmd = %04x %s%s%s%s%s%s%s%s\n", uhci_show_status() 332 if (out - buf > len) uhci_show_status() 335 out += sprintf(out, " usbstat = %04x %s%s%s%s%s%s\n", uhci_show_status() 343 if (out - buf > len) uhci_show_status() 346 out += sprintf(out, " usbint = %04x\n", usbint); uhci_show_status() 347 out += sprintf(out, " usbfrnum = (%d)%03x\n", (usbfrnum >> 10) & 1, uhci_show_status() 349 out += sprintf(out, " flbaseadd = %08x\n", flbaseadd); uhci_show_status() 350 out += sprintf(out, " sof = %02x\n", sof); uhci_show_status() 351 if (out - buf > len) uhci_show_status() 354 out += uhci_show_sc(1, portsc1, out); uhci_show_status() 355 if (out - buf > len) uhci_show_status() 358 out += uhci_show_sc(2, portsc2, out); uhci_show_status() 359 if (out - buf > len) uhci_show_status() 362 out += sprintf(out, uhci_show_status() 368 if (out - buf > len) uhci_show_status() 369 out += sprintf(out, " ...\n"); uhci_show_status() 370 return out - buf; uhci_show_status() 375 char *out = buf; uhci_sprint_schedule() local 389 out += uhci_show_root_hub_state(uhci, out); uhci_sprint_schedule() 390 if (out - buf > len) uhci_sprint_schedule() 392 out += sprintf(out, "HC status\n"); uhci_sprint_schedule() 393 out += uhci_show_status(uhci, out, len - (out - buf)); uhci_sprint_schedule() 394 if (out - buf > len) uhci_sprint_schedule() 397 out += sprintf(out, "Periodic load table\n"); uhci_sprint_schedule() 399 out += sprintf(out, "\t%d", uhci->load[i]); uhci_sprint_schedule() 401 *out++ = '\n'; uhci_sprint_schedule() 403 out += sprintf(out, "Total: %d, #INT: %d, #ISO: %d\n", uhci_sprint_schedule() 410 out += sprintf(out, "Frame List\n"); uhci_sprint_schedule() 416 if (out - buf > len) uhci_sprint_schedule() 425 out += sprintf(out, "- Frame %d -> (%08x)\n", uhci_sprint_schedule() 437 out += sprintf(out, uhci_sprint_schedule() 439 if (out - buf > len) uhci_sprint_schedule() 445 out += uhci_show_td(uhci, td, out, uhci_sprint_schedule() 446 len - (out - buf), 4); uhci_sprint_schedule() 447 if (out - buf > len) uhci_sprint_schedule() 458 out += sprintf(out, uhci_sprint_schedule() 463 out += sprintf(out, uhci_sprint_schedule() 466 if (out - buf > len) uhci_sprint_schedule() 474 out += sprintf(out, "Skipped %d bad links\n", nerrs); uhci_sprint_schedule() 476 out += sprintf(out, "Skeleton QHs\n"); uhci_sprint_schedule() 478 if (out - buf > len) uhci_sprint_schedule() 486 out += sprintf(out, "- skel_%s_qh\n", qh_names[i]); uhci_sprint_schedule() 487 out += uhci_show_qh(uhci, qh, out, len - (out - buf), 4); uhci_sprint_schedule() 488 if (out - buf > len) uhci_sprint_schedule() 494 out += sprintf(out, uhci_sprint_schedule() 496 if (out - buf > len) uhci_sprint_schedule() 512 out += uhci_show_qh(uhci, qh, out, uhci_sprint_schedule() 513 len - (out - buf), 4); uhci_sprint_schedule() 514 if (out - buf > len) uhci_sprint_schedule() 521 out += sprintf(out, " Skipped %d QHs\n", cnt); uhci_sprint_schedule() 534 out += sprintf(out, uhci_sprint_schedule() 537 if (out - buf > len) uhci_sprint_schedule() 542 if (out - buf > len) uhci_sprint_schedule() 543 out += sprintf(out, " ...\n"); uhci_sprint_schedule() 545 return out - buf; uhci_sprint_schedule()
|
/linux-4.4.14/drivers/net/ethernet/mellanox/mlx5/core/ |
H A D | transobj.c | 40 u32 out[MLX5_ST_SZ_DW(alloc_transport_domain_out)]; mlx5_alloc_transport_domain() local 44 memset(out, 0, sizeof(out)); mlx5_alloc_transport_domain() 49 err = mlx5_cmd_exec_check_status(dev, in, sizeof(in), out, sizeof(out)); mlx5_alloc_transport_domain() 51 *tdn = MLX5_GET(alloc_transport_domain_out, out, mlx5_alloc_transport_domain() 60 u32 out[MLX5_ST_SZ_DW(dealloc_transport_domain_out)]; mlx5_dealloc_transport_domain() local 63 memset(out, 0, sizeof(out)); mlx5_dealloc_transport_domain() 69 mlx5_cmd_exec_check_status(dev, in, sizeof(in), out, sizeof(out)); mlx5_dealloc_transport_domain() 74 u32 out[MLX5_ST_SZ_DW(create_rq_out)]; mlx5_core_create_rq() local 79 memset(out, 0, sizeof(out)); mlx5_core_create_rq() 80 err = mlx5_cmd_exec_check_status(dev, in, inlen, out, sizeof(out)); mlx5_core_create_rq() 82 *rqn = MLX5_GET(create_rq_out, out, rqn); mlx5_core_create_rq() 89 u32 out[MLX5_ST_SZ_DW(modify_rq_out)]; mlx5_core_modify_rq() local 94 memset(out, 0, sizeof(out)); mlx5_core_modify_rq() 95 return mlx5_cmd_exec_check_status(dev, in, inlen, out, sizeof(out)); mlx5_core_modify_rq() 101 u32 out[MLX5_ST_SZ_DW(destroy_rq_out)]; mlx5_core_destroy_rq() local 108 mlx5_cmd_exec_check_status(dev, in, sizeof(in), out, sizeof(out)); mlx5_core_destroy_rq() 113 u32 out[MLX5_ST_SZ_DW(create_sq_out)]; mlx5_core_create_sq() local 118 memset(out, 0, sizeof(out)); mlx5_core_create_sq() 119 err = mlx5_cmd_exec_check_status(dev, in, inlen, out, sizeof(out)); mlx5_core_create_sq() 121 *sqn = MLX5_GET(create_sq_out, out, sqn); mlx5_core_create_sq() 128 u32 out[MLX5_ST_SZ_DW(modify_sq_out)]; mlx5_core_modify_sq() local 133 memset(out, 0, sizeof(out)); mlx5_core_modify_sq() 134 return mlx5_cmd_exec_check_status(dev, in, inlen, out, sizeof(out)); mlx5_core_modify_sq() 140 u32 out[MLX5_ST_SZ_DW(destroy_sq_out)]; mlx5_core_destroy_sq() local 147 mlx5_cmd_exec_check_status(dev, in, sizeof(in), out, sizeof(out)); mlx5_core_destroy_sq() 153 u32 out[MLX5_ST_SZ_DW(create_tir_out)]; mlx5_core_create_tir() local 158 memset(out, 0, sizeof(out)); mlx5_core_create_tir() 159 err = mlx5_cmd_exec_check_status(dev, in, inlen, out, sizeof(out)); mlx5_core_create_tir() 161 *tirn = MLX5_GET(create_tir_out, out, tirn); mlx5_core_create_tir() 169 u32 out[MLX5_ST_SZ_DW(modify_tir_out)]; mlx5_core_modify_tir() local 174 memset(out, 0, sizeof(out)); mlx5_core_modify_tir() 175 return mlx5_cmd_exec_check_status(dev, in, inlen, out, sizeof(out)); mlx5_core_modify_tir() 181 u32 out[MLX5_ST_SZ_DW(destroy_tir_out)]; mlx5_core_destroy_tir() local 188 mlx5_cmd_exec_check_status(dev, in, sizeof(in), out, sizeof(out)); mlx5_core_destroy_tir() 194 u32 out[MLX5_ST_SZ_DW(create_tis_out)]; mlx5_core_create_tis() local 199 memset(out, 0, sizeof(out)); mlx5_core_create_tis() 200 err = mlx5_cmd_exec_check_status(dev, in, inlen, out, sizeof(out)); mlx5_core_create_tis() 202 *tisn = MLX5_GET(create_tis_out, out, tisn); mlx5_core_create_tis() 210 u32 out[MLX5_ST_SZ_DW(destroy_tis_out)]; mlx5_core_destroy_tis() local 217 mlx5_cmd_exec_check_status(dev, in, sizeof(in), out, sizeof(out)); mlx5_core_destroy_tis() 223 u32 out[MLX5_ST_SZ_DW(create_rmp_out)]; mlx5_core_create_rmp() local 228 memset(out, 0, sizeof(out)); mlx5_core_create_rmp() 229 err = mlx5_cmd_exec_check_status(dev, in, inlen, out, sizeof(out)); mlx5_core_create_rmp() 231 *rmpn = MLX5_GET(create_rmp_out, out, rmpn); mlx5_core_create_rmp() 238 u32 out[MLX5_ST_SZ_DW(modify_rmp_out)]; mlx5_core_modify_rmp() local 242 memset(out, 0, sizeof(out)); mlx5_core_modify_rmp() 243 return mlx5_cmd_exec_check_status(dev, in, inlen, out, sizeof(out)); mlx5_core_modify_rmp() 249 u32 out[MLX5_ST_SZ_DW(destroy_rmp_out)]; mlx5_core_destroy_rmp() local 256 return mlx5_cmd_exec_check_status(dev, in, sizeof(in), out, mlx5_core_destroy_rmp() 257 sizeof(out)); mlx5_core_destroy_rmp() 260 int mlx5_core_query_rmp(struct mlx5_core_dev *dev, u32 rmpn, u32 *out) mlx5_core_query_rmp() argument 269 return mlx5_cmd_exec_check_status(dev, in, sizeof(in), out, outlen); mlx5_core_query_rmp() 304 u32 out[MLX5_ST_SZ_DW(create_xrc_srq_out)]; mlx5_core_create_xsrq() local 309 memset(out, 0, sizeof(out)); mlx5_core_create_xsrq() 310 err = mlx5_cmd_exec_check_status(dev, in, inlen, out, sizeof(out)); mlx5_core_create_xsrq() 312 *xsrqn = MLX5_GET(create_xrc_srq_out, out, xrc_srqn); mlx5_core_create_xsrq() 320 u32 out[MLX5_ST_SZ_DW(destroy_xrc_srq_out)]; mlx5_core_destroy_xsrq() local 323 memset(out, 0, sizeof(out)); mlx5_core_destroy_xsrq() 328 return mlx5_cmd_exec_check_status(dev, in, sizeof(in), out, mlx5_core_destroy_xsrq() 329 sizeof(out)); mlx5_core_destroy_xsrq() 332 int mlx5_core_query_xsrq(struct mlx5_core_dev *dev, u32 xsrqn, u32 *out) mlx5_core_query_xsrq() argument 344 out, mlx5_core_query_xsrq() 347 xrc_srqc = MLX5_ADDR_OF(query_xrc_srq_out, out, mlx5_core_query_xsrq() 349 srqc = MLX5_ADDR_OF(query_srq_out, out, srq_context_entry); mlx5_core_query_xsrq() 359 u32 out[MLX5_ST_SZ_DW(arm_xrc_srq_out)]; mlx5_core_arm_xsrq() local 362 memset(out, 0, sizeof(out)); mlx5_core_arm_xsrq() 370 return mlx5_cmd_exec_check_status(dev, in, sizeof(in), out, mlx5_core_arm_xsrq() 371 sizeof(out)); mlx5_core_arm_xsrq() 377 u32 out[MLX5_ST_SZ_DW(create_rqt_out)]; mlx5_core_create_rqt() local 382 memset(out, 0, sizeof(out)); mlx5_core_create_rqt() 383 err = mlx5_cmd_exec_check_status(dev, in, inlen, out, sizeof(out)); mlx5_core_create_rqt() 385 *rqtn = MLX5_GET(create_rqt_out, out, rqtn); mlx5_core_create_rqt() 393 u32 out[MLX5_ST_SZ_DW(modify_rqt_out)]; mlx5_core_modify_rqt() local 398 memset(out, 0, sizeof(out)); mlx5_core_modify_rqt() 399 return mlx5_cmd_exec_check_status(dev, in, inlen, out, sizeof(out)); mlx5_core_modify_rqt() 405 u32 out[MLX5_ST_SZ_DW(destroy_rqt_out)]; mlx5_core_destroy_rqt() local 412 mlx5_cmd_exec_check_status(dev, in, sizeof(in), out, sizeof(out)); mlx5_core_destroy_rqt()
|
H A D | fw.c | 38 static int mlx5_cmd_query_adapter(struct mlx5_core_dev *dev, u32 *out, mlx5_cmd_query_adapter() argument 47 return mlx5_cmd_exec_check_status(dev, in, sizeof(in), out, outlen); mlx5_cmd_query_adapter() 52 u32 *out; mlx5_query_board_id() local 56 out = kzalloc(outlen, GFP_KERNEL); mlx5_query_board_id() 57 if (!out) mlx5_query_board_id() 60 err = mlx5_cmd_query_adapter(dev, out, outlen); mlx5_query_board_id() 62 goto out; mlx5_query_board_id() 65 MLX5_ADDR_OF(query_adapter_out, out, mlx5_query_board_id() 70 out: mlx5_query_board_id() 71 kfree(out); mlx5_query_board_id() 77 u32 *out; mlx5_core_query_vendor_id() local 81 out = kzalloc(outlen, GFP_KERNEL); mlx5_core_query_vendor_id() 82 if (!out) mlx5_core_query_vendor_id() 85 err = mlx5_cmd_query_adapter(mdev, out, outlen); mlx5_core_query_vendor_id() 87 goto out; mlx5_core_query_vendor_id() 89 *vendor_id = MLX5_GET(query_adapter_out, out, mlx5_core_query_vendor_id() 91 out: mlx5_core_query_vendor_id() 92 kfree(out); mlx5_core_query_vendor_id() 169 struct mlx5_cmd_init_hca_mbox_out out; mlx5_cmd_init_hca() local 173 memset(&out, 0, sizeof(out)); mlx5_cmd_init_hca() 175 err = mlx5_cmd_exec(dev, &in, sizeof(in), &out, sizeof(out)); mlx5_cmd_init_hca() 179 if (out.hdr.status) mlx5_cmd_init_hca() 180 err = mlx5_cmd_status_to_err(&out.hdr); mlx5_cmd_init_hca() 188 struct mlx5_cmd_teardown_hca_mbox_out out; mlx5_cmd_teardown_hca() local 192 memset(&out, 0, sizeof(out)); mlx5_cmd_teardown_hca() 194 err = mlx5_cmd_exec(dev, &in, sizeof(in), &out, sizeof(out)); mlx5_cmd_teardown_hca() 198 if (out.hdr.status) mlx5_cmd_teardown_hca() 199 err = mlx5_cmd_status_to_err(&out.hdr); mlx5_cmd_teardown_hca()
|
H A D | port.c | 43 struct mlx5_access_reg_mbox_out *out = NULL; mlx5_core_access_reg() local 50 out = mlx5_vzalloc(sizeof(*out) + size_out); mlx5_core_access_reg() 51 if (!out) mlx5_core_access_reg() 59 err = mlx5_cmd_exec(dev, in, sizeof(*in) + size_in, out, mlx5_core_access_reg() 60 sizeof(*out) + size_out); mlx5_core_access_reg() 64 if (out->hdr.status) mlx5_core_access_reg() 65 err = mlx5_cmd_status_to_err(&out->hdr); mlx5_core_access_reg() 68 memcpy(data_out, out->data, size_out); mlx5_core_access_reg() 71 kvfree(out); mlx5_core_access_reg() 92 struct mlx5_reg_pcap out; mlx5_set_port_caps() local 98 return mlx5_core_access_reg(dev, &in, sizeof(in), &out, mlx5_set_port_caps() 99 sizeof(out), MLX5_REG_PCAP, 0, 1); mlx5_set_port_caps() 120 u32 out[MLX5_ST_SZ_DW(ptys_reg)]; mlx5_query_port_proto_cap() local 123 err = mlx5_query_port_ptys(dev, out, sizeof(out), proto_mask, 1); mlx5_query_port_proto_cap() 128 *proto_cap = MLX5_GET(ptys_reg, out, eth_proto_capability); mlx5_query_port_proto_cap() 130 *proto_cap = MLX5_GET(ptys_reg, out, ib_proto_capability); mlx5_query_port_proto_cap() 139 u32 out[MLX5_ST_SZ_DW(ptys_reg)]; mlx5_query_port_proto_admin() local 142 err = mlx5_query_port_ptys(dev, out, sizeof(out), proto_mask, 1); mlx5_query_port_proto_admin() 147 *proto_admin = MLX5_GET(ptys_reg, out, eth_proto_admin); mlx5_query_port_proto_admin() 149 *proto_admin = MLX5_GET(ptys_reg, out, ib_proto_admin); mlx5_query_port_proto_admin() 158 u32 out[MLX5_ST_SZ_DW(ptys_reg)]; mlx5_query_port_link_width_oper() local 161 err = mlx5_query_port_ptys(dev, out, sizeof(out), MLX5_PTYS_IB, local_port); mlx5_query_port_link_width_oper() 165 *link_width_oper = MLX5_GET(ptys_reg, out, ib_link_width_oper); mlx5_query_port_link_width_oper() 175 u32 out[MLX5_ST_SZ_DW(ptys_reg)]; mlx5_query_port_proto_oper() local 178 err = mlx5_query_port_ptys(dev, out, sizeof(out), proto_mask, local_port); mlx5_query_port_proto_oper() 183 *proto_oper = MLX5_GET(ptys_reg, out, eth_proto_oper); mlx5_query_port_proto_oper() 185 *proto_oper = MLX5_GET(ptys_reg, out, ib_proto_oper); mlx5_query_port_proto_oper() 195 u32 out[MLX5_ST_SZ_DW(ptys_reg)]; mlx5_set_port_proto() local 206 return mlx5_core_access_reg(dev, in, sizeof(in), out, mlx5_set_port_proto() 207 sizeof(out), MLX5_REG_PTYS, 0, 1); mlx5_set_port_proto() 215 u32 out[MLX5_ST_SZ_DW(paos_reg)]; mlx5_set_port_admin_status() local 223 return mlx5_core_access_reg(dev, in, sizeof(in), out, mlx5_set_port_admin_status() 224 sizeof(out), MLX5_REG_PAOS, 0, 1); mlx5_set_port_admin_status() 232 u32 out[MLX5_ST_SZ_DW(paos_reg)]; mlx5_query_port_admin_status() local 239 err = mlx5_core_access_reg(dev, in, sizeof(in), out, mlx5_query_port_admin_status() 240 sizeof(out), MLX5_REG_PAOS, 0, 0); mlx5_query_port_admin_status() 244 *status = MLX5_GET(paos_reg, out, admin_status); mlx5_query_port_admin_status() 253 u32 out[MLX5_ST_SZ_DW(pmtu_reg)]; mlx5_query_port_mtu() local 259 mlx5_core_access_reg(dev, in, sizeof(in), out, mlx5_query_port_mtu() 260 sizeof(out), MLX5_REG_PMTU, 0, 0); mlx5_query_port_mtu() 263 *max_mtu = MLX5_GET(pmtu_reg, out, max_mtu); mlx5_query_port_mtu() 265 *oper_mtu = MLX5_GET(pmtu_reg, out, oper_mtu); mlx5_query_port_mtu() 267 *admin_mtu = MLX5_GET(pmtu_reg, out, admin_mtu); mlx5_query_port_mtu() 273 u32 out[MLX5_ST_SZ_DW(pmtu_reg)]; mlx5_set_port_mtu() local 280 return mlx5_core_access_reg(dev, in, sizeof(in), out, mlx5_set_port_mtu() 281 sizeof(out), MLX5_REG_PMTU, 0, 1); mlx5_set_port_mtu() 314 u32 out[MLX5_ST_SZ_DW(pvlc_reg)]; mlx5_query_port_vl_hw_cap() local 317 err = mlx5_query_port_pvlc(dev, out, sizeof(out), local_port); mlx5_query_port_vl_hw_cap() 321 *vl_hw_cap = MLX5_GET(pvlc_reg, out, vl_hw_cap); mlx5_query_port_vl_hw_cap() 330 u32 out[MLX5_ST_SZ_DW(pfcc_reg)]; mlx5_set_port_pause() local 337 return mlx5_core_access_reg(dev, in, sizeof(in), out, mlx5_set_port_pause() 338 sizeof(out), MLX5_REG_PFCC, 0, 1); mlx5_set_port_pause() 346 u32 out[MLX5_ST_SZ_DW(pfcc_reg)]; mlx5_query_port_pause() local 352 err = mlx5_core_access_reg(dev, in, sizeof(in), out, mlx5_query_port_pause() 353 sizeof(out), MLX5_REG_PFCC, 0, 0); mlx5_query_port_pause() 358 *rx_pause = MLX5_GET(pfcc_reg, out, pprx); mlx5_query_port_pause() 361 *tx_pause = MLX5_GET(pfcc_reg, out, pptx); mlx5_query_port_pause()
|
H A D | mad.c | 43 struct mlx5_mad_ifc_mbox_out *out = NULL; mlx5_core_mad_ifc() local 50 out = kzalloc(sizeof(*out), GFP_KERNEL); mlx5_core_mad_ifc() 51 if (!out) { mlx5_core_mad_ifc() 53 goto out; mlx5_core_mad_ifc() 62 err = mlx5_cmd_exec(dev, in, sizeof(*in), out, sizeof(*out)); mlx5_core_mad_ifc() 64 goto out; mlx5_core_mad_ifc() 66 if (out->hdr.status) { mlx5_core_mad_ifc() 67 err = mlx5_cmd_status_to_err(&out->hdr); mlx5_core_mad_ifc() 68 goto out; mlx5_core_mad_ifc() 71 memcpy(outb, out->data, sizeof(out->data)); mlx5_core_mad_ifc() 73 out: mlx5_core_mad_ifc() 74 kfree(out); mlx5_core_mad_ifc()
|
H A D | mr.c | 55 struct mlx5_create_mkey_mbox_out *out) mlx5_core_create_mkey() 69 err = mlx5_cmd_exec_cb(dev, in, inlen, out, sizeof(*out), mlx5_core_create_mkey() 91 mlx5_core_dbg(dev, "out 0x%x, key 0x%x, mkey 0x%x\n", mlx5_core_create_mkey() 112 struct mlx5_destroy_mkey_mbox_out out; mlx5_core_destroy_mkey() local 118 memset(&out, 0, sizeof(out)); mlx5_core_destroy_mkey() 131 err = mlx5_cmd_exec(dev, &in, sizeof(in), &out, sizeof(out)); mlx5_core_destroy_mkey() 135 if (out.hdr.status) mlx5_core_destroy_mkey() 136 return mlx5_cmd_status_to_err(&out.hdr); mlx5_core_destroy_mkey() 143 struct mlx5_query_mkey_mbox_out *out, int outlen) mlx5_core_query_mkey() 149 memset(out, 0, outlen); mlx5_core_query_mkey() 153 err = mlx5_cmd_exec(dev, &in, sizeof(in), out, outlen); mlx5_core_query_mkey() 157 if (out->hdr.status) mlx5_core_query_mkey() 158 return mlx5_cmd_status_to_err(&out->hdr); mlx5_core_query_mkey() 168 struct mlx5_query_special_ctxs_mbox_out out; mlx5_core_dump_fill_mkey() local 172 memset(&out, 0, sizeof(out)); mlx5_core_dump_fill_mkey() 175 err = mlx5_cmd_exec(dev, &in, sizeof(in), &out, sizeof(out)); mlx5_core_dump_fill_mkey() 179 if (out.hdr.status) mlx5_core_dump_fill_mkey() 180 return mlx5_cmd_status_to_err(&out.hdr); mlx5_core_dump_fill_mkey() 182 *mkey = be32_to_cpu(out.dump_fill_mkey); mlx5_core_dump_fill_mkey() 192 struct mlx5_allocate_psv_out out; mlx5_core_create_psv() local 199 memset(&out, 0, sizeof(out)); mlx5_core_create_psv() 203 err = mlx5_cmd_exec(dev, &in, sizeof(in), &out, sizeof(out)); mlx5_core_create_psv() 209 if (out.hdr.status) { mlx5_core_create_psv() 211 out.hdr.status); mlx5_core_create_psv() 212 return mlx5_cmd_status_to_err(&out.hdr); mlx5_core_create_psv() 216 sig_index[i] = be32_to_cpu(out.psv_idx[i]) & 0xffffff; mlx5_core_create_psv() 225 struct mlx5_destroy_psv_out out; mlx5_core_destroy_psv() local 229 memset(&out, 0, sizeof(out)); mlx5_core_destroy_psv() 233 err = mlx5_cmd_exec(dev, &in, sizeof(in), &out, sizeof(out)); mlx5_core_destroy_psv() 236 goto out; mlx5_core_destroy_psv() 239 if (out.hdr.status) { mlx5_core_destroy_psv() 241 out.hdr.status); mlx5_core_destroy_psv() 242 err = mlx5_cmd_status_to_err(&out.hdr); mlx5_core_destroy_psv() 243 goto out; mlx5_core_destroy_psv() 246 out: mlx5_core_destroy_psv() 52 mlx5_core_create_mkey(struct mlx5_core_dev *dev, struct mlx5_core_mr *mr, struct mlx5_create_mkey_mbox_in *in, int inlen, mlx5_cmd_cbk_t callback, void *context, struct mlx5_create_mkey_mbox_out *out) mlx5_core_create_mkey() argument 142 mlx5_core_query_mkey(struct mlx5_core_dev *dev, struct mlx5_core_mr *mr, struct mlx5_query_mkey_mbox_out *out, int outlen) mlx5_core_query_mkey() argument
|
H A D | vport.c | 42 u32 out[MLX5_ST_SZ_DW(query_vport_state_out)]; mlx5_query_vport_state() local 51 err = mlx5_cmd_exec_check_status(mdev, in, sizeof(in), out, mlx5_query_vport_state() 52 sizeof(out)); mlx5_query_vport_state() 56 return MLX5_GET(query_vport_state_out, out, state); mlx5_query_vport_state() 63 u32 *out; mlx5_query_nic_vport_mac_address() local 67 out = mlx5_vzalloc(outlen); mlx5_query_nic_vport_mac_address() 68 if (!out) mlx5_query_nic_vport_mac_address() 71 out_addr = MLX5_ADDR_OF(query_nic_vport_context_out, out, mlx5_query_nic_vport_mac_address() 79 memset(out, 0, outlen); mlx5_query_nic_vport_mac_address() 80 mlx5_cmd_exec_check_status(mdev, in, sizeof(in), out, outlen); mlx5_query_nic_vport_mac_address() 84 kvfree(out); mlx5_query_nic_vport_mac_address() 95 void *out = NULL; mlx5_query_hca_vport_gid() local 118 out = kzalloc(out_sz, GFP_KERNEL); mlx5_query_hca_vport_gid() 119 if (!in || !out) { mlx5_query_hca_vport_gid() 121 goto out; mlx5_query_hca_vport_gid() 131 goto out; mlx5_query_hca_vport_gid() 139 err = mlx5_cmd_exec(dev, in, in_sz, out, out_sz); mlx5_query_hca_vport_gid() 141 goto out; mlx5_query_hca_vport_gid() 143 err = mlx5_cmd_status_to_err_v2(out); mlx5_query_hca_vport_gid() 145 goto out; mlx5_query_hca_vport_gid() 147 tmp = out + MLX5_ST_SZ_BYTES(query_hca_vport_gid_out); mlx5_query_hca_vport_gid() 151 out: mlx5_query_hca_vport_gid() 153 kfree(out); mlx5_query_hca_vport_gid() 165 void *out = NULL; mlx5_query_hca_vport_pkey() local 187 out = kzalloc(out_sz, GFP_KERNEL); mlx5_query_hca_vport_pkey() 188 if (!in || !out) { mlx5_query_hca_vport_pkey() 190 goto out; mlx5_query_hca_vport_pkey() 200 goto out; mlx5_query_hca_vport_pkey() 208 err = mlx5_cmd_exec(dev, in, in_sz, out, out_sz); mlx5_query_hca_vport_pkey() 210 goto out; mlx5_query_hca_vport_pkey() 212 err = mlx5_cmd_status_to_err_v2(out); mlx5_query_hca_vport_pkey() 214 goto out; mlx5_query_hca_vport_pkey() 216 pkarr = MLX5_ADDR_OF(query_hca_vport_pkey_out, out, pkey); mlx5_query_hca_vport_pkey() 220 out: mlx5_query_hca_vport_pkey() 222 kfree(out); mlx5_query_hca_vport_pkey() 235 void *out; mlx5_query_hca_vport_context() local 242 out = kzalloc(out_sz, GFP_KERNEL); mlx5_query_hca_vport_context() 243 if (!out) mlx5_query_hca_vport_context() 261 err = mlx5_cmd_exec(dev, in, sizeof(in), out, out_sz); mlx5_query_hca_vport_context() 264 err = mlx5_cmd_status_to_err_v2(out); mlx5_query_hca_vport_context() 268 ctx = MLX5_ADDR_OF(query_hca_vport_context_out, out, hca_vport_context); mlx5_query_hca_vport_context() 304 kfree(out); mlx5_query_hca_vport_context()
|
H A D | qp.c | 186 struct mlx5_create_qp_mbox_out out; mlx5_core_create_qp() local 192 memset(&out, 0, sizeof(out)); mlx5_core_create_qp() 201 err = mlx5_cmd_exec(dev, in, inlen, &out, sizeof(out)); mlx5_core_create_qp() 207 if (out.hdr.status) { mlx5_core_create_qp() 210 return mlx5_cmd_status_to_err(&out.hdr); mlx5_core_create_qp() 213 qp->qpn = be32_to_cpu(out.qpn) & 0xffffff; mlx5_core_create_qp() 242 mlx5_cmd_exec(dev, &din, sizeof(din), &out, sizeof(dout)); mlx5_core_create_qp() 252 struct mlx5_destroy_qp_mbox_out out; mlx5_core_destroy_qp() local 267 memset(&out, 0, sizeof(out)); mlx5_core_destroy_qp() 270 err = mlx5_cmd_exec(dev, &in, sizeof(in), &out, sizeof(out)); mlx5_core_destroy_qp() 274 if (out.hdr.status) mlx5_core_destroy_qp() 275 return mlx5_cmd_status_to_err(&out.hdr); mlx5_core_destroy_qp() 324 struct mlx5_modify_qp_mbox_out out; mlx5_core_qp_modify() local 332 memset(&out, 0, sizeof(out)); mlx5_core_qp_modify() 336 err = mlx5_cmd_exec(dev, in, sizeof(*in), &out, sizeof(out)); mlx5_core_qp_modify() 340 return mlx5_cmd_status_to_err(&out.hdr); mlx5_core_qp_modify() 360 struct mlx5_query_qp_mbox_out *out, int outlen) mlx5_core_qp_query() 366 memset(out, 0, outlen); mlx5_core_qp_query() 369 err = mlx5_cmd_exec(dev, &in, sizeof(in), out, outlen); mlx5_core_qp_query() 373 if (out->hdr.status) mlx5_core_qp_query() 374 return mlx5_cmd_status_to_err(&out->hdr); mlx5_core_qp_query() 383 struct mlx5_alloc_xrcd_mbox_out out; mlx5_core_xrcd_alloc() local 387 memset(&out, 0, sizeof(out)); mlx5_core_xrcd_alloc() 389 err = mlx5_cmd_exec(dev, &in, sizeof(in), &out, sizeof(out)); mlx5_core_xrcd_alloc() 393 if (out.hdr.status) mlx5_core_xrcd_alloc() 394 err = mlx5_cmd_status_to_err(&out.hdr); mlx5_core_xrcd_alloc() 396 *xrcdn = be32_to_cpu(out.xrcdn); mlx5_core_xrcd_alloc() 405 struct mlx5_dealloc_xrcd_mbox_out out; mlx5_core_xrcd_dealloc() local 409 memset(&out, 0, sizeof(out)); mlx5_core_xrcd_dealloc() 412 err = mlx5_cmd_exec(dev, &in, sizeof(in), &out, sizeof(out)); mlx5_core_xrcd_dealloc() 416 if (out.hdr.status) mlx5_core_xrcd_dealloc() 417 err = mlx5_cmd_status_to_err(&out.hdr); mlx5_core_xrcd_dealloc() 428 struct mlx5_page_fault_resume_mbox_out out; mlx5_core_page_fault_resume() local 432 memset(&out, 0, sizeof(out)); mlx5_core_page_fault_resume() 441 err = mlx5_cmd_exec(dev, &in, sizeof(in), &out, sizeof(out)); mlx5_core_page_fault_resume() 445 if (out.hdr.status) mlx5_core_page_fault_resume() 446 err = mlx5_cmd_status_to_err(&out.hdr); mlx5_core_page_fault_resume() 359 mlx5_core_qp_query(struct mlx5_core_dev *dev, struct mlx5_core_qp *qp, struct mlx5_query_qp_mbox_out *out, int outlen) mlx5_core_qp_query() argument
|
H A D | pd.c | 64 struct mlx5_alloc_pd_mbox_out out; mlx5_core_alloc_pd() local 68 memset(&out, 0, sizeof(out)); mlx5_core_alloc_pd() 70 err = mlx5_cmd_exec(dev, &in, sizeof(in), &out, sizeof(out)); mlx5_core_alloc_pd() 74 if (out.hdr.status) mlx5_core_alloc_pd() 75 return mlx5_cmd_status_to_err(&out.hdr); mlx5_core_alloc_pd() 77 *pdn = be32_to_cpu(out.pdn) & 0xffffff; mlx5_core_alloc_pd() 85 struct mlx5_dealloc_pd_mbox_out out; mlx5_core_dealloc_pd() local 89 memset(&out, 0, sizeof(out)); mlx5_core_dealloc_pd() 92 err = mlx5_cmd_exec(dev, &in, sizeof(in), &out, sizeof(out)); mlx5_core_dealloc_pd() 96 if (out.hdr.status) mlx5_core_dealloc_pd() 97 return mlx5_cmd_status_to_err(&out.hdr); mlx5_core_dealloc_pd()
|
H A D | mcg.c | 67 struct mlx5_attach_mcg_mbox_out out; mlx5_core_attach_mcg() local 71 memset(&out, 0, sizeof(out)); mlx5_core_attach_mcg() 75 err = mlx5_cmd_exec(dev, &in, sizeof(in), &out, sizeof(out)); mlx5_core_attach_mcg() 79 if (out.hdr.status) mlx5_core_attach_mcg() 80 err = mlx5_cmd_status_to_err(&out.hdr); mlx5_core_attach_mcg() 89 struct mlx5_detach_mcg_mbox_out out; mlx5_core_detach_mcg() local 93 memset(&out, 0, sizeof(out)); mlx5_core_detach_mcg() 97 err = mlx5_cmd_exec(dev, &in, sizeof(in), &out, sizeof(out)); mlx5_core_detach_mcg() 101 if (out.hdr.status) mlx5_core_detach_mcg() 102 err = mlx5_cmd_status_to_err(&out.hdr); mlx5_core_detach_mcg()
|
H A D | cq.c | 96 struct mlx5_create_cq_mbox_out out; mlx5_core_create_cq() local 101 memset(&out, 0, sizeof(out)); mlx5_core_create_cq() 102 err = mlx5_cmd_exec(dev, in, inlen, &out, sizeof(out)); mlx5_core_create_cq() 106 if (out.hdr.status) mlx5_core_create_cq() 107 return mlx5_cmd_status_to_err(&out.hdr); mlx5_core_create_cq() 109 cq->cqn = be32_to_cpu(out.cqn) & 0xffffff; mlx5_core_create_cq() 142 struct mlx5_destroy_cq_mbox_out out; mlx5_core_destroy_cq() local 159 memset(&out, 0, sizeof(out)); mlx5_core_destroy_cq() 162 err = mlx5_cmd_exec(dev, &in, sizeof(in), &out, sizeof(out)); mlx5_core_destroy_cq() 166 if (out.hdr.status) mlx5_core_destroy_cq() 167 return mlx5_cmd_status_to_err(&out.hdr); mlx5_core_destroy_cq() 181 struct mlx5_query_cq_mbox_out *out) mlx5_core_query_cq() 187 memset(out, 0, sizeof(*out)); mlx5_core_query_cq() 191 err = mlx5_cmd_exec(dev, &in, sizeof(in), out, sizeof(*out)); mlx5_core_query_cq() 195 if (out->hdr.status) mlx5_core_query_cq() 196 return mlx5_cmd_status_to_err(&out->hdr); mlx5_core_query_cq() 206 struct mlx5_modify_cq_mbox_out out; mlx5_core_modify_cq() local 209 memset(&out, 0, sizeof(out)); mlx5_core_modify_cq() 211 err = mlx5_cmd_exec(dev, in, in_sz, &out, sizeof(out)); mlx5_core_modify_cq() 215 if (out.hdr.status) mlx5_core_modify_cq() 216 return mlx5_cmd_status_to_err(&out.hdr); mlx5_core_modify_cq() 180 mlx5_core_query_cq(struct mlx5_core_dev *dev, struct mlx5_core_cq *cq, struct mlx5_query_cq_mbox_out *out) mlx5_core_query_cq() argument
|
H A D | debugfs.c | 220 goto out; mlx5_cmdif_debugfs_init() 229 goto out; mlx5_cmdif_debugfs_init() 238 goto out; mlx5_cmdif_debugfs_init() 244 out: mlx5_cmdif_debugfs_init() 280 struct mlx5_query_qp_mbox_out *out; qp_read_field() local 286 out = kzalloc(sizeof(*out), GFP_KERNEL); qp_read_field() 287 if (!out) qp_read_field() 290 err = mlx5_core_qp_query(dev, qp, out, sizeof(*out)); qp_read_field() 293 goto out; qp_read_field() 297 ctx = &out->ctx; qp_read_field() 353 out: qp_read_field() 354 kfree(out); qp_read_field() 361 struct mlx5_query_eq_mbox_out *out; eq_read_field() local 366 out = kzalloc(sizeof(*out), GFP_KERNEL); eq_read_field() 367 if (!out) eq_read_field() 370 ctx = &out->ctx; eq_read_field() 372 err = mlx5_core_eq_query(dev, eq, out, sizeof(*out)); eq_read_field() 375 goto out; eq_read_field() 390 out: eq_read_field() 391 kfree(out); eq_read_field() 398 struct mlx5_query_cq_mbox_out *out; cq_read_field() local 403 out = kzalloc(sizeof(*out), GFP_KERNEL); cq_read_field() 404 if (!out) cq_read_field() 407 ctx = &out->ctx; cq_read_field() 409 err = mlx5_core_query_cq(dev, cq, out); cq_read_field() 412 goto out; cq_read_field() 427 out: cq_read_field() 428 kfree(out); cq_read_field()
|
H A D | flow_table.c | 59 u32 out[MLX5_ST_SZ_DW(set_fte_out)]; mlx5_set_flow_entry_cmd() local 86 memset(out, 0, sizeof(out)); mlx5_set_flow_entry_cmd() 87 err = mlx5_cmd_exec_check_status(ft->dev, in, inlen, out, mlx5_set_flow_entry_cmd() 88 sizeof(out)); mlx5_set_flow_entry_cmd() 97 u32 out[MLX5_ST_SZ_DW(delete_fte_out)]; mlx5_del_flow_entry_cmd() local 100 memset(out, 0, sizeof(out)); mlx5_del_flow_entry_cmd() 108 mlx5_cmd_exec_check_status(ft->dev, in, sizeof(in), out, sizeof(out)); mlx5_del_flow_entry_cmd() 114 u32 out[MLX5_ST_SZ_DW(destroy_flow_group_out)]; mlx5_destroy_flow_group_cmd() local 117 memset(out, 0, sizeof(out)); mlx5_destroy_flow_group_cmd() 124 mlx5_cmd_exec_check_status(ft->dev, in, sizeof(in), out, sizeof(out)); mlx5_destroy_flow_group_cmd() 129 u32 out[MLX5_ST_SZ_DW(create_flow_group_out)]; mlx5_create_flow_group_cmd() local 146 memset(out, 0, sizeof(out)); mlx5_create_flow_group_cmd() 159 err = mlx5_cmd_exec_check_status(ft->dev, in, inlen, out, mlx5_create_flow_group_cmd() 160 sizeof(out)); mlx5_create_flow_group_cmd() 162 ft->group[i].id = MLX5_GET(create_flow_group_out, out, mlx5_create_flow_group_cmd() 201 u32 out[MLX5_ST_SZ_DW(create_flow_table_out)]; mlx5_create_flow_table_cmd() local 213 memset(out, 0, sizeof(out)); mlx5_create_flow_table_cmd() 214 err = mlx5_cmd_exec_check_status(ft->dev, in, sizeof(in), out, mlx5_create_flow_table_cmd() 215 sizeof(out)); mlx5_create_flow_table_cmd() 219 ft->id = MLX5_GET(create_flow_table_out, out, table_id); mlx5_create_flow_table_cmd() 227 u32 out[MLX5_ST_SZ_DW(destroy_flow_table_out)]; mlx5_destroy_flow_table_cmd() local 230 memset(out, 0, sizeof(out)); mlx5_destroy_flow_table_cmd() 237 mlx5_cmd_exec_check_status(ft->dev, in, sizeof(in), out, sizeof(out)); mlx5_destroy_flow_table_cmd()
|
H A D | pagealloc.c | 169 struct mlx5_query_pages_outbox out; mlx5_cmd_query_pages() local 173 memset(&out, 0, sizeof(out)); mlx5_cmd_query_pages() 177 err = mlx5_cmd_exec(dev, &in, sizeof(in), &out, sizeof(out)); mlx5_cmd_query_pages() 181 if (out.hdr.status) mlx5_cmd_query_pages() 182 return mlx5_cmd_status_to_err(&out.hdr); mlx5_cmd_query_pages() 184 *npages = be32_to_cpu(out.num_pages); mlx5_cmd_query_pages() 185 *func_id = be16_to_cpu(out.func_id); mlx5_cmd_query_pages() 282 struct mlx5_manage_pages_outbox out; page_notify_fail() local 289 memset(&out, 0, sizeof(out)); page_notify_fail() 293 err = mlx5_cmd_exec(dev, in, sizeof(*in), &out, sizeof(out)); page_notify_fail() 295 err = mlx5_cmd_status_to_err(&out.hdr); page_notify_fail() 307 struct mlx5_manage_pages_outbox out; give_pages() local 320 memset(&out, 0, sizeof(out)); give_pages() 340 err = mlx5_cmd_exec(dev, in, inlen, &out, sizeof(out)); give_pages() 348 err = mlx5_cmd_status_to_err(&out.hdr); give_pages() 351 func_id, npages, out.hdr.status); give_pages() 374 struct mlx5_manage_pages_outbox *out; reclaim_pages() local 385 outlen = sizeof(*out) + npages * sizeof(out->pas[0]); reclaim_pages() 386 out = mlx5_vzalloc(outlen); reclaim_pages() 387 if (!out) reclaim_pages() 395 err = mlx5_cmd_exec(dev, &in, sizeof(in), out, outlen); reclaim_pages() 402 if (out->hdr.status) { reclaim_pages() 403 err = mlx5_cmd_status_to_err(&out->hdr); reclaim_pages() 407 num_claimed = be32_to_cpu(out->num_entries); reclaim_pages() 412 addr = be64_to_cpu(out->pas[i]); reclaim_pages() 417 kvfree(out); reclaim_pages() 483 ret = (sizeof(lay->out) + MLX5_BLKS_FOR_RECLAIM_PAGES * sizeof(block->data) - optimal_reclaimed_pages()
|
H A D | srq.c | 154 struct mlx5_create_srq_mbox_out out; create_srq_cmd() local 157 memset(&out, 0, sizeof(out)); create_srq_cmd() 161 err = mlx5_cmd_exec_check_status(dev, (u32 *)in, inlen, (u32 *)(&out), create_srq_cmd() 162 sizeof(out)); create_srq_cmd() 164 srq->srqn = be32_to_cpu(out.srqn) & 0xffffff; create_srq_cmd() 173 struct mlx5_destroy_srq_mbox_out out; destroy_srq_cmd() local 176 memset(&out, 0, sizeof(out)); destroy_srq_cmd() 181 (u32 *)(&out), sizeof(out)); destroy_srq_cmd() 188 struct mlx5_arm_srq_mbox_out out; arm_srq_cmd() local 191 memset(&out, 0, sizeof(out)); arm_srq_cmd() 199 sizeof(in), (u32 *)(&out), arm_srq_cmd() 200 sizeof(out)); arm_srq_cmd() 204 struct mlx5_query_srq_mbox_out *out) query_srq_cmd() 214 (u32 *)out, sizeof(*out)); query_srq_cmd() 253 goto out; create_xrc_srq_cmd() 256 out: create_xrc_srq_cmd() 298 struct mlx5_query_srq_mbox_out *out) query_xrc_srq_cmd() 318 goto out; query_xrc_srq_cmd() 322 srqc = MLX5_ADDR_OF(query_srq_out, out, srq_context_entry); query_xrc_srq_cmd() 325 out: query_xrc_srq_cmd() 395 struct mlx5_query_srq_mbox_out *out) query_rmp_cmd() 408 goto out; query_rmp_cmd() 410 srqc = MLX5_ADDR_OF(query_srq_out, out, srq_context_entry); query_rmp_cmd() 414 out: query_rmp_cmd() 507 struct mlx5_query_srq_mbox_out *out) mlx5_core_query_srq() 510 return query_srq_cmd(dev, srq, out); mlx5_core_query_srq() 512 return query_xrc_srq_cmd(dev, srq, out); mlx5_core_query_srq() 514 return query_rmp_cmd(dev, srq, out); mlx5_core_query_srq() 203 query_srq_cmd(struct mlx5_core_dev *dev, struct mlx5_core_srq *srq, struct mlx5_query_srq_mbox_out *out) query_srq_cmd() argument 296 query_xrc_srq_cmd(struct mlx5_core_dev *dev, struct mlx5_core_srq *srq, struct mlx5_query_srq_mbox_out *out) query_xrc_srq_cmd() argument 394 query_rmp_cmd(struct mlx5_core_dev *dev, struct mlx5_core_srq *srq, struct mlx5_query_srq_mbox_out *out) query_rmp_cmd() argument 506 mlx5_core_query_srq(struct mlx5_core_dev *dev, struct mlx5_core_srq *srq, struct mlx5_query_srq_mbox_out *out) mlx5_core_query_srq() argument
|
/linux-4.4.14/drivers/media/pci/cx25821/ |
H A D | cx25821-video-upstream.c | 101 struct cx25821_video_out_data *out = chan->out; cx25821_update_riscprogram() local 115 *(rp++) = cpu_to_le32(out->_data_buf_phys_addr + offset); cx25821_update_riscprogram() 119 || (line < (NTSC_FIELD_HEIGHT - 1)) || !(out->is_60hz)) { cx25821_update_riscprogram() 133 struct cx25821_video_out_data *out = chan->out; cx25821_risc_field_upstream() local 154 || (line < (NTSC_FIELD_HEIGHT - 1)) || !(out->is_60hz)) cx25821_risc_field_upstream() 177 struct cx25821_video_out_data *out = chan->out; cx25821_risc_buffer_upstream() local 191 if (out->is_60hz) { cx25821_risc_buffer_upstream() 203 rp = out->_dma_virt_addr; cx25821_risc_buffer_upstream() 211 out->_data_buf_phys_addr + cx25821_risc_buffer_upstream() 220 out->_data_buf_phys_addr + cx25821_risc_buffer_upstream() 227 risc_phys_jump_addr = out->_dma_phys_start_addr + cx25821_risc_buffer_upstream() 230 risc_phys_jump_addr = out->_dma_phys_start_addr; cx25821_risc_buffer_upstream() 247 struct cx25821_video_out_data *out = chan->out; cx25821_stop_upstream_video() local 252 if (!out->_is_running) { cx25821_stop_upstream_video() 271 if (out->_data_buf_virt_addr) cx25821_stop_upstream_video() 272 memset(out->_data_buf_virt_addr, 0, out->_data_buf_size); cx25821_stop_upstream_video() 274 out->_is_running = 0; cx25821_stop_upstream_video() 275 out->_is_first_frame = 0; cx25821_stop_upstream_video() 276 out->_frame_count = 0; cx25821_stop_upstream_video() 277 out->_file_status = END_OF_FILE; cx25821_stop_upstream_video() 285 struct cx25821_video_out_data *out = chan->out; cx25821_free_mem_upstream() local 288 if (out->_is_running) cx25821_free_mem_upstream() 291 if (out->_dma_virt_addr) { cx25821_free_mem_upstream() 292 pci_free_consistent(dev->pci, out->_risc_size, cx25821_free_mem_upstream() 293 out->_dma_virt_addr, out->_dma_phys_addr); cx25821_free_mem_upstream() 294 out->_dma_virt_addr = NULL; cx25821_free_mem_upstream() 297 if (out->_data_buf_virt_addr) { cx25821_free_mem_upstream() 298 pci_free_consistent(dev->pci, out->_data_buf_size, cx25821_free_mem_upstream() 299 out->_data_buf_virt_addr, cx25821_free_mem_upstream() 300 out->_data_buf_phys_addr); cx25821_free_mem_upstream() 301 out->_data_buf_virt_addr = NULL; cx25821_free_mem_upstream() 308 struct cx25821_video_out_data *out = chan->out; cx25821_write_frame() local 309 int line_size = (out->_pixel_format == PIXEL_FRMT_411) ? cx25821_write_frame() 313 int curpos = out->curpos; cx25821_write_frame() 315 if (out->is_60hz) cx25821_write_frame() 323 out->cur_frame_index = out->_frame_index; cx25821_write_frame() 324 if (wait_event_interruptible(out->waitq, out->cur_frame_index != out->_frame_index)) cx25821_write_frame() 326 out->cur_frame_index = out->_frame_index; cx25821_write_frame() 329 frame_offset = out->cur_frame_index ? frame_size : 0; cx25821_write_frame() 333 if (copy_from_user((__force char *)out->_data_buf_virt_addr + frame_offset + curpos, cx25821_write_frame() 338 out->_frame_count++; cx25821_write_frame() 341 out->curpos = curpos; cx25821_write_frame() 350 struct cx25821_video_out_data *out = chan->out; cx25821_upstream_buffer_prepare() local 356 if (out->_dma_virt_addr != NULL) cx25821_upstream_buffer_prepare() 357 pci_free_consistent(dev->pci, out->upstream_riscbuf_size, cx25821_upstream_buffer_prepare() 358 out->_dma_virt_addr, out->_dma_phys_addr); cx25821_upstream_buffer_prepare() 360 out->_dma_virt_addr = pci_alloc_consistent(dev->pci, cx25821_upstream_buffer_prepare() 361 out->upstream_riscbuf_size, &dma_addr); cx25821_upstream_buffer_prepare() 362 out->_dma_virt_start_addr = out->_dma_virt_addr; cx25821_upstream_buffer_prepare() 363 out->_dma_phys_start_addr = dma_addr; cx25821_upstream_buffer_prepare() 364 out->_dma_phys_addr = dma_addr; cx25821_upstream_buffer_prepare() 365 out->_risc_size = out->upstream_riscbuf_size; cx25821_upstream_buffer_prepare() 367 if (!out->_dma_virt_addr) { cx25821_upstream_buffer_prepare() 373 memset(out->_dma_virt_addr, 0, out->_risc_size); cx25821_upstream_buffer_prepare() 375 if (out->_data_buf_virt_addr != NULL) cx25821_upstream_buffer_prepare() 376 pci_free_consistent(dev->pci, out->upstream_databuf_size, cx25821_upstream_buffer_prepare() 377 out->_data_buf_virt_addr, cx25821_upstream_buffer_prepare() 378 out->_data_buf_phys_addr); cx25821_upstream_buffer_prepare() 380 out->_data_buf_virt_addr = pci_alloc_consistent(dev->pci, cx25821_upstream_buffer_prepare() 381 out->upstream_databuf_size, &data_dma_addr); cx25821_upstream_buffer_prepare() 382 out->_data_buf_phys_addr = data_dma_addr; cx25821_upstream_buffer_prepare() 383 out->_data_buf_size = out->upstream_databuf_size; cx25821_upstream_buffer_prepare() 385 if (!out->_data_buf_virt_addr) { cx25821_upstream_buffer_prepare() 391 memset(out->_data_buf_virt_addr, 0, out->_data_buf_size); cx25821_upstream_buffer_prepare() 395 out->_lines_count); cx25821_upstream_buffer_prepare() 409 struct cx25821_video_out_data *out = chan->out; cx25821_video_upstream_irq() local 429 wake_up(&out->waitq); cx25821_video_upstream_irq() 433 out->_frame_index = prog_cnt; cx25821_video_upstream_irq() 435 if (out->_is_first_frame) { cx25821_video_upstream_irq() 436 out->_is_first_frame = 0; cx25821_video_upstream_irq() 438 if (out->is_60hz) { cx25821_video_upstream_irq() 446 if (out->_dma_virt_start_addr != NULL) { cx25821_video_upstream_irq() 448 (out->_pixel_format == cx25821_video_upstream_irq() 452 out->_dma_phys_start_addr + cx25821_video_upstream_irq() 456 out->_dma_virt_start_addr, TOP_OFFSET, cx25821_video_upstream_irq() 483 if (out->_file_status == END_OF_FILE) { cx25821_video_upstream_irq() 484 pr_err("EOF Channel 1 Framecount = %d\n", out->_frame_count); cx25821_video_upstream_irq() 520 struct cx25821_video_out_data *out = chan->out; cx25821_set_pixelengine() local 523 int height = out->_lines_count; cx25821_set_pixelengine() 530 value |= out->is_60hz ? 0 : 0x10; cx25821_set_pixelengine() 540 if (out->is_60hz) cx25821_set_pixelengine() 554 struct cx25821_video_out_data *out = chan->out; cx25821_start_video_dma_upstream() local 568 cx_write(sram_ch->cmds_start + 0, out->_dma_phys_addr); cx25821_start_video_dma_upstream() 595 out->_is_running = 1; cx25821_start_video_dma_upstream() 596 out->_is_first_frame = 1; cx25821_start_video_dma_upstream() 608 struct cx25821_video_out_data *out = chan->out; cx25821_vidupstream_init() local 616 if (out->_is_running) { cx25821_vidupstream_init() 623 out->is_60hz = dev->tvnorm & V4L2_STD_525_60; cx25821_vidupstream_init() 631 out->_is_running = 0; cx25821_vidupstream_init() 632 out->_frame_count = 0; cx25821_vidupstream_init() 633 out->_file_status = RESET_STATUS; cx25821_vidupstream_init() 634 out->_lines_count = out->is_60hz ? 480 : 576; cx25821_vidupstream_init() 635 out->_pixel_format = pixel_format; cx25821_vidupstream_init() 636 out->_line_size = (out->_pixel_format == PIXEL_FRMT_422) ? cx25821_vidupstream_init() 638 data_frame_size = out->is_60hz ? NTSC_DATA_BUF_SZ : PAL_DATA_BUF_SZ; cx25821_vidupstream_init() 639 risc_buffer_size = out->is_60hz ? cx25821_vidupstream_init() 642 out->_is_running = 0; cx25821_vidupstream_init() 643 out->_frame_count = 0; cx25821_vidupstream_init() 644 out->_file_status = RESET_STATUS; cx25821_vidupstream_init() 645 out->_lines_count = out->is_60hz ? 480 : 576; cx25821_vidupstream_init() 646 out->_pixel_format = pixel_format; cx25821_vidupstream_init() 647 out->_line_size = (out->_pixel_format == PIXEL_FRMT_422) ? cx25821_vidupstream_init() 649 out->curpos = 0; cx25821_vidupstream_init() 650 init_waitqueue_head(&out->waitq); cx25821_vidupstream_init() 653 out->_line_size, 0); cx25821_vidupstream_init() 656 cx25821_set_pixelengine(chan, sram_ch, out->_pixel_format); cx25821_vidupstream_init() 658 out->upstream_riscbuf_size = risc_buffer_size * 2; cx25821_vidupstream_init() 659 out->upstream_databuf_size = data_frame_size * 2; cx25821_vidupstream_init() 662 err = cx25821_upstream_buffer_prepare(chan, sram_ch, out->_line_size); cx25821_vidupstream_init()
|
/linux-4.4.14/arch/x86/include/asm/xen/ |
H A D | trace_types.h | 6 XEN_MC_FL_BATCH, /* out of hypercall space */ 7 XEN_MC_FL_ARGS, /* out of argument space */ 8 XEN_MC_FL_CALLBACK, /* out of callback space */
|
/linux-4.4.14/tools/build/tests/ |
H A D | run.sh | 4 make -C ex V=1 clean > ex.out 2>&1 5 make -C ex V=1 >> ex.out 2>&1 13 rm -f ex.out 17 make -C ex V=1 clean > ex.out 2>&1 20 make -rR -C ex V=1 ex.o >> ex.out 2>&1 21 make -rR -C ex V=1 ex.i >> ex.out 2>&1 22 make -rR -C ex V=1 ex.s >> ex.out 2>&1 35 rm -f ex.out 39 make -C ex V=1 clean > ex.out 2>&1 43 make -C ex V=1 CFLAGS=-DINCLUDE >> ex.out 2>&1 52 make -C ex V=1 >> ex.out 2>&1 60 rm -f ex.out
|
/linux-4.4.14/arch/cris/include/arch-v32/mach-fs/mach/ |
H A D | dma.h | 8 #define NETWORK_ETH0_TX_DMA_NBR 0 /* Ethernet 0 out. */ 11 #define IO_PROC_DMA0_TX_DMA_NBR 2 /* IO processor DMA0 out. */ 14 #define ATA_TX_DMA_NBR 2 /* ATA interface out. */ 17 #define ASYNC_SER2_TX_DMA_NBR 2 /* Asynchronous serial port 2 out. */ 20 #define IO_PROC_DMA1_TX_DMA_NBR 4 /* IO processor DMA1 out. */ 23 #define ASYNC_SER1_TX_DMA_NBR 4 /* Asynchronous serial port 1 out. */ 26 #define SYNC_SER0_TX_DMA_NBR 4 /* Synchronous serial port 0 out. */ 29 #define EXTDMA0_TX_DMA_NBR 6 /* External DMA 0 out. */ 32 #define ASYNC_SER0_TX_DMA_NBR 6 /* Asynchronous serial port 0 out. */ 35 #define SYNC_SER1_TX_DMA_NBR 6 /* Synchronous serial port 1 out. */ 38 #define NETWORK_ETH1_TX_DMA_NBR 6 /* Ethernet 1 out. */ 41 #define EXTDMA2_TX_DMA_NBR 8 /* External DMA 2 out. */ 44 #define STRCOP_TX_DMA_NBR 8 /* Stream co-processor out. */ 47 #define ASYNC_SER3_TX_DMA_NBR 8 /* Asynchronous serial port 3 out. */
|
/linux-4.4.14/fs/ocfs2/dlm/ |
H A D | dlmdebug.c | 188 [DLM_DENIED_NOLOCKS] = "request denied, out of system resources", 254 int out = 0; stringify_lockname() local 262 out += snprintf(buf + out, len - out, "%.*s%08x", stringify_lockname() 266 out += snprintf(buf + out, len - out, "%.*s", stringify_lockname() 268 return out; stringify_lockname() 274 int out = 0; stringify_nodemap() local 278 out += snprintf(buf + out, len - out, "%d ", i); stringify_nodemap() 280 return out; stringify_nodemap() 285 int out = 0; dump_mle() local 295 out += stringify_lockname(mle->mname, mle->mnamelen, buf + out, len - out); dump_mle() 296 out += snprintf(buf + out, len - out, dump_mle() 303 out += snprintf(buf + out, len - out, "Maybe="); dump_mle() 304 out += stringify_nodemap(mle->maybe_map, O2NM_MAX_NODES, dump_mle() 305 buf + out, len - out); dump_mle() 306 out += snprintf(buf + out, len - out, "\n"); dump_mle() 308 out += snprintf(buf + out, len - out, "Vote="); dump_mle() 309 out += stringify_nodemap(mle->vote_map, O2NM_MAX_NODES, dump_mle() 310 buf + out, len - out); dump_mle() 311 out += snprintf(buf + out, len - out, "\n"); dump_mle() 313 out += snprintf(buf + out, len - out, "Response="); dump_mle() 314 out += stringify_nodemap(mle->response_map, O2NM_MAX_NODES, dump_mle() 315 buf + out, len - out); dump_mle() 316 out += snprintf(buf + out, len - out, "\n"); dump_mle() 318 out += snprintf(buf + out, len - out, "Node="); dump_mle() 319 out += stringify_nodemap(mle->node_map, O2NM_MAX_NODES, dump_mle() 320 buf + out, len - out); dump_mle() 321 out += snprintf(buf + out, len - out, "\n"); dump_mle() 323 out += snprintf(buf + out, len - out, "\n"); dump_mle() 325 return out; dump_mle() 388 int out = 0; debug_purgelist_print() local 391 out += snprintf(buf + out, len - out, debug_purgelist_print() 397 if (len - out < 100) debug_purgelist_print() 400 out += stringify_lockname(res->lockname.name, debug_purgelist_print() 402 buf + out, len - out); debug_purgelist_print() 403 out += snprintf(buf + out, len - out, "\t%ld\n", debug_purgelist_print() 409 out += snprintf(buf + out, len - out, "Total on list: %lu\n", total); debug_purgelist_print() 411 return out; debug_purgelist_print() 445 int i, out = 0; debug_mle_print() local 448 out += snprintf(buf + out, len - out, debug_mle_print() 457 if (len - out < 200) hlist_for_each_entry() 459 out += dump_mle(mle, buf + out, len - out); hlist_for_each_entry() 466 out += snprintf(buf + out, len - out, 468 return out; 501 int out; dump_lock() local 505 out = snprintf(buf, len, "LOCK:%d,%d,%d,%d,%d,%d:%lld,%d,%d,%d,%d,%d," dump_lock() 520 return out; dump_lock() 527 int out = 0; dump_lockres() local 529 out += snprintf(buf + out, len - out, "NAME:"); dump_lockres() 530 out += stringify_lockname(res->lockname.name, res->lockname.len, dump_lockres() 531 buf + out, len - out); dump_lockres() 532 out += snprintf(buf + out, len - out, "\n"); dump_lockres() 535 out += snprintf(buf + out, len - out, dump_lockres() 547 out += snprintf(buf + out, len - out, "RMAP:"); dump_lockres() 548 out += stringify_nodemap(res->refmap, O2NM_MAX_NODES, dump_lockres() 549 buf + out, len - out); dump_lockres() 550 out += snprintf(buf + out, len - out, "\n"); dump_lockres() 553 out += snprintf(buf + out, len - out, "LVBX:"); dump_lockres() 555 out += snprintf(buf + out, len - out, dump_lockres() 557 out += snprintf(buf + out, len - out, "\n"); dump_lockres() 561 out += dump_lock(lock, 0, buf + out, len - out); dump_lockres() 565 out += dump_lock(lock, 1, buf + out, len - out); dump_lockres() 569 out += dump_lock(lock, 2, buf + out, len - out); dump_lockres() 571 out += snprintf(buf + out, len - out, "\n"); dump_lockres() 573 return out; dump_lockres() 699 int out = 0; debug_state_print() local 721 out += snprintf(buf + out, len - out, debug_state_print() 727 out += snprintf(buf + out, len - out, debug_state_print() 732 out += snprintf(buf + out, len - out, debug_state_print() 737 out += snprintf(buf + out, len - out, "Domain Map: "); debug_state_print() 738 out += stringify_nodemap(dlm->domain_map, O2NM_MAX_NODES, debug_state_print() 739 buf + out, len - out); debug_state_print() 740 out += snprintf(buf + out, len - out, "\n"); debug_state_print() 743 out += snprintf(buf + out, len - out, "Exit Domain Map: "); debug_state_print() 744 out += stringify_nodemap(dlm->exit_domain_map, O2NM_MAX_NODES, debug_state_print() 745 buf + out, len - out); debug_state_print() 746 out += snprintf(buf + out, len - out, "\n"); debug_state_print() 749 out += snprintf(buf + out, len - out, "Live Map: "); debug_state_print() 750 out += stringify_nodemap(dlm->live_nodes_map, O2NM_MAX_NODES, debug_state_print() 751 buf + out, len - out); debug_state_print() 752 out += snprintf(buf + out, len - out, "\n"); debug_state_print() 755 out += snprintf(buf + out, len - out, debug_state_print() 767 out += snprintf(buf + out, len - out, debug_state_print() 771 out += snprintf(buf + out, len - out, debug_state_print() 777 out += snprintf(buf + out, len - out, debug_state_print() 783 out += snprintf(buf + out, len - out, debug_state_print() 789 out += snprintf(buf + out, len - out, debug_state_print() 798 out += snprintf(buf + out, len - out, debug_state_print() 803 out += snprintf(buf + out, len - out, debug_state_print() 813 out += snprintf(buf + out, len - out, debug_state_print() 819 out += snprintf(buf + out, len - out, "Recovery Map: "); debug_state_print() 820 out += stringify_nodemap(dlm->recovery_map, O2NM_MAX_NODES, debug_state_print() 821 buf + out, len - out); debug_state_print() 822 out += snprintf(buf + out, len - out, "\n"); debug_state_print() 825 out += snprintf(buf + out, len - out, "Recovery Node State:\n"); debug_state_print() 853 out += snprintf(buf + out, len - out, "\t%u - %s\n", debug_state_print() 859 return out; debug_state_print()
|
/linux-4.4.14/drivers/video/fbdev/omap2/dss/ |
H A D | output.c | 31 int omapdss_output_set_device(struct omap_dss_device *out, omapdss_output_set_device() argument 38 if (out->dst) { omapdss_output_set_device() 40 out->dst->name); omapdss_output_set_device() 45 if (out->output_type != dssdev->type) { omapdss_output_set_device() 51 out->dst = dssdev; omapdss_output_set_device() 52 dssdev->src = out; omapdss_output_set_device() 64 int omapdss_output_unset_device(struct omap_dss_device *out) omapdss_output_unset_device() argument 70 if (!out->dst) { omapdss_output_unset_device() 76 if (out->dst->state != OMAP_DSS_DISPLAY_DISABLED) { omapdss_output_unset_device() 78 out->dst->name); omapdss_output_unset_device() 83 out->dst->src = NULL; omapdss_output_unset_device() 84 out->dst = NULL; omapdss_output_unset_device() 96 int omapdss_register_output(struct omap_dss_device *out) omapdss_register_output() argument 98 list_add_tail(&out->list, &output_list); omapdss_register_output() 103 void omapdss_unregister_output(struct omap_dss_device *out) omapdss_unregister_output() argument 105 list_del(&out->list); omapdss_unregister_output() 111 struct omap_dss_device *out; omap_dss_get_output() local 113 list_for_each_entry(out, &output_list, list) { omap_dss_get_output() 114 if (out->id == id) omap_dss_get_output() 115 return out; omap_dss_get_output() 124 struct omap_dss_device *out; omap_dss_find_output() local 126 list_for_each_entry(out, &output_list, list) { omap_dss_find_output() 127 if (strcmp(out->name, name) == 0) omap_dss_find_output() 128 return omap_dss_get_device(out); omap_dss_find_output() 138 struct omap_dss_device *out; omap_dss_find_output_by_port_node() local 147 list_for_each_entry(out, &output_list, list) { omap_dss_find_output_by_port_node() 148 if (out->dev->of_node == src_node && out->port_num == reg) { omap_dss_find_output_by_port_node() 150 return omap_dss_get_device(out); omap_dss_find_output_by_port_node() 174 struct omap_dss_device *out; omapdss_find_mgr_from_display() local 177 out = omapdss_find_output_from_display(dssdev); omapdss_find_mgr_from_display() 179 if (out == NULL) omapdss_find_mgr_from_display() 182 mgr = out->manager; omapdss_find_mgr_from_display() 184 omap_dss_put_device(out); omapdss_find_mgr_from_display()
|
H A D | sdi.c | 132 struct omap_dss_device *out = &sdi.output; sdi_display_enable() local 139 if (out == NULL || out->manager == NULL) { sdi_display_enable() 172 dss_mgr_set_timings(out->manager, t); sdi_display_enable() 191 dispc_mgr_set_clock_div(out->manager->id, &sdi.mgr_config.clock_info); sdi_display_enable() 199 r = dss_mgr_enable(out->manager); sdi_display_enable() 339 struct omap_dss_device *out = &sdi.output; sdi_init_output() local 341 out->dev = &pdev->dev; sdi_init_output() 342 out->id = OMAP_DSS_OUTPUT_SDI; sdi_init_output() 343 out->output_type = OMAP_DISPLAY_TYPE_SDI; sdi_init_output() 344 out->name = "sdi.0"; sdi_init_output() 345 out->dispc_channel = OMAP_DSS_CHANNEL_LCD; sdi_init_output() 347 out->port_num = 1; sdi_init_output() 348 out->ops.sdi = &sdi_ops; sdi_init_output() 349 out->owner = THIS_MODULE; sdi_init_output() 351 omapdss_register_output(out); sdi_init_output() 356 struct omap_dss_device *out = &sdi.output; sdi_uninit_output() local 358 omapdss_unregister_output(out); sdi_uninit_output()
|
/linux-4.4.14/drivers/media/usb/dvb-usb/ |
H A D | ttusb2.h | 19 * always to messages (out/in) 20 * out message: 30 /* out data: <byte>[28] 34 /* out data: nothing */ 37 /* out data: <on=1/off=0> */ 40 /* out data: <power=1> <18V=0,13V=1> <tone> <??=1> <??=1> */ 46 /* out data: <master=0xff/burst=??> <cmdlen> <cmdbytes>[cmdlen] */ 49 /* out data: <index> <type: ts=1/sec=2> <pid msb> <pid lsb> */ 52 /* out data: <index> */ 55 /* out data: <index> <pid_idx> <filter>[12] <mask>[12] */ 58 /* out data: <index> */ 64 /* out data: <addr << 1> <sndlen> <rcvlen> <data>[sndlen] 68 /* out data: <default=0> */
|
/linux-4.4.14/arch/cris/include/arch-v32/mach-a3/mach/ |
H A D | dma.h | 8 #define NETWORK_ETH_TX_DMA_NBR 0 /* Ethernet 0 out. */ 11 #define IO_PROC_DMA_TX_DMA_NBR 4 /* IO processor DMA0 out. */ 14 #define ASYNC_SER3_TX_DMA_NBR 2 /* Asynchronous serial port 3 out. */ 17 #define ASYNC_SER2_TX_DMA_NBR 6 /* Asynchronous serial port 2 out. */ 20 #define ASYNC_SER1_TX_DMA_NBR 4 /* Asynchronous serial port 1 out. */ 23 #define SYNC_SER_TX_DMA_NBR 6 /* Synchronous serial port 0 out. */ 26 #define ASYNC_SER0_TX_DMA_NBR 0 /* Asynchronous serial port 0 out. */ 29 #define STRCOP_TX_DMA_NBR 2 /* Stream co-processor out. */
|
/linux-4.4.14/drivers/staging/skein/ |
H A D | threefish_api.c | 25 u8 *out) threefish_encrypt_block_bytes() 32 skein_put64_lsb_first(out, cipher, key_ctx->state_size / 8); threefish_encrypt_block_bytes() 36 u64 *out) threefish_encrypt_block_words() 40 threefish_encrypt_256(key_ctx, in, out); threefish_encrypt_block_words() 43 threefish_encrypt_512(key_ctx, in, out); threefish_encrypt_block_words() 46 threefish_encrypt_1024(key_ctx, in, out); threefish_encrypt_block_words() 52 u8 *out) threefish_decrypt_block_bytes() 59 skein_put64_lsb_first(out, plain, key_ctx->state_size / 8); threefish_decrypt_block_bytes() 63 u64 *out) threefish_decrypt_block_words() 67 threefish_decrypt_256(key_ctx, in, out); threefish_decrypt_block_words() 70 threefish_decrypt_512(key_ctx, in, out); threefish_decrypt_block_words() 73 threefish_decrypt_1024(key_ctx, in, out); threefish_decrypt_block_words() 24 threefish_encrypt_block_bytes(struct threefish_key *key_ctx, u8 *in, u8 *out) threefish_encrypt_block_bytes() argument 35 threefish_encrypt_block_words(struct threefish_key *key_ctx, u64 *in, u64 *out) threefish_encrypt_block_words() argument 51 threefish_decrypt_block_bytes(struct threefish_key *key_ctx, u8 *in, u8 *out) threefish_decrypt_block_bytes() argument 62 threefish_decrypt_block_words(struct threefish_key *key_ctx, u64 *in, u64 *out) threefish_decrypt_block_words() argument
|
H A D | skein_generic.c | 36 static int skein256_final(struct shash_desc *desc, u8 *out) skein256_final() argument 39 out); skein256_final() 42 static int skein256_export(struct shash_desc *desc, void *out) skein256_export() argument 46 memcpy(out, sctx, sizeof(*sctx)); skein256_export() 71 static int skein512_final(struct shash_desc *desc, u8 *out) skein512_final() argument 74 out); skein512_final() 77 static int skein512_export(struct shash_desc *desc, void *out) skein512_export() argument 81 memcpy(out, sctx, sizeof(*sctx)); skein512_export() 106 static int skein1024_final(struct shash_desc *desc, u8 *out) skein1024_final() argument 109 out); skein1024_final() 112 static int skein1024_export(struct shash_desc *desc, void *out) skein1024_export() argument 116 memcpy(out, sctx, sizeof(*sctx)); skein1024_export() 185 goto out; skein_generic_init() 197 out: skein_generic_init()
|
/linux-4.4.14/drivers/media/platform/vivid/ |
H A D | Makefile | 2 vivid-vid-cap.o vivid-vid-out.o vivid-kthread-cap.o vivid-kthread-out.o \ 4 vivid-rds-gen.o vivid-sdr-cap.o vivid-vbi-cap.o vivid-vbi-out.o \
|
/linux-4.4.14/arch/x86/entry/syscalls/ |
H A D | Makefile | 0 out := $(obj)/../../include/generated/asm 5 _dummy := $(shell [ -d '$(out)' ] || mkdir -p '$(out)') \ 23 cmd_hypercalls = $(CONFIG_SHELL) '$<' $@ $(filter-out $<,$^) 31 $(out)/unistd_32_ia32.h: $(syscall32) $(syshdr) 45 $(out)/unistd_64_x32.h: $(syscall64) $(syshdr) 48 $(out)/syscalls_32.h: $(syscall32) $(systbl) 50 $(out)/syscalls_64.h: $(syscall64) $(systbl) 53 $(out)/xen-hypercalls.h: $(srctree)/scripts/xen-hypercalls.sh 56 $(out)/xen-hypercalls.h: $(srctree)/include/xen/interface/xen*.h 68 all: $(addprefix $(out)/,$(syshdr-y)) 1 out := $(obj)/../../include/generated/asm global() macro
|
/linux-4.4.14/lib/ |
H A D | test-string_helpers.c | 36 const char *out; member in struct:test_string 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; test_string_unescape() 85 s = strings[i].out; test_string_unescape() 86 len = strlen(strings[i].out); test_string_unescape() 108 out: test_string_unescape() 115 const char *out; member in struct:test_string_1 129 .out = "\\f\\ \\n\\r\\t\\v", 132 .out = "\\f\\134\\040\\n\\r\\t\\v", 135 .out = "\\f\\x5c\\x20\\n\\r\\t\\v", 143 .out = "\\\\h\\\\\"\\a\\e\\\\", 146 .out = "\\\\\\150\\\\\\042\\a\\e\\\\", 149 .out = "\\\\\\x68\\\\\\x22\\a\\e\\\\", 157 .out = "\eb \\C\007\"\x90\\r]", 160 .out = "\\eb \\\\C\\a\"\x90\r]", 163 .out = "\\eb \\\\C\\a\"\x90\\r]", 166 .out = "\\033\\142\\040\\134\\103\\007\\042\\220\\015\\135", 169 .out = "\\033\\142\\040\\134\\103\\007\\042\\220\\r\\135", 172 .out = "\\e\\142\\040\\\\\\103\\a\\042\\220\\015\\135", 175 .out = "\\e\\142\\040\\\\\\103\\a\\042\\220\\r\\135", 178 .out = "\eb \\C\007\"\x90\r]", 181 .out = "\eb \\C\007\"\x90\\r]", 184 .out = "\\eb \\C\\a\"\x90\r]", 187 .out = "\\eb \\C\\a\"\x90\\r]", 190 .out = "\\033b \\C\\007\"\\220\\015]", 193 .out = "\\033b \\C\\007\"\\220\\r]", 196 .out = "\\eb \\C\\a\"\\220\\r]", 200 .out = "\\x1bb \\C\\x07\"\\x90\\x0d]", 213 .out = "\f\\134\\040\n\\015\\011\v", 216 .out = "\f\\x5c\\x20\n\\x0d\\x09\v", 224 .out = "\\134h\\134\"\a\e\\134", 232 .out = "\e\\142\\040\\134C\007\"\x90\\015]", 257 for (i = 0; i < TEST_STRING_2_MAX_S1 && s1->out; i++, s1++) test_string_find_match() 259 return s1->out; test_string_find_match() 287 goto out; test_string_escape() 290 const char *out; test_string_escape() local 301 out = test_string_find_match(s2, flags); test_string_escape() 302 if (!out) test_string_escape() 311 len = strlen(out); test_string_escape() 312 memcpy(&out_test[q_test], out, len); test_string_escape() 323 out: test_string_escape()
|
H A D | string_helpers.c | 57 goto out; string_get_size() 90 /* work out in j how many digits of precision we need from the string_get_size() 117 out: string_get_size() 264 char *out = dst; string_unescape() local 272 unescape_space(&src, &out)) string_unescape() 276 unescape_octal(&src, &out)) string_unescape() 280 unescape_hex(&src, &out)) string_unescape() 284 unescape_special(&src, &out)) string_unescape() 287 *out++ = '\\'; string_unescape() 289 *out++ = *src++; string_unescape() 291 *out = '\0'; string_unescape() 293 return out - dst; string_unescape() 299 char *out = *dst; escape_passthrough() local 301 if (out < end) escape_passthrough() 302 *out = c; escape_passthrough() 303 *dst = out + 1; escape_passthrough() 309 char *out = *dst; escape_space() local 332 if (out < end) escape_space() 333 *out = '\\'; escape_space() 334 ++out; escape_space() 335 if (out < end) escape_space() 336 *out = to; escape_space() 337 ++out; escape_space() 339 *dst = out; escape_space() 345 char *out = *dst; escape_special() local 362 if (out < end) escape_special() 363 *out = '\\'; escape_special() 364 ++out; escape_special() 365 if (out < end) escape_special() 366 *out = to; escape_special() 367 ++out; escape_special() 369 *dst = out; escape_special() 375 char *out = *dst; escape_null() local 380 if (out < end) escape_null() 381 *out = '\\'; escape_null() 382 ++out; escape_null() 383 if (out < end) escape_null() 384 *out = '0'; escape_null() 385 ++out; escape_null() 387 *dst = out; escape_null() 393 char *out = *dst; escape_octal() local 395 if (out < end) escape_octal() 396 *out = '\\'; escape_octal() 397 ++out; escape_octal() 398 if (out < end) escape_octal() 399 *out = ((c >> 6) & 0x07) + '0'; escape_octal() 400 ++out; escape_octal() 401 if (out < end) escape_octal() 402 *out = ((c >> 3) & 0x07) + '0'; escape_octal() 403 ++out; escape_octal() 404 if (out < end) escape_octal() 405 *out = ((c >> 0) & 0x07) + '0'; escape_octal() 406 ++out; escape_octal() 408 *dst = out; escape_octal() 414 char *out = *dst; escape_hex() local 416 if (out < end) escape_hex() 417 *out = '\\'; escape_hex() 418 ++out; escape_hex() 419 if (out < end) escape_hex() 420 *out = 'x'; escape_hex() 421 ++out; escape_hex() 422 if (out < end) escape_hex() 423 *out = hex_asc_hi(c); escape_hex() 424 ++out; escape_hex() 425 if (out < end) escape_hex() 426 *out = hex_asc_lo(c); escape_hex() 427 ++out; escape_hex() 429 *dst = out; escape_hex()
|
H A D | smp_processor_id.c | 16 goto out; check_preemption_disabled() 19 goto out; check_preemption_disabled() 26 goto out; check_preemption_disabled() 32 goto out; check_preemption_disabled() 50 out: check_preemption_disabled()
|
H A D | kfifo.c | 35 return (fifo->mask + 1) - (fifo->in - fifo->out); kfifo_unused() 48 fifo->out = 0; __kfifo_alloc() 73 fifo->out = 0; __kfifo_free() 88 fifo->out = 0; __kfifo_init() 160 * incrementing the fifo->out index counter kfifo_copy_out() 170 l = fifo->in - fifo->out; __kfifo_out_peek() 174 kfifo_copy_out(fifo, buf, len, fifo->out); __kfifo_out_peek() 183 fifo->out += len; __kfifo_out() 275 * incrementing the fifo->out index counter kfifo_copy_to_user() 294 l = fifo->in - fifo->out; __kfifo_to_user() 297 ret = kfifo_copy_to_user(fifo, to, len, fifo->out, copied); __kfifo_to_user() 303 fifo->out += len; __kfifo_to_user() 387 l = fifo->in - fifo->out; __kfifo_dma_out_prepare() 391 return setup_sgl(fifo, sgl, nents, len, fifo->out); __kfifo_dma_out_prepare() 405 #define __KFIFO_PEEK(data, out, mask) \ 406 ((data)[(out) & (mask)]) 417 l = __KFIFO_PEEK(data, fifo->out, mask); __kfifo_peek_n() 420 l |= __KFIFO_PEEK(data, fifo->out + 1, mask) << 8; __kfifo_peek_n() 473 kfifo_copy_out(fifo, buf, len, fifo->out + recsize); kfifo_out_copy_r() 482 if (fifo->in == fifo->out) __kfifo_out_peek_r() 494 if (fifo->in == fifo->out) __kfifo_out_r() 498 fifo->out += n + recsize; __kfifo_out_r() 508 fifo->out += n + recsize; __kfifo_skip_r() 542 if (fifo->in == fifo->out) { __kfifo_to_user_r() 551 ret = kfifo_copy_to_user(fifo, to, len, fifo->out + recsize, copied); __kfifo_to_user_r() 556 fifo->out += n + recsize; __kfifo_to_user_r() 591 if (len + recsize > fifo->in - fifo->out) __kfifo_dma_out_prepare_r() 594 return setup_sgl(fifo, sgl, nents, len, fifo->out + recsize); __kfifo_dma_out_prepare_r() 603 fifo->out += len + recsize; __kfifo_dma_out_finish_r()
|
/linux-4.4.14/tools/perf/util/ |
H A D | stat-shadow.c | 140 static void print_stalled_cycles_frontend(FILE *out, int cpu, print_stalled_cycles_frontend() argument 155 fprintf(out, " # "); print_stalled_cycles_frontend() 156 color_fprintf(out, color, "%6.2f%%", ratio); print_stalled_cycles_frontend() 157 fprintf(out, " frontend cycles idle "); print_stalled_cycles_frontend() 160 static void print_stalled_cycles_backend(FILE *out, int cpu, print_stalled_cycles_backend() argument 175 fprintf(out, " # "); print_stalled_cycles_backend() 176 color_fprintf(out, color, "%6.2f%%", ratio); print_stalled_cycles_backend() 177 fprintf(out, " backend cycles idle "); print_stalled_cycles_backend() 180 static void print_branch_misses(FILE *out, int cpu, print_branch_misses() argument 195 fprintf(out, " # "); print_branch_misses() 196 color_fprintf(out, color, "%6.2f%%", ratio); print_branch_misses() 197 fprintf(out, " of all branches "); print_branch_misses() 200 static void print_l1_dcache_misses(FILE *out, int cpu, print_l1_dcache_misses() argument 215 fprintf(out, " # "); print_l1_dcache_misses() 216 color_fprintf(out, color, "%6.2f%%", ratio); print_l1_dcache_misses() 217 fprintf(out, " of all L1-dcache hits "); print_l1_dcache_misses() 220 static void print_l1_icache_misses(FILE *out, int cpu, print_l1_icache_misses() argument 235 fprintf(out, " # "); print_l1_icache_misses() 236 color_fprintf(out, color, "%6.2f%%", ratio); print_l1_icache_misses() 237 fprintf(out, " of all L1-icache hits "); print_l1_icache_misses() 240 static void print_dtlb_cache_misses(FILE *out, int cpu, print_dtlb_cache_misses() argument 255 fprintf(out, " # "); print_dtlb_cache_misses() 256 color_fprintf(out, color, "%6.2f%%", ratio); print_dtlb_cache_misses() 257 fprintf(out, " of all dTLB cache hits "); print_dtlb_cache_misses() 260 static void print_itlb_cache_misses(FILE *out, int cpu, print_itlb_cache_misses() argument 275 fprintf(out, " # "); print_itlb_cache_misses() 276 color_fprintf(out, color, "%6.2f%%", ratio); print_itlb_cache_misses() 277 fprintf(out, " of all iTLB cache hits "); print_itlb_cache_misses() 280 static void print_ll_cache_misses(FILE *out, int cpu, print_ll_cache_misses() argument 295 fprintf(out, " # "); print_ll_cache_misses() 296 color_fprintf(out, color, "%6.2f%%", ratio); print_ll_cache_misses() 297 fprintf(out, " of all LL-cache hits "); print_ll_cache_misses() 300 void perf_stat__print_shadow_stats(FILE *out, struct perf_evsel *evsel, perf_stat__print_shadow_stats() argument 310 fprintf(out, " # %5.2f insns per cycle ", ratio); perf_stat__print_shadow_stats() 312 fprintf(out, " "); perf_stat__print_shadow_stats() 319 fprintf(out, "\n"); perf_stat__print_shadow_stats() 321 fprintf(out, " "); perf_stat__print_shadow_stats() 322 fprintf(out, " # %5.2f stalled cycles per insn", ratio); perf_stat__print_shadow_stats() 327 print_branch_misses(out, cpu, evsel, avg); perf_stat__print_shadow_stats() 334 print_l1_dcache_misses(out, cpu, evsel, avg); perf_stat__print_shadow_stats() 341 print_l1_icache_misses(out, cpu, evsel, avg); perf_stat__print_shadow_stats() 348 print_dtlb_cache_misses(out, cpu, evsel, avg); perf_stat__print_shadow_stats() 355 print_itlb_cache_misses(out, cpu, evsel, avg); perf_stat__print_shadow_stats() 362 print_ll_cache_misses(out, cpu, evsel, avg); perf_stat__print_shadow_stats() 370 fprintf(out, " # %8.3f %% of all cache refs ", ratio); perf_stat__print_shadow_stats() 373 print_stalled_cycles_frontend(out, cpu, evsel, avg); perf_stat__print_shadow_stats() 375 print_stalled_cycles_backend(out, cpu, evsel, avg); perf_stat__print_shadow_stats() 381 fprintf(out, " # %8.3f GHz ", ratio); perf_stat__print_shadow_stats() 383 fprintf(out, " "); perf_stat__print_shadow_stats() 388 fprintf(out, perf_stat__print_shadow_stats() 397 fprintf(out, perf_stat__print_shadow_stats() 407 fprintf(out, " # %8.0f cycles / transaction ", ratio); perf_stat__print_shadow_stats() 415 fprintf(out, " # %8.0f cycles / elision ", ratio); perf_stat__print_shadow_stats() 418 fprintf(out, " # %8.3f CPUs utilized ", avg / ratio); perf_stat__print_shadow_stats() 420 fprintf(out, " "); perf_stat__print_shadow_stats() 433 fprintf(out, " # %8.3f %c/sec ", ratio, unit); perf_stat__print_shadow_stats() 435 fprintf(out, " "); perf_stat__print_shadow_stats()
|
H A D | perf_regs.c | 16 goto out; perf_reg_value() 29 out: perf_reg_value()
|
H A D | trace-event-info.c | 77 goto out; record_file() 85 goto out; record_file() 96 goto out; record_file() 100 out: record_file() 119 goto out; record_header_files() 124 goto out; record_header_files() 129 goto out; record_header_files() 138 goto out; record_header_files() 143 goto out; record_header_files() 148 goto out; record_header_files() 153 goto out; record_header_files() 157 out: record_header_files() 197 goto out; copy_event_system() 209 goto out; copy_event_system() 221 goto out; copy_event_system() 229 goto out; copy_event_system() 235 out: copy_event_system() 290 goto out; record_event_files() 306 goto out; record_event_files() 319 goto out; record_event_files() 329 goto out; record_event_files() 335 out: record_event_files() 373 goto out; record_ftrace_printk() 377 out: record_ftrace_printk() 528 goto out; tracing_data_get() 531 goto out; tracing_data_get() 534 goto out; tracing_data_get() 537 goto out; tracing_data_get() 540 goto out; tracing_data_get() 543 out: tracing_data_get()
|
H A D | run-command.c | 27 * that have been passed in via ->in and ->out. start_command() 33 if (cmd->out > 0) start_command() 34 close(cmd->out); start_command() 42 && cmd->out < 0; start_command() 51 cmd->out = fdout[0]; start_command() 63 else if (cmd->out) start_command() 64 close(cmd->out); start_command() 97 } else if (cmd->out > 1) { start_command() 98 dup2(cmd->out, 1); start_command() 99 close(cmd->out); start_command() 131 else if (cmd->out) start_command() 132 close(cmd->out); start_command() 147 else if (cmd->out) start_command() 148 close(cmd->out); start_command()
|
H A D | zlib.c | 57 goto out; gzip_decompress_to_file() 65 goto out; gzip_decompress_to_file() 70 out: gzip_decompress_to_file()
|
H A D | run-command.h | 19 * Using .in, .out, .err: 25 * .out, .err: returns the readable pipe end; parent reads from 31 * .out: a writable FD, becomes child's stdout/stderr 37 int out; member in struct:child_process
|
/linux-4.4.14/sound/usb/line6/ |
H A D | playback.c | 142 must be called in line6pcm->out.lock context 158 find_first_zero_bit(&line6pcm->out.active_urbs, LINE6_ISO_BUFFERS); submit_audio_out_urb() 165 urb_out = line6pcm->out.urbs[index]; submit_audio_out_urb() 178 line6pcm->out.count += frame_increment; submit_audio_out_urb() 179 n = line6pcm->out.count / frame_factor; submit_audio_out_urb() 180 line6pcm->out.count -= n * frame_factor; submit_audio_out_urb() 197 line6pcm->out.buffer + submit_audio_out_urb() 202 if (test_bit(LINE6_STREAM_PCM, &line6pcm->out.running) && submit_audio_out_urb() 207 if (line6pcm->out.pos + urb_frames > runtime->buffer_size) { submit_audio_out_urb() 214 len = runtime->buffer_size - line6pcm->out.pos; submit_audio_out_urb() 219 line6pcm->out.pos * bytes_per_frame, submit_audio_out_urb() 230 line6pcm->out.pos * bytes_per_frame, submit_audio_out_urb() 234 line6pcm->out.pos += urb_frames; submit_audio_out_urb() 235 if (line6pcm->out.pos >= runtime->buffer_size) submit_audio_out_urb() 236 line6pcm->out.pos -= runtime->buffer_size; submit_audio_out_urb() 247 if (test_bit(LINE6_STREAM_IMPULSE, &line6pcm->out.running)) { submit_audio_out_urb() 260 && line6pcm->out.running && line6pcm->in.running) submit_audio_out_urb() 273 set_bit(index, &line6pcm->out.active_urbs); submit_audio_out_urb() 276 "URB out #%d submission failed (%d)\n", index, ret); submit_audio_out_urb() 283 must be called in line6pcm->out.lock context 313 line6pcm->out.last_frame = urb->start_frame; audio_out_callback() 317 if (urb == line6pcm->out.urbs[index]) audio_out_callback() 326 spin_lock_irqsave(&line6pcm->out.lock, flags); audio_out_callback() 328 if (test_bit(LINE6_STREAM_PCM, &line6pcm->out.running)) { audio_out_callback() 331 line6pcm->out.pos_done += audio_out_callback() 334 if (line6pcm->out.pos_done >= runtime->buffer_size) audio_out_callback() 335 line6pcm->out.pos_done -= runtime->buffer_size; audio_out_callback() 338 clear_bit(index, &line6pcm->out.active_urbs); audio_out_callback() 346 if (test_and_clear_bit(index, &line6pcm->out.unlink_urbs)) audio_out_callback() 352 if (test_bit(LINE6_STREAM_PCM, &line6pcm->out.running)) { audio_out_callback() 353 line6pcm->out.bytes += length; audio_out_callback() 354 if (line6pcm->out.bytes >= line6pcm->out.period) { audio_out_callback() 355 line6pcm->out.bytes %= line6pcm->out.period; audio_out_callback() 356 spin_unlock(&line6pcm->out.lock); audio_out_callback() 358 spin_lock(&line6pcm->out.lock); audio_out_callback() 362 spin_unlock_irqrestore(&line6pcm->out.lock, flags); audio_out_callback() 408 /* URB for audio out: */ line6_create_audio_out_urbs() 409 urb = line6pcm->out.urbs[i] = line6_create_audio_out_urbs()
|
/linux-4.4.14/drivers/pci/hotplug/ |
H A D | shpchp_sysfs.c | 41 char *out = buf; show_ctrl() local 49 out += sprintf(buf, "Free resources: memory\n"); pci_bus_for_each_resource() 53 out += sprintf(out, "start = %8.8llx, length = %8.8llx\n", pci_bus_for_each_resource() 58 out += sprintf(out, "Free resources: prefetchable memory\n"); pci_bus_for_each_resource() 62 out += sprintf(out, "start = %8.8llx, length = %8.8llx\n", pci_bus_for_each_resource() 67 out += sprintf(out, "Free resources: IO\n"); pci_bus_for_each_resource() 70 out += sprintf(out, "start = %8.8llx, length = %8.8llx\n", pci_bus_for_each_resource() 75 out += sprintf(out, "Free resources: bus numbers\n"); 81 out += sprintf(out, "start = %8.8x, length = %8.8x\n", 84 return out - buf;
|
H A D | cpqphp_sysfs.c | 44 char *out = buf; show_ctrl() local 48 out += sprintf(buf, "Free resources: memory\n"); show_ctrl() 52 out += sprintf(out, "start = %8.8x, length = %8.8x\n", res->base, res->length); show_ctrl() 55 out += sprintf(out, "Free resources: prefetchable memory\n"); show_ctrl() 59 out += sprintf(out, "start = %8.8x, length = %8.8x\n", res->base, res->length); show_ctrl() 62 out += sprintf(out, "Free resources: IO\n"); show_ctrl() 66 out += sprintf(out, "start = %8.8x, length = %8.8x\n", res->base, res->length); show_ctrl() 69 out += sprintf(out, "Free resources: bus numbers\n"); show_ctrl() 73 out += sprintf(out, "start = %8.8x, length = %8.8x\n", res->base, res->length); show_ctrl() 77 return out - buf; show_ctrl() 82 char *out = buf; show_dev() local 94 out += sprintf(out, "assigned resources: memory\n"); show_dev() 98 out += sprintf(out, "start = %8.8x, length = %8.8x\n", res->base, res->length); show_dev() 101 out += sprintf(out, "assigned resources: prefetchable memory\n"); show_dev() 105 out += sprintf(out, "start = %8.8x, length = %8.8x\n", res->base, res->length); show_dev() 108 out += sprintf(out, "assigned resources: IO\n"); show_dev() 112 out += sprintf(out, "start = %8.8x, length = %8.8x\n", res->base, res->length); show_dev() 115 out += sprintf(out, "assigned resources: bus numbers\n"); show_dev() 119 out += sprintf(out, "start = %8.8x, length = %8.8x\n", res->base, res->length); show_dev() 125 return out - buf; show_dev()
|
/linux-4.4.14/drivers/crypto/vmx/ |
H A D | aesp8-ppc.h | 15 void aes_p8_encrypt(const u8 *in, u8 *out, const struct aes_key *key); 16 void aes_p8_decrypt(const u8 *in, u8 *out, const struct aes_key *key); 17 void aes_p8_cbc_encrypt(const u8 *in, u8 *out, size_t len, 19 void aes_p8_ctr32_encrypt_blocks(const u8 *in, u8 *out,
|
H A D | aesp8-ppc.pl | 61 my ($inp,$bits,$out,$ptr,$cnt,$rounds)=map("r$_",(3..8)); 95 ${UCMP}i $out,0 96 beq- Lenc_key_abort # if ($out==0) return -1; 129 ?lvsr $outperm,0,$out 131 lvx $outhead,0,$out 148 stvx $stage,0,$out 149 addi $out,$out,16 168 stvx $stage,0,$out 169 addi $out,$out,16 185 stvx $stage,0,$out 186 addi $out,$out,16 197 stvx $stage,0,$out 199 addi $inp,$out,15 # 15 is not typo 200 addi $out,$out,0x50 212 stvx $stage,0,$out 213 addi $out,$out,16 246 stvx $stage,0,$out 247 addi $out,$out,16 258 stvx $stage,0,$out 259 addi $out,$out,16 271 stvx $stage,0,$out 272 addi $inp,$out,15 # 15 is not typo 273 addi $out,$out,16 277 addi $out,$out,0x20 288 stvx $stage,0,$out 289 addi $out,$out,16 300 stvx $stage,0,$out 301 addi $out,$out,16 313 stvx $stage,0,$out 314 addi $inp,$out,15 # 15 is not typo 315 addi $out,$out,16 338 stw $rounds,0($out) 359 subi $inp,$out,240 # first round key 361 add $out,$inp,$cnt # last round key 370 lwz r9, 0($out) 371 lwz r10,4($out) 372 lwz r11,8($out) 373 lwz r12,12($out) 374 stw r0, 0($out) 375 stw r6, 4($out) 376 stw r7, 8($out) 377 stw r8, 12($out) 378 subi $out,$out,16 400 my ($inp,$out,$key,$rounds,$idx)=map("r$_",(3..7)); 411 neg r11,$out 454 lvx v1,0,$out # outhead 457 lvx v4,$idx,$out 458 stvx v1,0,$out 460 stvx v0,$idx,$out 475 my ($inp,$out,$len,$key,$ivp,$enc,$rounds,$idx)=map("r$_",(3..10)); 508 ?lvsr $outperm,0,$out # prepare for unaligned store 510 lvx $outhead,0,$out 558 stvx $inout,0,$out 559 addi $out,$out,16 607 stvx $inout,0,$out 608 addi $out,$out,16 612 addi $out,$out,-1 613 lvx $inout,0,$out # redundant in aligned case 615 stvx $inout,0,$out 905 stvx_u $out0,$x00,$out 909 stvx_u $out1,$x10,$out 913 stvx_u $out2,$x20,$out 916 stvx_u $out3,$x30,$out 919 stvx_u $out4,$x40,$out 922 stvx_u $out5,$x50,$out 925 stvx_u $out6,$x60,$out 927 stvx_u $out7,$x70,$out 928 addi $out,$out,0x80 1048 stvx_u $out1,$x00,$out 1050 stvx_u $out2,$x10,$out 1052 stvx_u $out3,$x20,$out 1054 stvx_u $out4,$x30,$out 1056 stvx_u $out5,$x40,$out 1058 stvx_u $out6,$x50,$out 1059 stvx_u $out7,$x60,$out 1060 addi $out,$out,0x70 1075 stvx_u $out2,$x00,$out 1077 stvx_u $out3,$x10,$out 1079 stvx_u $out4,$x20,$out 1081 stvx_u $out5,$x30,$out 1083 stvx_u $out6,$x40,$out 1084 stvx_u $out7,$x50,$out 1085 addi $out,$out,0x60 1099 stvx_u $out3,$x00,$out 1101 stvx_u $out4,$x10,$out 1103 stvx_u $out5,$x20,$out 1105 stvx_u $out6,$x30,$out 1106 stvx_u $out7,$x40,$out 1107 addi $out,$out,0x50 1120 stvx_u $out4,$x00,$out 1122 stvx_u $out5,$x10,$out 1124 stvx_u $out6,$x20,$out 1125 stvx_u $out7,$x30,$out 1126 addi $out,$out,0x40 1138 stvx_u $out5,$x00,$out 1140 stvx_u $out6,$x10,$out 1141 stvx_u $out7,$x20,$out 1142 addi $out,$out,0x30 1153 stvx_u $out6,$x00,$out 1154 stvx_u $out7,$x10,$out 1155 addi $out,$out,0x20 1164 stvx_u $out7,0,$out 1165 addi $out,$out,0x10 1230 my ($inp,$out,$len,$key,$ivp,$x10,$rounds,$idx)=map("r$_",(3..10)); 1273 ?lvsr $outperm,0,$out # prepare for unaligned store 1275 lvx $outhead,0,$out 1327 stvx $dat,0,$out 1328 addi $out,$out,16 1331 addi $out,$out,-1 1332 lvx $inout,0,$out # redundant in aligned case 1334 stvx $inout,0,$out 1624 stvx_u $in0,$x00,$out 1627 stvx_u $in1,$x10,$out 1630 stvx_u $in2,$x20,$out 1633 stvx_u $in3,$x30,$out 1636 stvx_u $in4,$x40,$out 1639 stvx_u $in5,$x50,$out 1642 stvx_u $in6,$x60,$out 1644 stvx_u $in7,$x70,$out 1645 addi $out,$out,0x80 1678 stvx_u $out0,$x00,$out 1680 stvx_u $out1,$x10,$out 1682 stvx_u $out2,$x20,$out 1684 stvx_u $out3,$x30,$out 1686 stvx_u $out4,$x40,$out 1688 stvx_u $out5,$x50,$out 1690 stvx_u $out6,$x60,$out 1691 stvx_u $out7,$x70,$out 1692 addi $out,$out,0x80 1707 stvx_u $out0,$x00,$out 1709 stvx_u $out1,$x10,$out 1711 stvx_u $out2,$x20,$out 1713 stvx_u $out3,$x30,$out 1715 stvx_u $out4,$x40,$out 1717 stvx_u $out5,$x50,$out 1718 stvx_u $out6,$x60,$out 1719 addi $out,$out,0x70 1733 stvx_u $out0,$x00,$out 1735 stvx_u $out1,$x10,$out 1737 stvx_u $out2,$x20,$out 1739 stvx_u $out3,$x30,$out 1741 stvx_u $out4,$x40,$out 1742 stvx_u $out5,$x50,$out 1743 addi $out,$out,0x60 1756 stvx_u $out0,$x00,$out 1758 stvx_u $out1,$x10,$out 1760 stvx_u $out2,$x20,$out 1762 stvx_u $out3,$x30,$out 1763 stvx_u $out4,$x40,$out 1764 addi $out,$out,0x50 1776 stvx_u $out0,$x00,$out 1778 stvx_u $out1,$x10,$out 1780 stvx_u $out2,$x20,$out 1781 stvx_u $out3,$x30,$out 1782 addi $out,$out,0x40 1793 stvx_u $out0,$x00,$out 1795 stvx_u $out1,$x10,$out 1796 stvx_u $out2,$x20,$out 1797 addi $out,$out,0x30 1807 stvx_u $out0,$x00,$out 1808 stvx_u $out1,$x10,$out 1809 addi $out,$out,0x20 1817 stvx_u $out0,0,$out 1818 addi $out,$out,0x10
|
/linux-4.4.14/arch/x86/include/uapi/asm/ |
H A D | mman.h | 4 #define MAP_32BIT 0x40 /* only give out 32bit addresses */
|
/linux-4.4.14/fs/nfs/ |
H A D | nfs4getroot.c | 21 goto out; nfs4_get_rootfh() 27 goto out; nfs4_get_rootfh() 35 goto out; nfs4_get_rootfh() 39 out: nfs4_get_rootfh()
|
H A D | nfs42xdr.c | 318 goto out; nfs4_xdr_dec_allocate() 321 goto out; nfs4_xdr_dec_allocate() 324 goto out; nfs4_xdr_dec_allocate() 327 goto out; nfs4_xdr_dec_allocate() 329 out: nfs4_xdr_dec_allocate() 345 goto out; nfs4_xdr_dec_deallocate() 348 goto out; nfs4_xdr_dec_deallocate() 351 goto out; nfs4_xdr_dec_deallocate() 354 goto out; nfs4_xdr_dec_deallocate() 356 out: nfs4_xdr_dec_deallocate() 372 goto out; nfs4_xdr_dec_seek() 375 goto out; nfs4_xdr_dec_seek() 378 goto out; nfs4_xdr_dec_seek() 380 out: nfs4_xdr_dec_seek() 396 goto out; nfs4_xdr_dec_layoutstats() 399 goto out; nfs4_xdr_dec_layoutstats() 402 goto out; nfs4_xdr_dec_layoutstats() 407 goto out; nfs4_xdr_dec_layoutstats() 409 out: nfs4_xdr_dec_layoutstats() 426 goto out; nfs4_xdr_dec_clone() 429 goto out; nfs4_xdr_dec_clone() 432 goto out; nfs4_xdr_dec_clone() 435 goto out; nfs4_xdr_dec_clone() 438 goto out; nfs4_xdr_dec_clone() 441 goto out; nfs4_xdr_dec_clone() 444 out: nfs4_xdr_dec_clone()
|
/linux-4.4.14/net/sctp/ |
H A D | ssnmap.c | 38 __u16 out); 41 * specific needs of in or out streams. 43 static inline size_t sctp_ssnmap_size(__u16 in, __u16 out) sctp_ssnmap_size() argument 45 return sizeof(struct sctp_ssnmap) + (in + out) * sizeof(__u16); sctp_ssnmap_size() 52 struct sctp_ssnmap *sctp_ssnmap_new(__u16 in, __u16 out, sctp_ssnmap_new() argument 58 size = sctp_ssnmap_size(in, out); sctp_ssnmap_new() 67 if (!sctp_ssnmap_init(retval, in, out)) sctp_ssnmap_new() 86 __u16 out) sctp_ssnmap_init() 88 memset(map, 0x00, sctp_ssnmap_size(in, out)); sctp_ssnmap_init() 94 /* Start 'out' stream just after 'in'. */ sctp_ssnmap_init() 95 map->out.ssn = &map->in.ssn[in]; sctp_ssnmap_init() 96 map->out.len = out; sctp_ssnmap_init() 101 /* Clear out the ssnmap streams. */ sctp_ssnmap_clear() 106 size = (map->in.len + map->out.len) * sizeof(__u16); sctp_ssnmap_clear() 118 size = sctp_ssnmap_size(map->in.len, map->out.len); sctp_ssnmap_free() 85 sctp_ssnmap_init(struct sctp_ssnmap *map, __u16 in, __u16 out) sctp_ssnmap_init() argument
|
/linux-4.4.14/include/net/netfilter/ipv6/ |
H A D | nf_nat_masquerade.h | 6 const struct net_device *out);
|
/linux-4.4.14/include/asm-generic/ |
H A D | user.h | 5 * used for a.out files, which are not supported on new architectures.
|
/linux-4.4.14/arch/s390/pci/ |
H A D | pci_mmio.c | 24 goto out; get_pfn() 27 goto out; get_pfn() 29 out: get_pfn() 57 goto out; SYSCALL_DEFINE3() 62 goto out; SYSCALL_DEFINE3() 65 goto out; SYSCALL_DEFINE3() 68 out: SYSCALL_DEFINE3() 97 goto out; SYSCALL_DEFINE3() 102 goto out; SYSCALL_DEFINE3() 106 goto out; SYSCALL_DEFINE3() 110 out: SYSCALL_DEFINE3()
|
/linux-4.4.14/fs/btrfs/tests/ |
H A D | inode-tests.c | 245 goto out; test_btrfs_get_extent() 255 goto out; test_btrfs_get_extent() 261 goto out; test_btrfs_get_extent() 279 goto out; test_btrfs_get_extent() 283 goto out; test_btrfs_get_extent() 287 goto out; test_btrfs_get_extent() 302 goto out; test_btrfs_get_extent() 306 goto out; test_btrfs_get_extent() 311 goto out; test_btrfs_get_extent() 315 goto out; test_btrfs_get_extent() 323 goto out; test_btrfs_get_extent() 327 goto out; test_btrfs_get_extent() 332 goto out; test_btrfs_get_extent() 336 goto out; test_btrfs_get_extent() 349 goto out; test_btrfs_get_extent() 353 goto out; test_btrfs_get_extent() 358 goto out; test_btrfs_get_extent() 362 goto out; test_btrfs_get_extent() 371 goto out; test_btrfs_get_extent() 375 goto out; test_btrfs_get_extent() 380 goto out; test_btrfs_get_extent() 384 goto out; test_btrfs_get_extent() 389 goto out; test_btrfs_get_extent() 398 goto out; test_btrfs_get_extent() 402 goto out; test_btrfs_get_extent() 407 goto out; test_btrfs_get_extent() 411 goto out; test_btrfs_get_extent() 416 goto out; test_btrfs_get_extent() 426 goto out; test_btrfs_get_extent() 430 goto out; test_btrfs_get_extent() 435 goto out; test_btrfs_get_extent() 439 goto out; test_btrfs_get_extent() 447 goto out; test_btrfs_get_extent() 451 goto out; test_btrfs_get_extent() 456 goto out; test_btrfs_get_extent() 460 goto out; test_btrfs_get_extent() 465 goto out; test_btrfs_get_extent() 471 goto out; test_btrfs_get_extent() 480 goto out; test_btrfs_get_extent() 484 goto out; test_btrfs_get_extent() 489 goto out; test_btrfs_get_extent() 494 goto out; test_btrfs_get_extent() 499 goto out; test_btrfs_get_extent() 508 goto out; test_btrfs_get_extent() 512 goto out; test_btrfs_get_extent() 517 goto out; test_btrfs_get_extent() 522 goto out; test_btrfs_get_extent() 527 goto out; test_btrfs_get_extent() 537 goto out; test_btrfs_get_extent() 541 goto out; test_btrfs_get_extent() 546 goto out; test_btrfs_get_extent() 550 goto out; test_btrfs_get_extent() 555 goto out; test_btrfs_get_extent() 561 goto out; test_btrfs_get_extent() 569 goto out; test_btrfs_get_extent() 573 goto out; test_btrfs_get_extent() 578 goto out; test_btrfs_get_extent() 583 goto out; test_btrfs_get_extent() 588 goto out; test_btrfs_get_extent() 594 goto out; test_btrfs_get_extent() 603 goto out; test_btrfs_get_extent() 607 goto out; test_btrfs_get_extent() 612 goto out; test_btrfs_get_extent() 617 goto out; test_btrfs_get_extent() 622 goto out; test_btrfs_get_extent() 627 goto out; test_btrfs_get_extent() 636 goto out; test_btrfs_get_extent() 640 goto out; test_btrfs_get_extent() 645 goto out; test_btrfs_get_extent() 650 goto out; test_btrfs_get_extent() 655 goto out; test_btrfs_get_extent() 660 goto out; test_btrfs_get_extent() 670 goto out; test_btrfs_get_extent() 674 goto out; test_btrfs_get_extent() 679 goto out; test_btrfs_get_extent() 683 goto out; test_btrfs_get_extent() 688 goto out; test_btrfs_get_extent() 696 goto out; test_btrfs_get_extent() 701 goto out; test_btrfs_get_extent() 706 goto out; test_btrfs_get_extent() 711 goto out; test_btrfs_get_extent() 716 goto out; test_btrfs_get_extent() 721 goto out; test_btrfs_get_extent() 730 goto out; test_btrfs_get_extent() 734 goto out; test_btrfs_get_extent() 739 goto out; test_btrfs_get_extent() 743 goto out; test_btrfs_get_extent() 748 goto out; test_btrfs_get_extent() 756 goto out; test_btrfs_get_extent() 760 goto out; test_btrfs_get_extent() 770 goto out; test_btrfs_get_extent() 775 goto out; test_btrfs_get_extent() 780 goto out; test_btrfs_get_extent() 788 goto out; test_btrfs_get_extent() 792 goto out; test_btrfs_get_extent() 797 goto out; test_btrfs_get_extent() 801 goto out; test_btrfs_get_extent() 806 goto out; test_btrfs_get_extent() 809 out: test_btrfs_get_extent() 837 goto out; test_hole_first() 843 goto out; test_hole_first() 849 goto out; test_hole_first() 868 goto out; test_hole_first() 872 goto out; test_hole_first() 877 goto out; test_hole_first() 882 goto out; test_hole_first() 889 goto out; test_hole_first() 893 goto out; test_hole_first() 898 goto out; test_hole_first() 903 goto out; test_hole_first() 906 out: test_hole_first() 929 goto out; test_extent_accounting() 935 goto out; test_extent_accounting() 947 goto out; test_extent_accounting() 953 goto out; test_extent_accounting() 962 goto out; test_extent_accounting() 968 goto out; test_extent_accounting() 980 goto out; test_extent_accounting() 986 goto out; test_extent_accounting() 996 goto out; test_extent_accounting() 1002 goto out; test_extent_accounting() 1018 goto out; test_extent_accounting() 1024 goto out; test_extent_accounting() 1033 goto out; test_extent_accounting() 1039 goto out; test_extent_accounting() 1051 goto out; test_extent_accounting() 1057 goto out; test_extent_accounting() 1069 goto out; test_extent_accounting() 1075 goto out; test_extent_accounting() 1085 goto out; test_extent_accounting() 1091 goto out; test_extent_accounting() 1094 out: test_extent_accounting()
|
H A D | extent-buffer-tests.c | 60 goto out; test_btrfs_split_item() 84 goto out; test_btrfs_split_item() 96 goto out; test_btrfs_split_item() 103 goto out; test_btrfs_split_item() 113 goto out; test_btrfs_split_item() 121 goto out; test_btrfs_split_item() 128 goto out; test_btrfs_split_item() 137 goto out; test_btrfs_split_item() 145 goto out; test_btrfs_split_item() 153 goto out; test_btrfs_split_item() 160 goto out; test_btrfs_split_item() 169 goto out; test_btrfs_split_item() 177 goto out; test_btrfs_split_item() 184 goto out; test_btrfs_split_item() 193 goto out; test_btrfs_split_item() 201 goto out; test_btrfs_split_item() 208 goto out; test_btrfs_split_item() 217 goto out; test_btrfs_split_item() 219 out: test_btrfs_split_item()
|
/linux-4.4.14/drivers/media/pci/solo6x10/ |
H A D | solo6x10-core.c | 252 char *out = buf; input_map_show() local 255 out += sprintf(out, "Channel 0 => Input %d\n", val & 0x1f); input_map_show() 256 out += sprintf(out, "Channel 1 => Input %d\n", (val >> 5) & 0x1f); input_map_show() 257 out += sprintf(out, "Channel 2 => Input %d\n", (val >> 10) & 0x1f); input_map_show() 258 out += sprintf(out, "Channel 3 => Input %d\n", (val >> 15) & 0x1f); input_map_show() 259 out += sprintf(out, "Channel 4 => Input %d\n", (val >> 20) & 0x1f); input_map_show() 260 out += sprintf(out, "Channel 5 => Input %d\n", (val >> 25) & 0x1f); input_map_show() 263 out += sprintf(out, "Channel 6 => Input %d\n", val & 0x1f); input_map_show() 264 out += sprintf(out, "Channel 7 => Input %d\n", (val >> 5) & 0x1f); input_map_show() 265 out += sprintf(out, "Channel 8 => Input %d\n", (val >> 10) & 0x1f); input_map_show() 266 out += sprintf(out, "Channel 9 => Input %d\n", (val >> 15) & 0x1f); input_map_show() 267 out += sprintf(out, "Channel 10 => Input %d\n", (val >> 20) & 0x1f); input_map_show() 268 out += sprintf(out, "Channel 11 => Input %d\n", (val >> 25) & 0x1f); input_map_show() 271 out += sprintf(out, "Channel 12 => Input %d\n", val & 0x1f); input_map_show() 272 out += sprintf(out, "Channel 13 => Input %d\n", (val >> 5) & 0x1f); input_map_show() 273 out += sprintf(out, "Channel 14 => Input %d\n", (val >> 10) & 0x1f); input_map_show() 274 out += sprintf(out, "Channel 15 => Input %d\n", (val >> 15) & 0x1f); input_map_show() 275 out += sprintf(out, "Spot Output => Input %d\n", (val >> 20) & 0x1f); input_map_show() 277 return out - buf; input_map_show() 312 char *out = buf; intervals_show() local 317 out += sprintf(out, "Channel %d: %d/%d (0x%08x)\n", intervals_show() 322 return out - buf; intervals_show() 331 char *out = buf; sdram_offsets_show() local 333 out += sprintf(out, "DISP: 0x%08x @ 0x%08x\n", sdram_offsets_show() 337 out += sprintf(out, "EOSD: 0x%08x @ 0x%08x (0x%08x * %d)\n", sdram_offsets_show() 344 out += sprintf(out, "MOTI: 0x%08x @ 0x%08x\n", sdram_offsets_show() 348 out += sprintf(out, "G723: 0x%08x @ 0x%08x\n", sdram_offsets_show() 352 out += sprintf(out, "CAPT: 0x%08x @ 0x%08x (0x%08x * %d)\n", sdram_offsets_show() 358 out += sprintf(out, "EREF: 0x%08x @ 0x%08x (0x%08x * %d)\n", sdram_offsets_show() 364 out += sprintf(out, "MPEG: 0x%08x @ 0x%08x\n", sdram_offsets_show() 368 out += sprintf(out, "JPEG: 0x%08x @ 0x%08x\n", sdram_offsets_show() 372 return out - buf; sdram_offsets_show()
|
/linux-4.4.14/drivers/net/wireless/ti/wl18xx/ |
H A D | io.c | 38 goto out; wl18xx_top_reg_write() 45 goto out; wl18xx_top_reg_write() 51 out: wl18xx_top_reg_write() 55 int wl18xx_top_reg_read(struct wl1271 *wl, int addr, u16 *out) wl18xx_top_reg_read() argument 66 if (ret >= 0 && out) wl18xx_top_reg_read() 67 *out = val & 0xffff; wl18xx_top_reg_read() 70 if (ret >= 0 && out) wl18xx_top_reg_read() 71 *out = (val & 0xffff0000) >> 16; wl18xx_top_reg_read()
|
H A D | acx.c | 43 goto out; wl18xx_acx_host_if_cfg_bitmap() 55 goto out; wl18xx_acx_host_if_cfg_bitmap() 58 out: wl18xx_acx_host_if_cfg_bitmap() 74 goto out; wl18xx_acx_set_checksum_state() 82 goto out; wl18xx_acx_set_checksum_state() 85 out: wl18xx_acx_set_checksum_state() 100 goto out; wl18xx_acx_clear_statistics() 106 goto out; wl18xx_acx_clear_statistics() 109 out: wl18xx_acx_clear_statistics() 125 goto out; wl18xx_acx_peer_ht_operation_mode() 136 goto out; wl18xx_acx_peer_ht_operation_mode() 139 out: wl18xx_acx_peer_ht_operation_mode() 166 goto out; wl18xx_acx_set_peer_cap() 191 goto out; wl18xx_acx_set_peer_cap() 194 out: wl18xx_acx_set_peer_cap() 212 goto out; wl18xx_acx_interrupt_notify_config() 219 goto out; wl18xx_acx_interrupt_notify_config() 222 out: wl18xx_acx_interrupt_notify_config() 239 goto out; wl18xx_acx_rx_ba_filter() 247 goto out; wl18xx_acx_rx_ba_filter() 250 out: wl18xx_acx_rx_ba_filter() 267 goto out; wl18xx_acx_ap_sleep() 278 goto out; wl18xx_acx_ap_sleep() 281 out: wl18xx_acx_ap_sleep() 297 goto out; wl18xx_acx_dynamic_fw_traces() 306 goto out; wl18xx_acx_dynamic_fw_traces() 308 out: wl18xx_acx_dynamic_fw_traces()
|
/linux-4.4.14/sound/soc/spear/ |
H A D | Makefile | 4 snd-soc-spear-spdif-out-objs := spdif_out.o 8 obj-$(CONFIG_SND_SPEAR_SPDIF_OUT) += snd-soc-spear-spdif-out.o
|
/linux-4.4.14/drivers/net/wireless/ti/wlcore/ |
H A D | acx.c | 49 goto out; wl1271_acx_wake_up_conditions() 60 goto out; wl1271_acx_wake_up_conditions() 63 out: wl1271_acx_wake_up_conditions() 78 goto out; wl1271_acx_sleep_auth() 87 goto out; wl1271_acx_sleep_auth() 91 out: wl1271_acx_sleep_auth() 111 goto out; wl1271_acx_tx_power() 120 goto out; wl1271_acx_tx_power() 123 out: wl1271_acx_tx_power() 138 goto out; wl1271_acx_feature_cfg() 150 goto out; wl1271_acx_feature_cfg() 153 out: wl1271_acx_feature_cfg() 183 goto out; wl1271_acx_rx_msdu_life_time() 191 goto out; wl1271_acx_rx_msdu_life_time() 194 out: wl1271_acx_rx_msdu_life_time() 210 goto out; wl1271_acx_slot() 220 goto out; wl1271_acx_slot() 223 out: wl1271_acx_slot() 239 goto out; wl1271_acx_group_address_tbl() 252 goto out; wl1271_acx_group_address_tbl() 255 out: wl1271_acx_group_address_tbl() 269 goto out; wl1271_acx_service_period_timeout() 283 goto out; wl1271_acx_service_period_timeout() 286 out: wl1271_acx_service_period_timeout() 298 * If the RTS threshold is not configured or out of range, use the wl1271_acx_rts_threshold() 309 goto out; wl1271_acx_rts_threshold() 318 goto out; wl1271_acx_rts_threshold() 321 out: wl1271_acx_rts_threshold() 337 goto out; wl1271_acx_dco_itrim_params() 347 goto out; wl1271_acx_dco_itrim_params() 350 out: wl1271_acx_dco_itrim_params() 366 goto out; wl1271_acx_beacon_filter_opt() 371 goto out; wl1271_acx_beacon_filter_opt() 387 goto out; wl1271_acx_beacon_filter_opt() 390 out: wl1271_acx_beacon_filter_opt() 408 goto out; wl1271_acx_beacon_filter_table() 443 goto out; wl1271_acx_beacon_filter_table() 446 out: wl1271_acx_beacon_filter_table() 467 goto out; wl1271_acx_conn_monit_params() 484 goto out; wl1271_acx_conn_monit_params() 487 out: wl1271_acx_conn_monit_params() 503 goto out; wl1271_acx_sg_enable() 514 goto out; wl1271_acx_sg_enable() 517 out: wl1271_acx_sg_enable() 533 goto out; wl12xx_acx_sg_cfg() 544 goto out; wl12xx_acx_sg_cfg() 547 out: wl12xx_acx_sg_cfg() 562 goto out; wl1271_acx_cca_threshold() 573 out: wl1271_acx_cca_threshold() 588 goto out; wl1271_acx_bcn_dtim_options() 600 goto out; wl1271_acx_bcn_dtim_options() 603 out: wl1271_acx_bcn_dtim_options() 618 goto out; wl1271_acx_aid() 627 goto out; wl1271_acx_aid() 630 out: wl1271_acx_aid() 645 goto out; wl1271_acx_event_mbox_mask() 656 goto out; wl1271_acx_event_mbox_mask() 659 out: wl1271_acx_event_mbox_mask() 675 goto out; wl1271_acx_set_preamble() 684 goto out; wl1271_acx_set_preamble() 687 out: wl1271_acx_set_preamble() 703 goto out; wl1271_acx_cts_protect() 712 goto out; wl1271_acx_cts_protect() 715 out: wl1271_acx_cts_protect() 749 goto out; wl1271_acx_sta_rate_policies() 765 goto out; wl1271_acx_sta_rate_policies() 781 goto out; wl1271_acx_sta_rate_policies() 786 * (p2p packets should always go out with OFDM rates, even wl1271_acx_sta_rate_policies() 799 goto out; wl1271_acx_sta_rate_policies() 802 out: wl1271_acx_sta_rate_policies() 819 goto out; wl1271_acx_ap_rate_policy() 832 goto out; wl1271_acx_ap_rate_policy() 835 out: wl1271_acx_ap_rate_policy() 853 goto out; wl1271_acx_ac_cfg() 866 goto out; wl1271_acx_ac_cfg() 869 out: wl1271_acx_ac_cfg() 888 goto out; wl1271_acx_tid_cfg() 903 goto out; wl1271_acx_tid_cfg() 906 out: wl1271_acx_tid_cfg() 917 * If the fragmentation is not configured or out of range, use the wl1271_acx_frag_threshold() 929 goto out; wl1271_acx_frag_threshold() 936 goto out; wl1271_acx_frag_threshold() 939 out: wl1271_acx_frag_threshold() 955 goto out; wl1271_acx_tx_config_options() 963 goto out; wl1271_acx_tx_config_options() 966 out: wl1271_acx_tx_config_options() 982 goto out; wl12xx_acx_mem_cfg() 1003 goto out; wl12xx_acx_mem_cfg() 1006 out: wl12xx_acx_mem_cfg() 1053 goto out; wl1271_acx_init_rx_interrupt() 1065 goto out; wl1271_acx_init_rx_interrupt() 1068 out: wl1271_acx_init_rx_interrupt() 1082 goto out; wl1271_acx_bet_enable() 1087 goto out; wl1271_acx_bet_enable() 1097 goto out; wl1271_acx_bet_enable() 1100 out: wl1271_acx_bet_enable() 1116 goto out; wl1271_acx_arp_ip_filter() 1130 goto out; wl1271_acx_arp_ip_filter() 1133 out: wl1271_acx_arp_ip_filter() 1149 goto out; wl1271_acx_pm_config() 1158 goto out; wl1271_acx_pm_config() 1161 out: wl1271_acx_pm_config() 1178 goto out; wl1271_acx_keep_alive_mode() 1187 goto out; wl1271_acx_keep_alive_mode() 1190 out: wl1271_acx_keep_alive_mode() 1206 goto out; wl1271_acx_keep_alive_config() 1219 goto out; wl1271_acx_keep_alive_config() 1222 out: wl1271_acx_keep_alive_config() 1238 goto out; wl1271_acx_rssi_snr_trigger() 1260 goto out; wl1271_acx_rssi_snr_trigger() 1263 out: wl1271_acx_rssi_snr_trigger() 1280 goto out; wl1271_acx_rssi_snr_avg_weights() 1292 goto out; wl1271_acx_rssi_snr_avg_weights() 1295 out: wl1271_acx_rssi_snr_avg_weights() 1315 goto out; wl1271_acx_set_ht_capabilities() 1339 goto out; wl1271_acx_set_ht_capabilities() 1342 out: wl1271_acx_set_ht_capabilities() 1361 goto out; wl1271_acx_set_ht_information() 1377 goto out; wl1271_acx_set_ht_information() 1380 out: wl1271_acx_set_ht_information() 1397 goto out; wl12xx_acx_set_ba_initiator_policy() 1412 goto out; wl12xx_acx_set_ba_initiator_policy() 1415 out: wl12xx_acx_set_ba_initiator_policy() 1432 goto out; wl12xx_acx_set_ba_receiver_session() 1446 goto out; wl12xx_acx_set_ba_receiver_session() 1453 goto out; wl12xx_acx_set_ba_receiver_session() 1457 out: wl12xx_acx_set_ba_receiver_session() 1471 goto out; wl12xx_acx_tsf_info() 1480 goto out; wl12xx_acx_tsf_info() 1486 out: wl12xx_acx_tsf_info() 1503 goto out; wl1271_acx_ps_rx_streaming() 1532 goto out; wl1271_acx_ps_rx_streaming() 1535 out: wl1271_acx_ps_rx_streaming() 1557 goto out; wl1271_acx_ap_max_tx_retry() 1560 out: wl1271_acx_ap_max_tx_retry() 1575 goto out; wl12xx_acx_config_ps() 1587 goto out; wl12xx_acx_config_ps() 1590 out: wl12xx_acx_config_ps() 1614 goto out; wl1271_acx_set_inconnection_sta() 1617 out: wl1271_acx_set_inconnection_sta() 1632 goto out; wl1271_acx_fm_coex() 1654 goto out; wl1271_acx_fm_coex() 1657 out: wl1271_acx_fm_coex() 1696 goto out; wl12xx_acx_set_rate_mgmt_params() 1699 out: wl12xx_acx_set_rate_mgmt_params() 1715 goto out; wl12xx_acx_config_hangover() 1735 goto out; wl12xx_acx_config_hangover() 1738 out: wl12xx_acx_config_hangover() 1755 goto out; wlcore_acx_average_rssi() 1764 goto out; wlcore_acx_average_rssi() 1768 out: wlcore_acx_average_rssi() 1795 goto out; wl1271_acx_default_rx_filter_enable() 1798 out: wl1271_acx_default_rx_filter_enable() 1846 goto out; wl1271_acx_set_rx_filter() 1849 out: wl1271_acx_set_rx_filter()
|
H A D | vendor_cmd.c | 55 goto out; wlcore_vendor_cmd_smart_config_start() 60 goto out; wlcore_vendor_cmd_smart_config_start() 66 out: wlcore_vendor_cmd_smart_config_start() 87 goto out; wlcore_vendor_cmd_smart_config_stop() 92 goto out; wlcore_vendor_cmd_smart_config_stop() 97 out: wlcore_vendor_cmd_smart_config_stop() 131 goto out; wlcore_vendor_cmd_smart_config_set_group_key() 136 goto out; wlcore_vendor_cmd_smart_config_set_group_key() 144 out: wlcore_vendor_cmd_smart_config_set_group_key()
|
/linux-4.4.14/crypto/ |
H A D | scatterwalk.c | 25 static inline void memcpy_dir(void *buf, void *sgdata, size_t nbytes, int out) memcpy_dir() argument 27 void *src = out ? buf : sgdata; memcpy_dir() 28 void *dst = out ? sgdata : buf; memcpy_dir() 50 static void scatterwalk_pagedone(struct scatter_walk *walk, int out, scatterwalk_pagedone() argument 53 if (out) { scatterwalk_pagedone() 73 void scatterwalk_done(struct scatter_walk *walk, int out, int more) scatterwalk_done() argument 76 scatterwalk_pagedone(walk, out, more); scatterwalk_done() 81 size_t nbytes, int out) scatterwalk_copychunks() 91 memcpy_dir(buf, vaddr, len_this_page, out); scatterwalk_copychunks() 102 scatterwalk_pagedone(walk, out, 1); scatterwalk_copychunks() 108 unsigned int start, unsigned int nbytes, int out) scatterwalk_map_and_copy() 123 scatterwalk_copychunks(buf, &walk, nbytes, out); scatterwalk_map_and_copy() 124 scatterwalk_done(&walk, out, 0); scatterwalk_map_and_copy() 80 scatterwalk_copychunks(void *buf, struct scatter_walk *walk, size_t nbytes, int out) scatterwalk_copychunks() argument 107 scatterwalk_map_and_copy(void *buf, struct scatterlist *sg, unsigned int start, unsigned int nbytes, int out) scatterwalk_map_and_copy() argument
|
H A D | deflate.c | 54 goto out; deflate_comp_init() 63 out: deflate_comp_init() 67 goto out; deflate_comp_init() 78 goto out; deflate_decomp_init() 85 out: deflate_decomp_init() 89 goto out; deflate_decomp_init() 111 goto out; deflate_init() 115 out: deflate_init() 137 goto out; deflate_compress() 148 goto out; deflate_compress() 152 out: deflate_compress() 167 goto out; deflate_decompress() 189 goto out; deflate_decompress() 193 out: deflate_decompress()
|
H A D | shash.c | 112 static int shash_final_unaligned(struct shash_desc *desc, u8 *out) shash_final_unaligned() argument 125 goto out; shash_final_unaligned() 127 memcpy(out, buf, ds); shash_final_unaligned() 129 out: shash_final_unaligned() 134 int crypto_shash_final(struct shash_desc *desc, u8 *out) crypto_shash_final() argument 140 if ((unsigned long)out & alignmask) crypto_shash_final() 141 return shash_final_unaligned(desc, out); crypto_shash_final() 143 return shash->final(desc, out); crypto_shash_final() 148 unsigned int len, u8 *out) shash_finup_unaligned() 151 crypto_shash_final(desc, out); shash_finup_unaligned() 155 unsigned int len, u8 *out) crypto_shash_finup() 161 if (((unsigned long)data | (unsigned long)out) & alignmask) crypto_shash_finup() 162 return shash_finup_unaligned(desc, data, len, out); crypto_shash_finup() 164 return shash->finup(desc, data, len, out); crypto_shash_finup() 169 unsigned int len, u8 *out) shash_digest_unaligned() 172 crypto_shash_finup(desc, data, len, out); shash_digest_unaligned() 176 unsigned int len, u8 *out) crypto_shash_digest() 182 if (((unsigned long)data | (unsigned long)out) & alignmask) crypto_shash_digest() 183 return shash_digest_unaligned(desc, data, len, out); crypto_shash_digest() 185 return shash->digest(desc, data, len, out); crypto_shash_digest() 189 static int shash_default_export(struct shash_desc *desc, void *out) shash_default_export() argument 191 memcpy(out, shash_desc_ctx(desc), crypto_shash_descsize(desc->tfm)); shash_default_export() 309 static int shash_async_export(struct ahash_request *req, void *out) shash_async_export() argument 311 return crypto_shash_export(ahash_request_ctx(req), out); shash_async_export() 405 static int shash_compat_final(struct hash_desc *hdesc, u8 *out) shash_compat_final() argument 409 return crypto_shash_final(*descp, out); shash_compat_final() 413 unsigned int nbytes, u8 *out) shash_compat_digest() 426 err = crypto_shash_digest(desc, data + offset, nbytes, out); shash_compat_digest() 429 goto out; shash_compat_digest() 434 goto out; shash_compat_digest() 438 goto out; shash_compat_digest() 440 err = shash_compat_final(hdesc, out); shash_compat_digest() 442 out: shash_compat_digest() 147 shash_finup_unaligned(struct shash_desc *desc, const u8 *data, unsigned int len, u8 *out) shash_finup_unaligned() argument 154 crypto_shash_finup(struct shash_desc *desc, const u8 *data, unsigned int len, u8 *out) crypto_shash_finup() argument 168 shash_digest_unaligned(struct shash_desc *desc, const u8 *data, unsigned int len, u8 *out) shash_digest_unaligned() argument 175 crypto_shash_digest(struct shash_desc *desc, const u8 *data, unsigned int len, u8 *out) crypto_shash_digest() argument 412 shash_compat_digest(struct hash_desc *hdesc, struct scatterlist *sg, unsigned int nbytes, u8 *out) shash_compat_digest() argument
|
H A D | crc32.c | 97 u8 *out) __crc32_finup() 99 *(__le32 *)out = cpu_to_le32(__crc32_le(*crcp, data, len)); __crc32_finup() 104 unsigned int len, u8 *out) crc32_finup() 106 return __crc32_finup(shash_desc_ctx(desc), data, len, out); crc32_finup() 109 static int crc32_final(struct shash_desc *desc, u8 *out) crc32_final() argument 113 *(__le32 *)out = cpu_to_le32p(crcp); crc32_final() 118 unsigned int len, u8 *out) crc32_digest() 121 out); crc32_digest() 96 __crc32_finup(u32 *crcp, const u8 *data, unsigned int len, u8 *out) __crc32_finup() argument 103 crc32_finup(struct shash_desc *desc, const u8 *data, unsigned int len, u8 *out) crc32_finup() argument 117 crc32_digest(struct shash_desc *desc, const u8 *data, unsigned int len, u8 *out) crc32_digest() argument
|
H A D | crct10dif_generic.c | 60 static int chksum_final(struct shash_desc *desc, u8 *out) chksum_final() argument 64 *(__u16 *)out = ctx->crc; chksum_final() 69 u8 *out) __chksum_finup() 71 *(__u16 *)out = crc_t10dif_generic(*crcp, data, len); __chksum_finup() 76 unsigned int len, u8 *out) chksum_finup() 80 return __chksum_finup(&ctx->crc, data, len, out); chksum_finup() 84 unsigned int length, u8 *out) chksum_digest() 88 return __chksum_finup(&ctx->crc, data, length, out); chksum_digest() 68 __chksum_finup(__u16 *crcp, const u8 *data, unsigned int len, u8 *out) __chksum_finup() argument 75 chksum_finup(struct shash_desc *desc, const u8 *data, unsigned int len, u8 *out) chksum_finup() argument 83 chksum_digest(struct shash_desc *desc, const u8 *data, unsigned int length, u8 *out) chksum_digest() argument
|
H A D | tea.c | 68 __le32 *out = (__le32 *)dst; tea_encrypt() local 86 out[0] = cpu_to_le32(y); tea_encrypt() 87 out[1] = cpu_to_le32(z); tea_encrypt() 96 __le32 *out = (__le32 *)dst; tea_decrypt() local 116 out[0] = cpu_to_le32(y); tea_decrypt() 117 out[1] = cpu_to_le32(z); tea_decrypt() 141 __le32 *out = (__le32 *)dst; xtea_encrypt() local 152 out[0] = cpu_to_le32(y); xtea_encrypt() 153 out[1] = cpu_to_le32(z); xtea_encrypt() 161 __le32 *out = (__le32 *)dst; xtea_decrypt() local 174 out[0] = cpu_to_le32(y); xtea_decrypt() 175 out[1] = cpu_to_le32(z); xtea_decrypt() 185 __le32 *out = (__le32 *)dst; xeta_encrypt() local 196 out[0] = cpu_to_le32(y); xeta_encrypt() 197 out[1] = cpu_to_le32(z); xeta_encrypt() 205 __le32 *out = (__le32 *)dst; xeta_decrypt() local 218 out[0] = cpu_to_le32(y); xeta_decrypt() 219 out[1] = cpu_to_le32(z); xeta_decrypt()
|
H A D | sha1_generic.c | 48 static int sha1_final(struct shash_desc *desc, u8 *out) sha1_final() argument 51 return sha1_base_finish(desc, out); sha1_final() 55 unsigned int len, u8 *out) crypto_sha1_finup() 58 return sha1_final(desc, out); crypto_sha1_finup() 54 crypto_sha1_finup(struct shash_desc *desc, const u8 *data, unsigned int len, u8 *out) crypto_sha1_finup() argument
|
/linux-4.4.14/scripts/kconfig/ |
H A D | zconf.y | 591 static void print_quoted_string(FILE *out, const char *str) 596 putc('"', out); 600 fprintf(out, "%.*s", len, str); 601 fputs("\\\"", out); 604 fputs(str, out); 605 putc('"', out); 608 static void print_symbol(FILE *out, struct menu *menu) 614 fprintf(out, "\nchoice\n"); 616 fprintf(out, "\nconfig %s\n", sym->name); 619 fputs(" boolean\n", out); 622 fputs(" tristate\n", out); 625 fputs(" string\n", out); 628 fputs(" integer\n", out); 631 fputs(" hex\n", out); 634 fputs(" ???\n", out); 642 fputs(" prompt ", out); 643 print_quoted_string(out, prop->text); 645 fputs(" if ", out); 646 expr_fprint(prop->visible.expr, out); 648 fputc('\n', out); 651 fputs( " default ", out); 652 expr_fprint(prop->expr, out); 654 fputs(" if ", out); 655 expr_fprint(prop->visible.expr, out); 657 fputc('\n', out); 660 fputs(" #choice value\n", out); 663 fputs( " select ", out); 664 expr_fprint(prop->expr, out); 665 fputc('\n', out); 668 fputs( " range ", out); 669 expr_fprint(prop->expr, out); 670 fputc('\n', out); 673 fputs( " menu ", out); 674 print_quoted_string(out, prop->text); 675 fputc('\n', out); 678 fprintf(out, " unknown prop %d!\n", prop->type); 686 fprintf(out, " help\n%s\n", menu->help); 690 void zconfdump(FILE *out) 699 print_symbol(out, menu); 703 fputs("\ncomment ", out); 704 print_quoted_string(out, prop->text); 705 fputs("\n", out); 708 fputs("\nmenu ", out); 709 print_quoted_string(out, prop->text); 710 fputs("\n", out); 716 fputs(" depends ", out); 717 expr_fprint(prop->visible.expr, out); 718 fputc('\n', out); 728 fputs("\nendmenu\n", out);
|
H A D | util.c | 40 FILE *out; file_write_dep() local 44 out = fopen("..config.tmp", "w"); file_write_dep() 45 if (!out) file_write_dep() 47 fprintf(out, "deps_config := \\\n"); file_write_dep() 50 fprintf(out, "\t%s \\\n", file->name); file_write_dep() 52 fprintf(out, "\t%s\n", file->name); file_write_dep() 54 fprintf(out, "\n%s: \\\n" file_write_dep() 68 fprintf(out, "ifneq \"$(%s)\" \"%s\"\n", env_sym->name, value); expr_list_for_each_sym() 69 fprintf(out, "%s: FORCE\n", conf_get_autoconfig_name()); expr_list_for_each_sym() 70 fprintf(out, "endif\n"); expr_list_for_each_sym() 73 fprintf(out, "\n$(deps_config): ;\n"); 74 fclose(out);
|
/linux-4.4.14/fs/hfs/ |
H A D | trans.c | 33 int hfs_mac2asc(struct super_block *sb, char *out, const struct hfs_name *in) hfs_mac2asc() argument 45 dst = out; hfs_mac2asc() 68 goto out; hfs_mac2asc() 81 out: hfs_mac2asc() 82 return dst - out; hfs_mac2asc() 97 void hfs_asc2mac(struct super_block *sb, struct hfs_name *out, struct qstr *in) hfs_asc2mac() argument 107 dst = out->name; hfs_asc2mac() 126 goto out; hfs_asc2mac() 145 out: hfs_asc2mac() 146 out->len = dst - (char *)out->name; hfs_asc2mac() 147 dstlen = HFS_NAMELEN - out->len; hfs_asc2mac()
|
H A D | dir.c | 74 goto out; hfs_readdir() 79 goto out; hfs_readdir() 85 goto out; hfs_readdir() 92 goto out; hfs_readdir() 97 // goto out; hfs_readdir() 101 goto out; hfs_readdir() 105 goto out; hfs_readdir() 108 goto out; hfs_readdir() 114 goto out; hfs_readdir() 119 goto out; hfs_readdir() 129 goto out; hfs_readdir() 138 goto out; hfs_readdir() 146 goto out; hfs_readdir() 150 goto out; hfs_readdir() 153 goto out; hfs_readdir() 160 goto out; hfs_readdir() 167 out: hfs_readdir()
|
/linux-4.4.14/net/ipv6/ |
H A D | exthdrs_offload.c | 29 goto out; ipv6_exthdrs_offload_init() 35 out: ipv6_exthdrs_offload_init() 40 goto out; ipv6_exthdrs_offload_init()
|
H A D | ip6_icmp.c | 41 goto out; icmpv6_send() 43 out: icmpv6_send()
|
/linux-4.4.14/lib/zlib_inflate/ |
H A D | inffast.c | 52 Decode literal, length, and distance codes and write out the resulting 69 LEN -- ran out of enough output space or enough available input 93 unsigned char *out; /* local strm->next_out */ inflate_fast() local 95 unsigned char *end; /* while out < end, enough space available */ inflate_fast() 120 out = strm->next_out - OFF; inflate_fast() 121 beg = out - (start - strm->avail_out); inflate_fast() 122 end = out + (strm->avail_out - 257); inflate_fast() 153 PUP(out) = (unsigned char)(this.val); inflate_fast() 200 op = (unsigned)(out - beg); /* max distance in output */ inflate_fast() 214 PUP(out) = PUP(from); inflate_fast() 216 from = out - dist; /* rest from output */ inflate_fast() 225 PUP(out) = PUP(from); inflate_fast() 232 PUP(out) = PUP(from); inflate_fast() 234 from = out - dist; /* rest from output */ inflate_fast() 243 PUP(out) = PUP(from); inflate_fast() 245 from = out - dist; /* rest from output */ inflate_fast() 249 PUP(out) = PUP(from); inflate_fast() 250 PUP(out) = PUP(from); inflate_fast() 251 PUP(out) = PUP(from); inflate_fast() 255 PUP(out) = PUP(from); inflate_fast() 257 PUP(out) = PUP(from); inflate_fast() 264 from = out - dist; /* copy direct from output */ inflate_fast() 266 /* Align out addr */ inflate_fast() 267 if (!((long)(out - 1 + OFF) & 1)) { inflate_fast() 268 PUP(out) = PUP(from); inflate_fast() 271 sout = (unsigned short *)(out - OFF); inflate_fast() 284 out = (unsigned char *)sout + OFF; inflate_fast() 301 out = (unsigned char *)sout + OFF; inflate_fast() 304 PUP(out) = PUP(from); inflate_fast() 330 } while (in < last && out < end); inflate_fast() 340 strm->next_out = out + OFF; inflate_fast() 342 strm->avail_out = (unsigned)(out < end ? inflate_fast() 343 257 + (end - out) : 257 - (out - end)); inflate_fast() 350 inflate_fast() speedups that turned out slower (on a PowerPC G3 750CXe):
|
/linux-4.4.14/drivers/target/iscsi/ |
H A D | iscsi_target_auth.c | 87 goto out; chap_check_algorithm() 91 goto out; chap_check_algorithm() 96 goto out; chap_check_algorithm() 104 out: chap_check_algorithm() 204 goto out; chap_server_compute_md5() 210 goto out; chap_server_compute_md5() 218 goto out; chap_server_compute_md5() 222 goto out; chap_server_compute_md5() 229 goto out; chap_server_compute_md5() 238 goto out; chap_server_compute_md5() 242 goto out; chap_server_compute_md5() 251 goto out; chap_server_compute_md5() 260 goto out; chap_server_compute_md5() 268 goto out; chap_server_compute_md5() 276 goto out; chap_server_compute_md5() 284 goto out; chap_server_compute_md5() 291 goto out; chap_server_compute_md5() 300 goto out; chap_server_compute_md5() 318 goto out; chap_server_compute_md5() 328 goto out; chap_server_compute_md5() 332 goto out; chap_server_compute_md5() 344 goto out; chap_server_compute_md5() 349 goto out; chap_server_compute_md5() 356 goto out; chap_server_compute_md5() 360 goto out; chap_server_compute_md5() 370 goto out; chap_server_compute_md5() 378 goto out; chap_server_compute_md5() 387 goto out; chap_server_compute_md5() 397 goto out; chap_server_compute_md5() 407 goto out; chap_server_compute_md5() 417 goto out; chap_server_compute_md5() 424 goto out; chap_server_compute_md5() 442 out: chap_server_compute_md5()
|
/linux-4.4.14/drivers/staging/dgnc/ |
H A D | dgnc_utils.c | 11 * Returns 0 if timed out, !0 (showing signal) if interrupted by a signal.
|
/linux-4.4.14/drivers/net/wireless/ti/wl1251/ |
H A D | acx.c | 32 goto out; wl1251_acx_frame_rates() 35 out: wl1251_acx_frame_rates() 78 goto out; wl1251_acx_default_key() 83 out: wl1251_acx_default_key() 107 goto out; wl1251_acx_wake_up_conditions() 110 out: wl1251_acx_wake_up_conditions() 148 goto out; wl1251_acx_fw_version() 161 out: wl1251_acx_fw_version() 185 goto out; wl1251_acx_tx_power() 188 out: wl1251_acx_tx_power() 212 goto out; wl1251_acx_feature_cfg() 215 out: wl1251_acx_feature_cfg() 261 goto out; wl1251_acx_data_path_params() 269 goto out; wl1251_acx_data_path_params() 273 goto out; wl1251_acx_data_path_params() 276 out: wl1251_acx_data_path_params() 297 goto out; wl1251_acx_rx_msdu_life_time() 300 out: wl1251_acx_rx_msdu_life_time() 323 goto out; wl1251_acx_rx_config() 326 out: wl1251_acx_rx_config() 347 goto out; wl1251_acx_pd_threshold() 350 out: wl1251_acx_pd_threshold() 372 goto out; wl1251_acx_slot() 375 out: wl1251_acx_slot() 401 goto out; wl1251_acx_group_address_tbl() 404 out: wl1251_acx_group_address_tbl() 428 goto out; wl1251_acx_service_period_timeout() 431 out: wl1251_acx_service_period_timeout() 452 goto out; wl1251_acx_rts_threshold() 455 out: wl1251_acx_rts_threshold() 478 goto out; wl1251_acx_beacon_filter_opt() 481 out: wl1251_acx_beacon_filter_opt() 507 goto out; wl1251_acx_beacon_filter_table() 510 out: wl1251_acx_beacon_filter_table() 534 goto out; wl1251_acx_conn_monit_params() 537 out: wl1251_acx_conn_monit_params() 558 goto out; wl1251_acx_sg_enable() 561 out: wl1251_acx_sg_enable() 610 goto out; wl1251_acx_sg_cfg() 613 out: wl1251_acx_sg_cfg() 660 goto out; wl1251_acx_bcn_dtim_options() 663 out: wl1251_acx_bcn_dtim_options() 684 goto out; wl1251_acx_aid() 687 out: wl1251_acx_aid() 712 goto out; wl1251_acx_event_mbox_mask() 715 out: wl1251_acx_event_mbox_mask() 761 goto out; wl1251_acx_set_preamble() 764 out: wl1251_acx_set_preamble() 786 goto out; wl1251_acx_cts_protect() 789 out: wl1251_acx_cts_protect() 807 goto out; wl1251_acx_tsf_info() 813 out: wl1251_acx_tsf_info() 861 goto out; wl1251_acx_rate_policies() 864 out: wl1251_acx_rate_policies() 906 goto out; wl1251_acx_mem_cfg() 909 out: wl1251_acx_mem_cfg() 932 goto out; wl1251_acx_wr_tbtt_and_dtim() 935 out: wl1251_acx_wr_tbtt_and_dtim() 958 goto out; wl1251_acx_bet_enable() 961 out: wl1251_acx_bet_enable() 1014 goto out; wl1251_acx_ac_cfg() 1017 out: wl1251_acx_ac_cfg() 1047 goto out; wl1251_acx_tid_cfg() 1050 out: wl1251_acx_tid_cfg()
|
H A D | cmd.c | 45 goto out; wl1251_cmd_send() 56 out: wl1251_cmd_send() 124 goto out; wl1251_cmd_interrogate() 135 out: wl1251_cmd_interrogate() 179 goto out; wl1251_cmd_vbm() 198 goto out; wl1251_cmd_vbm() 201 out: wl1251_cmd_vbm() 217 goto out; wl1251_cmd_data_path_rx() 231 goto out; wl1251_cmd_data_path_rx() 237 out: wl1251_cmd_data_path_rx() 283 goto out; wl1251_cmd_join() 310 goto out; wl1251_cmd_join() 313 out: wl1251_cmd_join() 328 goto out; wl1251_cmd_ps_mode() 341 goto out; wl1251_cmd_ps_mode() 344 out: wl1251_cmd_ps_mode() 360 goto out; wl1251_cmd_read_memory() 372 goto out; wl1251_cmd_read_memory() 384 out: wl1251_cmd_read_memory() 405 goto out; wl1251_cmd_template_set() 416 goto out; wl1251_cmd_template_set() 419 out: wl1251_cmd_template_set() 475 goto out; wl1251_cmd_scan() 484 goto out; wl1251_cmd_scan() 487 out: wl1251_cmd_scan() 508 goto out; wl1251_cmd_trigger_scan_to() 511 out: wl1251_cmd_trigger_scan_to()
|
/linux-4.4.14/arch/x86/include/asm/ |
H A D | intel_pmc_ipc.h | 30 u32 *out, u32 outlen, u32 dptr, u32 sptr); 32 u32 *out, u32 outlen); 42 u32 *out, u32 outlen, u32 dptr, u32 sptr) intel_pmc_ipc_raw_cmd() 48 u32 *out, u32 outlen) intel_pmc_ipc_command() 41 intel_pmc_ipc_raw_cmd(u32 cmd, u32 sub, u8 *in, u32 inlen, u32 *out, u32 outlen, u32 dptr, u32 sptr) intel_pmc_ipc_raw_cmd() argument 47 intel_pmc_ipc_command(u32 cmd, u32 sub, u8 *in, u32 inlen, u32 *out, u32 outlen) intel_pmc_ipc_command() argument
|
/linux-4.4.14/fs/btrfs/ |
H A D | uuid-tree.c | 47 goto out; btrfs_uuid_tree_lookup() 53 goto out; btrfs_uuid_tree_lookup() 59 goto out; btrfs_uuid_tree_lookup() 62 goto out; btrfs_uuid_tree_lookup() 74 goto out; btrfs_uuid_tree_lookup() 88 out: btrfs_uuid_tree_lookup() 111 goto out; btrfs_uuid_tree_add() 119 goto out; btrfs_uuid_tree_add() 144 goto out; btrfs_uuid_tree_add() 152 out: btrfs_uuid_tree_add() 174 goto out; btrfs_uuid_tree_rem() 182 goto out; btrfs_uuid_tree_rem() 189 goto out; btrfs_uuid_tree_rem() 193 goto out; btrfs_uuid_tree_rem() 204 goto out; btrfs_uuid_tree_rem() 218 goto out; btrfs_uuid_tree_rem() 224 goto out; btrfs_uuid_tree_rem() 233 out: btrfs_uuid_tree_rem() 248 goto out; btrfs_uuid_iter_rem() 254 out: btrfs_uuid_iter_rem() 274 goto out; btrfs_uuid_tree_iterate() 286 goto out; btrfs_uuid_tree_iterate() 318 goto out; btrfs_uuid_tree_iterate() 334 goto out; btrfs_uuid_tree_iterate() 349 out: btrfs_uuid_tree_iterate()
|
H A D | tree-defrag.c | 49 goto out; btrfs_defrag_leaves() 53 goto out; btrfs_defrag_leaves() 62 goto out; btrfs_defrag_leaves() 86 goto out; btrfs_defrag_leaves() 89 goto out; btrfs_defrag_leaves() 96 goto out; btrfs_defrag_leaves() 100 goto out; btrfs_defrag_leaves() 111 goto out; btrfs_defrag_leaves() 117 out: btrfs_defrag_leaves()
|
H A D | send.c | 404 goto out; fs_path_prepare_for_add() 419 out: fs_path_prepare_for_add() 430 goto out; fs_path_add() 433 out: fs_path_add() 444 goto out; fs_path_add_path() 447 out: fs_path_add_path() 460 goto out; fs_path_add_from_extent_buffer() 464 out: fs_path_add_from_extent_buffer() 527 goto out; write_buf() 530 goto out; write_buf() 537 out: write_buf() 703 goto out; send_rename() 711 out: send_rename() 727 goto out; send_link() 735 out: send_link() 750 goto out; send_unlink() 757 out: send_unlink() 772 goto out; send_rmdir() 779 out: send_rmdir() 920 goto out; iterate_inode_ref() 927 goto out; iterate_inode_ref() 934 goto out; iterate_inode_ref() 943 goto out; iterate_inode_ref() 949 goto out; iterate_inode_ref() 953 out: iterate_inode_ref() 1001 goto out; iterate_dir_item() 1022 goto out; iterate_dir_item() 1026 goto out; iterate_dir_item() 1034 goto out; iterate_dir_item() 1055 goto out; iterate_dir_item() 1070 goto out; iterate_dir_item() 1073 goto out; iterate_dir_item() 1079 out: iterate_dir_item() 1121 goto out; get_inode_path() 1124 goto out; get_inode_path() 1131 goto out; get_inode_path() 1137 goto out; get_inode_path() 1140 out: get_inode_path() 1309 goto out; find_extent_clone() 1321 goto out; find_extent_clone() 1329 goto out; find_extent_clone() 1337 goto out; find_extent_clone() 1348 goto out; find_extent_clone() 1351 goto out; find_extent_clone() 1404 goto out; find_extent_clone() 1413 goto out; find_extent_clone() 1443 out: find_extent_clone() 1471 goto out; read_symlink() 1485 goto out; read_symlink() 1500 out: read_symlink() 1535 goto out; gen_unique_name() 1555 goto out; gen_unique_name() 1568 out: gen_unique_name() 1592 goto out; get_cur_inode_state() 1601 goto out; get_cur_inode_state() 1643 out: get_cur_inode_state() 1653 goto out; is_inode_existent() 1662 out: is_inode_existent() 1687 goto out; lookup_dir_item_inode() 1691 goto out; lookup_dir_item_inode() 1696 goto out; lookup_dir_item_inode() 1701 out: lookup_dir_item_inode() 1730 goto out; get_first_ref() 1738 goto out; get_first_ref() 1760 goto out; get_first_ref() 1767 goto out; get_first_ref() 1772 out: get_first_ref() 1791 goto out; is_first_ref() 1795 goto out; is_first_ref() 1800 out: is_first_ref() 1825 goto out; will_overwrite_ref() 1829 goto out; will_overwrite_ref() 1840 goto out; will_overwrite_ref() 1843 goto out; will_overwrite_ref() 1846 goto out; will_overwrite_ref() 1852 goto out; will_overwrite_ref() 1855 goto out; will_overwrite_ref() 1867 goto out; will_overwrite_ref() 1875 out: will_overwrite_ref() 1881 * used by __get_cur_name_and_parent to find out if the ref was orphanized and 1897 goto out; did_overwrite_ref() 1901 goto out; did_overwrite_ref() 1907 goto out; did_overwrite_ref() 1911 goto out; did_overwrite_ref() 1917 goto out; did_overwrite_ref() 1921 goto out; did_overwrite_ref() 1937 out: did_overwrite_ref() 1954 goto out; did_overwrite_first_ref() 1962 goto out; did_overwrite_first_ref() 1967 out: did_overwrite_first_ref() 2126 goto out; __get_cur_name_and_parent() 2128 goto out; __get_cur_name_and_parent() 2139 goto out; __get_cur_name_and_parent() 2144 goto out; __get_cur_name_and_parent() 2160 goto out; __get_cur_name_and_parent() 2169 goto out; __get_cur_name_and_parent() 2174 goto out; __get_cur_name_and_parent() 2185 goto out; __get_cur_name_and_parent() 2206 out: __get_cur_name_and_parent() 2247 goto out; get_cur_path() 2261 goto out; get_cur_path() 2282 goto out; get_cur_path() 2286 goto out; get_cur_path() 2292 out: get_cur_path() 2331 goto out; send_subvol_begin() 2334 goto out; send_subvol_begin() 2342 goto out; send_subvol_begin() 2352 goto out; send_subvol_begin() 2356 goto out; send_subvol_begin() 2384 out: send_subvol_begin() 2403 goto out; send_truncate() 2407 goto out; send_truncate() 2414 out: send_truncate() 2432 goto out; send_chmod() 2436 goto out; send_chmod() 2443 out: send_chmod() 2461 goto out; send_chown() 2465 goto out; send_chown() 2473 out: send_chown() 2497 goto out; send_utimes() 2505 goto out; send_utimes() 2513 goto out; send_utimes() 2517 goto out; send_utimes() 2527 out: send_utimes() 2557 goto out; send_create_inode() 2580 goto out; send_create_inode() 2585 goto out; send_create_inode() 2589 goto out; send_create_inode() 2598 goto out; send_create_inode() 2608 goto out; send_create_inode() 2612 out: send_create_inode() 2620 * This function does the check if we already created the dir out of order. 2636 goto out; did_create_dir() 2644 goto out; did_create_dir() 2652 goto out; did_create_dir() 2664 goto out; did_create_dir() 2673 goto out; did_create_dir() 2679 out: did_create_dir() 2687 * 2. Or a directory which was not created already due to out of order 2697 goto out; send_create_inode_if_needed() 2700 goto out; send_create_inode_if_needed() 2706 goto out; send_create_inode_if_needed() 2708 out: send_create_inode_if_needed() 2805 goto out; orphanize_inode() 2809 out: orphanize_inode() 2910 goto out; can_rmdir() 2918 goto out; can_rmdir() 2940 goto out; can_rmdir() 2945 goto out; can_rmdir() 2950 goto out; can_rmdir() 2958 out: can_rmdir() 3070 goto out; list_for_each_entry() 3075 goto out; list_for_each_entry() 3080 goto out; 3089 out: 3131 goto out; apply_dir_move() 3146 goto out; apply_dir_move() 3150 goto out; apply_dir_move() 3154 goto out; apply_dir_move() 3162 goto out; apply_dir_move() 3166 goto out; apply_dir_move() 3178 goto out; apply_dir_move() 3185 goto out; apply_dir_move() 3189 goto out; apply_dir_move() 3192 goto out; apply_dir_move() 3199 goto out; apply_dir_move() 3210 goto out; apply_dir_move() 3213 out: apply_dir_move() 3265 goto out; apply_children_dir_moves() 3272 out: apply_children_dir_moves() 3341 goto out; wait_for_dest_dir_move() 3344 goto out; wait_for_dest_dir_move() 3351 goto out; wait_for_dest_dir_move() 3364 goto out; wait_for_dest_dir_move() 3370 goto out; wait_for_dest_dir_move() 3376 goto out; wait_for_dest_dir_move() 3382 goto out; wait_for_dest_dir_move() 3396 out: wait_for_dest_dir_move() 3447 goto out; wait_for_parent_move() 3481 goto out; wait_for_parent_move() 3485 goto out; wait_for_parent_move() 3502 out: wait_for_parent_move() 3550 goto out; process_recorded_refs() 3568 goto out; process_recorded_refs() 3576 goto out; process_recorded_refs() 3582 goto out; process_recorded_refs() 3590 * parent directory out of order. But we need to check if this process_recorded_refs() 3595 goto out; process_recorded_refs() 3618 goto out; process_recorded_refs() 3622 goto out; process_recorded_refs() 3636 goto out; process_recorded_refs() 3642 goto out; process_recorded_refs() 3649 goto out; process_recorded_refs() 3668 goto out; process_recorded_refs() 3675 goto out; process_recorded_refs() 3686 goto out; process_recorded_refs() 3701 goto out; process_recorded_refs() 3705 goto out; process_recorded_refs() 3719 goto out; process_recorded_refs() 3724 goto out; process_recorded_refs() 3729 goto out; process_recorded_refs() 3742 goto out; process_recorded_refs() 3746 goto out; process_recorded_refs() 3751 goto out; process_recorded_refs() 3758 goto out; process_recorded_refs() 3769 goto out; process_recorded_refs() 3781 goto out; process_recorded_refs() 3785 goto out; process_recorded_refs() 3789 goto out; process_recorded_refs() 3802 goto out; process_recorded_refs() 3823 goto out; process_recorded_refs() 3830 goto out; process_recorded_refs() 3836 goto out; process_recorded_refs() 3841 goto out; process_recorded_refs() 3844 goto out; process_recorded_refs() 3852 out: process_recorded_refs() 3874 goto out; record_ref() 3878 goto out; record_ref() 3881 goto out; record_ref() 3885 out: record_ref() 3917 goto out; record_new_ref() 3920 out: record_new_ref() 3931 goto out; record_deleted_ref() 3934 out: record_deleted_ref() 4049 goto out; record_changed_ref() 4053 goto out; record_changed_ref() 4056 out: record_changed_ref() 4091 goto out; process_all_refs() 4099 goto out; process_all_refs() 4107 goto out; process_all_refs() 4122 goto out; process_all_refs() 4132 out: process_all_refs() 4146 goto out; send_set_xattr() 4155 out: send_set_xattr() 4167 goto out; send_remove_xattr() 4175 out: send_remove_xattr() 4211 goto out; __process_new_xattr() 4215 out: __process_new_xattr() 4235 goto out; __process_deleted_xattr() 4239 out: __process_deleted_xattr() 4378 goto out; process_changed_xattr() 4382 out: process_changed_xattr() 4407 goto out; process_all_new_xattrs() 4415 goto out; process_all_new_xattrs() 4427 goto out; process_all_new_xattrs() 4433 goto out; process_all_new_xattrs() 4438 out: process_all_new_xattrs() 4471 goto out; fill_read_buf() 4511 out: fill_read_buf() 4536 goto out; send_write() 4541 goto out; send_write() 4545 goto out; send_write() 4554 out: send_write() 4583 goto out; send_clone() 4587 goto out; send_clone() 4597 goto out; send_clone() 4603 goto out; send_clone() 4629 out: send_clone() 4649 goto out; send_update_extent() 4653 goto out; send_update_extent() 4662 out: send_update_extent() 4767 goto out; clone_range() 4786 goto out; clone_range() 4822 goto out; clone_range() 4844 goto out; clone_range() 4860 out: clone_range() 4897 goto out; send_write_or_clone() 4911 out: send_write_or_clone() 4949 goto out; is_extent_unchanged() 4982 goto out; is_extent_unchanged() 4985 goto out; is_extent_unchanged() 4998 goto out; is_extent_unchanged() 5010 goto out; is_extent_unchanged() 5025 goto out; is_extent_unchanged() 5044 goto out; is_extent_unchanged() 5052 goto out; is_extent_unchanged() 5065 goto out; is_extent_unchanged() 5080 out: is_extent_unchanged() 5106 goto out; get_last_extent() 5110 goto out; get_last_extent() 5125 out: get_last_extent() 5193 goto out; process_extent() 5215 goto out; process_extent() 5221 goto out; process_extent() 5229 goto out; process_extent() 5233 goto out; process_extent() 5236 out: process_extent() 5260 goto out; process_all_extents() 5269 goto out; process_all_extents() 5282 goto out; process_all_extents() 5287 goto out; process_all_extents() 5292 out: process_all_extents() 5304 goto out; process_recorded_refs_if_needed() 5307 goto out; process_recorded_refs_if_needed() 5309 goto out; process_recorded_refs_if_needed() 5313 goto out; process_recorded_refs_if_needed() 5316 out: process_recorded_refs_if_needed() 5337 goto out; finish_inode_if_needed() 5355 goto out; finish_inode_if_needed() 5357 goto out; finish_inode_if_needed() 5362 goto out; finish_inode_if_needed() 5373 goto out; finish_inode_if_needed() 5388 goto out; finish_inode_if_needed() 5394 goto out; finish_inode_if_needed() 5400 goto out; finish_inode_if_needed() 5407 goto out; finish_inode_if_needed() 5413 goto out; finish_inode_if_needed() 5423 goto out; finish_inode_if_needed() 5434 goto out; finish_inode_if_needed() 5437 out: finish_inode_if_needed() 5536 goto out; changed_inode() 5552 goto out; changed_inode() 5556 goto out; changed_inode() 5569 goto out; changed_inode() 5572 goto out; changed_inode() 5585 out: changed_inode() 5699 goto out; compare_refs() 5718 out: compare_refs() 5760 goto out; changed_cb() 5765 goto out; changed_cb() 5777 out: changed_cb() 5801 goto out; full_send_tree() 5813 goto out; full_send_tree() 5821 goto out; full_send_tree() 5831 out: full_send_tree() 5843 goto out; send_subvol() 5848 goto out; send_subvol() 5854 goto out; send_subvol() 5857 goto out; send_subvol() 5861 goto out; send_subvol() 5864 out: send_subvol() 5970 goto out; btrfs_ioctl_send() 5977 goto out; btrfs_ioctl_send() 5984 goto out; btrfs_ioctl_send() 5989 goto out; btrfs_ioctl_send() 5995 goto out; btrfs_ioctl_send() 6008 goto out; btrfs_ioctl_send() 6018 goto out; btrfs_ioctl_send() 6027 goto out; btrfs_ioctl_send() 6033 goto out; btrfs_ioctl_send() 6044 goto out; btrfs_ioctl_send() 6052 goto out; btrfs_ioctl_send() 6060 goto out; btrfs_ioctl_send() 6074 goto out; btrfs_ioctl_send() 6082 goto out; btrfs_ioctl_send() 6106 goto out; btrfs_ioctl_send() 6116 goto out; btrfs_ioctl_send() 6138 goto out; btrfs_ioctl_send() 6144 goto out; btrfs_ioctl_send() 6149 goto out; btrfs_ioctl_send() 6152 goto out; btrfs_ioctl_send() 6155 out: btrfs_ioctl_send()
|
/linux-4.4.14/include/xen/interface/io/ |
H A D | console.h | 18 char out[2048]; member in struct:xencons_interface
|
/linux-4.4.14/include/net/netfilter/ipv4/ |
H A D | nf_nat_masquerade.h | 9 const struct net_device *out);
|
/linux-4.4.14/include/net/netfilter/ |
H A D | nfnetlink_log.h | 10 const struct net_device *out,
|
/linux-4.4.14/include/linux/ |
H A D | a.out.h | 4 #include <uapi/linux/a.out.h>
|
/linux-4.4.14/include/uapi/linux/netfilter/ipset/ |
H A D | ip_set_bitmap.h | 6 /* The element is out of the range of the set */
|
/linux-4.4.14/arch/powerpc/platforms/powernv/ |
H A D | opal-tracepoints.c | 54 goto out; __trace_opal_entry() 61 out: __trace_opal_entry() 75 goto out; __trace_opal_exit() 82 out: __trace_opal_exit()
|
/linux-4.4.14/arch/arm/crypto/ |
H A D | sha1.h | 11 unsigned int len, u8 *out);
|
H A D | aes_glue.h | 14 asmlinkage void AES_encrypt(const u8 *in, u8 *out, struct AES_KEY *ctx); 15 asmlinkage void AES_decrypt(const u8 *in, u8 *out, struct AES_KEY *ctx);
|
H A D | sha1-ce-glue.c | 47 unsigned int len, u8 *out) sha1_ce_finup() 50 return sha1_finup_arm(desc, data, len, out); sha1_ce_finup() 58 return sha1_base_finish(desc, out); sha1_ce_finup() 61 static int sha1_ce_final(struct shash_desc *desc, u8 *out) sha1_ce_final() argument 63 return sha1_ce_finup(desc, NULL, 0, out); sha1_ce_final() 46 sha1_ce_finup(struct shash_desc *desc, const u8 *data, unsigned int len, u8 *out) sha1_ce_finup() argument
|
H A D | sha512-neon-glue.c | 46 unsigned int len, u8 *out) sha512_neon_finup() 49 return sha512_arm_finup(desc, data, len, out); sha512_neon_finup() 59 return sha512_base_finish(desc, out); sha512_neon_finup() 62 static int sha512_neon_final(struct shash_desc *desc, u8 *out) sha512_neon_final() argument 64 return sha512_neon_finup(desc, NULL, 0, out); sha512_neon_final() 45 sha512_neon_finup(struct shash_desc *desc, const u8 *data, unsigned int len, u8 *out) sha512_neon_finup() argument
|
H A D | bsaes-armv7.pl | 53 my ($inp,$out,$len,$key)=("r0","r1","r2","r3"); 896 my ($out,$inp,$rounds,$const)=("r12","r4","r5","r6"); 944 vstmia $out!, {@XMM[7]} @ save round 0 key 971 vstmia $out!,{@XMM[0]-@XMM[7]} @ write bit-sliced round key 993 mov r12,$out @ pass key schedule 1018 vst1.8 {@XMM[0]-@XMM[1]}, [$out]! @ write output 1019 vst1.8 {@XMM[4]}, [$out]! 1020 vst1.8 {@XMM[6]}, [$out]! 1021 vst1.8 {@XMM[3]}, [$out]! 1022 vst1.8 {@XMM[7]}, [$out]! 1023 vst1.8 {@XMM[2]}, [$out]! 1025 vst1.8 {@XMM[5]}, [$out]! 1041 mov r12,$out @ pass key schedule 1043 vldmia $out, {@XMM[6]} 1046 vstmia $out, {@XMM[7]} 1068 vst1.8 {@XMM[0]-@XMM[1]}, [$out]! @ write output 1069 vst1.8 {@XMM[6]}, [$out]! 1070 vst1.8 {@XMM[4]}, [$out]! 1071 vst1.8 {@XMM[2]}, [$out]! 1072 vst1.8 {@XMM[7]}, [$out]! 1073 vst1.8 {@XMM[3]}, [$out]! 1075 vst1.8 {@XMM[5]}, [$out]! 1084 my ($inp,$out,$len,$key, $ivp,$fp,$rounds)=map("r$_",(0..3,8..10)); 1186 vst1.8 {@XMM[0]-@XMM[1]}, [$out]! @ write output 1188 vst1.8 {@XMM[6]}, [$out]! 1190 vst1.8 {@XMM[4]}, [$out]! 1191 vst1.8 {@XMM[2]}, [$out]! 1192 vst1.8 {@XMM[7]}, [$out]! 1193 vst1.8 {@XMM[3]}, [$out]! 1194 vst1.8 {@XMM[5]}, [$out]! 1240 vst1.8 {@XMM[0]-@XMM[1]}, [$out]! @ write output 1242 vst1.8 {@XMM[6]}, [$out]! 1243 vst1.8 {@XMM[4]}, [$out]! 1244 vst1.8 {@XMM[2]}, [$out]! 1245 vst1.8 {@XMM[7]}, [$out]! 1246 vst1.8 {@XMM[3]}, [$out]! 1263 vst1.8 {@XMM[0]-@XMM[1]}, [$out]! @ write output 1264 vst1.8 {@XMM[6]}, [$out]! 1265 vst1.8 {@XMM[4]}, [$out]! 1266 vst1.8 {@XMM[2]}, [$out]! 1267 vst1.8 {@XMM[7]}, [$out]! 1281 vst1.8 {@XMM[0]-@XMM[1]}, [$out]! @ write output 1283 vst1.8 {@XMM[6]}, [$out]! 1284 vst1.8 {@XMM[4]}, [$out]! 1285 vst1.8 {@XMM[2]}, [$out]! 1299 vst1.8 {@XMM[0]-@XMM[1]}, [$out]! @ write output 1300 vst1.8 {@XMM[6]}, [$out]! 1301 vst1.8 {@XMM[4]}, [$out]! 1313 vst1.8 {@XMM[0]-@XMM[1]}, [$out]! @ write output 1314 vst1.8 {@XMM[6]}, [$out]! 1325 vst1.8 {@XMM[0]-@XMM[1]}, [$out]! @ write output 1330 mov $rounds, $out @ save original out pointer 1331 mov $out, $fp @ use the iv scratch space as out buffer 1360 my ($inp,$out,$len,$key, $ctr,$fp,$rounds)=(map("r$_",(0..3,8..10))); 1468 vst1.8 {@XMM[0]-@XMM[1]}, [$out]! @ write output 1471 vst1.8 {@XMM[4]}, [$out]! 1473 vst1.8 {@XMM[6]}, [$out]! 1475 vst1.8 {@XMM[3]}, [$out]! 1477 vst1.8 {@XMM[7]}, [$out]! 1479 vst1.8 {@XMM[2]}, [$out]! 1481 vst1.8 {@XMM[5]}, [$out]! 1492 vst1.8 {@XMM[0]}, [$out]! @ write output 1497 vst1.8 {@XMM[1]}, [$out]! 1501 vst1.8 {@XMM[4]}, [$out]! 1506 vst1.8 {@XMM[6]}, [$out]! 1510 vst1.8 {@XMM[3]}, [$out]! 1515 vst1.8 {@XMM[7]}, [$out]! 1519 vst1.8 {@XMM[2]}, [$out]! 1544 mov r5, $out 1587 # void bsaes_xts_[en|de]crypt(const char *inp,char *out,size_t len, 1591 my ($inp,$out,$len,$key,$rounds,$magic,$fp)=(map("r$_",(7..10,1..3))); 1607 mov $out, r1 1718 vst1.8 {@XMM[0]-@XMM[1]}, [$out]! 1722 vst1.8 {@XMM[8]-@XMM[9]}, [$out]! 1725 vst1.8 {@XMM[10]-@XMM[11]}, [$out]! 1727 vst1.8 {@XMM[12]-@XMM[13]}, [$out]! 1786 vst1.8 {@XMM[0]-@XMM[1]}, [$out]! 1790 vst1.8 {@XMM[8]-@XMM[9]}, [$out]! 1793 vst1.8 {@XMM[10]-@XMM[11]}, [$out]! 1794 vst1.8 {@XMM[12]}, [$out]! 1820 vst1.8 {@XMM[0]-@XMM[1]}, [$out]! 1823 vst1.8 {@XMM[8]-@XMM[9]}, [$out]! 1825 vst1.8 {@XMM[10]-@XMM[11]}, [$out]! 1857 vst1.8 {@XMM[0]-@XMM[1]}, [$out]! 1860 vst1.8 {@XMM[8]-@XMM[9]}, [$out]! 1861 vst1.8 {@XMM[10]}, [$out]! 1886 vst1.8 {@XMM[0]-@XMM[1]}, [$out]! 1888 vst1.8 {@XMM[8]-@XMM[9]}, [$out]! 1913 vst1.8 {@XMM[0]-@XMM[1]}, [$out]! 1914 vst1.8 {@XMM[8]}, [$out]! 1937 vst1.8 {@XMM[0]-@XMM[1]}, [$out]! 1954 vst1.8 {@XMM[0]}, [$out]! 1963 sub r6, $out, #0x10 1967 ldrb r1, [$out, #-0x10] 1968 strb r0, [$out, #-0x10] 1969 strb r1, [$out], #1 2021 mov $out, r1 2143 vst1.8 {@XMM[0]-@XMM[1]}, [$out]! 2147 vst1.8 {@XMM[8]-@XMM[9]}, [$out]! 2150 vst1.8 {@XMM[10]-@XMM[11]}, [$out]! 2152 vst1.8 {@XMM[12]-@XMM[13]}, [$out]! 2211 vst1.8 {@XMM[0]-@XMM[1]}, [$out]! 2215 vst1.8 {@XMM[8]-@XMM[9]}, [$out]! 2218 vst1.8 {@XMM[10]-@XMM[11]}, [$out]! 2219 vst1.8 {@XMM[12]}, [$out]! 2245 vst1.8 {@XMM[0]-@XMM[1]}, [$out]! 2248 vst1.8 {@XMM[8]-@XMM[9]}, [$out]! 2250 vst1.8 {@XMM[10]-@XMM[11]}, [$out]! 2276 vst1.8 {@XMM[0]-@XMM[1]}, [$out]! 2279 vst1.8 {@XMM[8]-@XMM[9]}, [$out]! 2280 vst1.8 {@XMM[10]}, [$out]! 2305 vst1.8 {@XMM[0]-@XMM[1]}, [$out]! 2307 vst1.8 {@XMM[8]-@XMM[9]}, [$out]! 2332 vst1.8 {@XMM[0]-@XMM[1]}, [$out]! 2333 vst1.8 {@XMM[8]}, [$out]! 2356 vst1.8 {@XMM[0]-@XMM[1]}, [$out]! 2374 vst1.8 {@XMM[0]}, [$out]! 2406 vst1.8 {@XMM[0]}, [$out] 2408 mov r6, $out 2410 ldrb r1, [$out] 2412 strb r1, [$out, #0x10] 2413 strb r0, [$out], #1
|
/linux-4.4.14/drivers/xen/xen-pciback/ |
H A D | conf_space_capability.c | 54 goto out; xen_pcibk_config_capability_add_fields() 59 goto out; xen_pcibk_config_capability_add_fields() 63 out: xen_pcibk_config_capability_add_fields() 101 goto out; pm_caps_read() 105 out: pm_caps_read() 122 goto out; pm_ctrl_write() 132 goto out; pm_ctrl_write() 140 goto out; pm_ctrl_write() 143 out: pm_ctrl_write() 155 goto out; pm_ctrl_init() 162 out: pm_ctrl_init()
|
H A D | conf_space_quirks.c | 35 goto out; xen_pcibk_find_quirk() 39 out: xen_pcibk_find_quirk() 83 goto out; xen_pcibk_config_quirks_add_field() 88 out: xen_pcibk_config_quirks_add_field() 100 goto out; xen_pcibk_config_quirks_init() 114 out: xen_pcibk_config_quirks_init() 131 goto out; xen_pcibk_config_quirk_release() 137 out: xen_pcibk_config_quirk_release()
|
H A D | xenbus.c | 43 goto out; alloc_pdev() 63 out: alloc_pdev() 122 goto out; xen_pcibk_do_attach() 133 goto out; xen_pcibk_do_attach() 139 out: xen_pcibk_do_attach() 154 goto out; xen_pcibk_attach() 159 goto out; xen_pcibk_attach() 171 goto out; xen_pcibk_attach() 180 goto out; xen_pcibk_attach() 185 goto out; xen_pcibk_attach() 195 out: xen_pcibk_attach() 214 goto out; xen_pcibk_publish_pci_dev() 222 out: xen_pcibk_publish_pci_dev() 244 goto out; xen_pcibk_export_device() 250 goto out; xen_pcibk_export_device() 269 out: xen_pcibk_export_device() 288 goto out; xen_pcibk_remove_device() 298 out: xen_pcibk_remove_device() 316 goto out; xen_pcibk_publish_pci_root() 323 goto out; xen_pcibk_publish_pci_root() 329 goto out; xen_pcibk_publish_pci_root() 332 goto out; xen_pcibk_publish_pci_root() 337 goto out; xen_pcibk_publish_pci_root() 344 goto out; xen_pcibk_publish_pci_root() 353 goto out; xen_pcibk_publish_pci_root() 358 out: xen_pcibk_publish_pci_root() 379 goto out; xen_pcibk_reconfigure() 388 goto out; xen_pcibk_reconfigure() 398 goto out; xen_pcibk_reconfigure() 415 goto out; xen_pcibk_reconfigure() 424 goto out; xen_pcibk_reconfigure() 431 goto out; xen_pcibk_reconfigure() 437 goto out; xen_pcibk_reconfigure() 446 goto out; xen_pcibk_reconfigure() 456 goto out; xen_pcibk_reconfigure() 469 goto out; xen_pcibk_reconfigure() 478 goto out; xen_pcibk_reconfigure() 485 goto out; xen_pcibk_reconfigure() 491 goto out; xen_pcibk_reconfigure() 509 goto out; xen_pcibk_reconfigure() 512 out: xen_pcibk_reconfigure() 576 goto out; xen_pcibk_setup_backend() 587 goto out; xen_pcibk_setup_backend() 597 goto out; xen_pcibk_setup_backend() 605 goto out; xen_pcibk_setup_backend() 612 goto out; xen_pcibk_setup_backend() 617 goto out; xen_pcibk_setup_backend() 626 goto out; xen_pcibk_setup_backend() 633 goto out; xen_pcibk_setup_backend() 642 goto out; xen_pcibk_setup_backend() 650 out: xen_pcibk_setup_backend() 684 goto out; xen_pcibk_xenbus_probe() 690 goto out; xen_pcibk_xenbus_probe() 696 goto out; xen_pcibk_xenbus_probe() 705 out: xen_pcibk_xenbus_probe()
|
/linux-4.4.14/drivers/ide/ |
H A D | ide-disk_ioctl.c | 26 goto out; ide_disk_ioctl() 29 out: ide_disk_ioctl()
|
/linux-4.4.14/arch/um/kernel/skas/ |
H A D | syscall.c | 21 goto out; handle_syscall() 31 out: handle_syscall()
|
H A D | clone.c | 33 goto out; stub_clone_handler() 37 goto out; stub_clone_handler() 42 out: stub_clone_handler()
|
H A D | mmu.c | 28 goto out; init_stub_pte() 46 out: init_stub_pte() 59 goto out; init_new_context() 89 out: init_new_context() 100 goto out; uml_setup_stubs() 104 goto out; uml_setup_stubs() 116 goto out; uml_setup_stubs() 120 out: uml_setup_stubs()
|
/linux-4.4.14/arch/um/kernel/ |
H A D | syscall.c | 23 goto out; old_mmap() 26 out: old_mmap()
|
H A D | trap.c | 51 goto out; handle_page_fault() 55 goto out; handle_page_fault() 57 goto out; handle_page_fault() 59 goto out; handle_page_fault() 65 goto out; handle_page_fault() 70 goto out; handle_page_fault() 85 goto out; handle_page_fault() 88 goto out; handle_page_fault() 117 * concurrent read fault, triggering this harmlessly. So comment it out. handle_page_fault() 123 out: handle_page_fault() 130 * We ran out of memory, call the OOM killer, and return the userspace handle_page_fault() 217 goto out; segv() 244 goto out; segv() 252 goto out; segv() 277 out: segv() 292 "mount likely just ran out of space\n"); relay_signal()
|
/linux-4.4.14/mm/ |
H A D | msync.c | 25 * write out the dirty pages and wait on the writeout and check the result. 40 goto out; SYSCALL_DEFINE3() 42 goto out; SYSCALL_DEFINE3() 44 goto out; SYSCALL_DEFINE3() 49 goto out; SYSCALL_DEFINE3() 52 goto out; SYSCALL_DEFINE3() 92 goto out; SYSCALL_DEFINE3() 105 out: SYSCALL_DEFINE3()
|
/linux-4.4.14/net/dccp/ccids/lib/ |
H A D | tfrc.c | 21 goto out; tfrc_lib_init() 36 out: tfrc_lib_init()
|
/linux-4.4.14/net/sunrpc/xprtrdma/ |
H A D | module.c | 35 goto out; rpc_rdma_init() 41 out: rpc_rdma_init()
|
/linux-4.4.14/include/media/ |
H A D | ov7670.h | 14 int min_width; /* Filter out smaller sizes */ 15 int min_height; /* Filter out smaller sizes */
|
/linux-4.4.14/drivers/video/console/ |
H A D | fbcon_rotate.h | 40 static inline void rotate_ud(const char *in, char *out, u32 width, u32 height) rotate_ud() argument 52 width, out); rotate_ud() 58 static inline void rotate_cw(const char *in, char *out, u32 width, u32 height) rotate_cw() argument 70 height, out); rotate_cw() 76 static inline void rotate_ccw(const char *in, char *out, u32 width, u32 height) rotate_ccw() argument 88 height, out); rotate_ccw()
|
/linux-4.4.14/drivers/infiniband/hw/mthca/ |
H A D | mthca_mcg.c | 82 goto out; find_mgm() 95 goto out; find_mgm() 103 goto out; find_mgm() 107 goto out; find_mgm() 115 out: find_mgm() 140 goto out; mthca_multicast_attach() 152 goto out; mthca_multicast_attach() 158 goto out; mthca_multicast_attach() 169 goto out; mthca_multicast_attach() 178 goto out; mthca_multicast_attach() 185 goto out; mthca_multicast_attach() 189 goto out; mthca_multicast_attach() 194 goto out; mthca_multicast_attach() 203 out: mthca_multicast_attach() 233 goto out; mthca_multicast_detach() 238 goto out; mthca_multicast_detach() 251 goto out; mthca_multicast_detach() 260 goto out; mthca_multicast_detach() 264 goto out; mthca_multicast_detach() 274 goto out; mthca_multicast_detach() 282 goto out; mthca_multicast_detach() 294 goto out; mthca_multicast_detach() 302 goto out; mthca_multicast_detach() 308 out: mthca_multicast_detach()
|
H A D | mthca_reset.c | 101 goto out; mthca_reset() 111 goto out; mthca_reset() 124 goto out; mthca_reset() 134 goto out; mthca_reset() 142 goto out; mthca_reset() 155 goto out; mthca_reset() 175 goto out; mthca_reset() 187 goto out; mthca_reset() 198 goto out; mthca_reset() 205 goto out; mthca_reset() 219 goto out; mthca_reset() 228 goto out; mthca_reset() 238 goto out; mthca_reset() 249 goto out; mthca_reset() 257 goto out; mthca_reset() 269 goto out; mthca_reset() 278 goto out; mthca_reset() 281 out: mthca_reset()
|
/linux-4.4.14/arch/tile/lib/ |
H A D | memmove.c | 32 uint8_t *out; memmove() local 38 out = (uint8_t *)dest + n - 1; memmove() 43 out = (uint8_t *)dest; memmove() 52 *out = x; memmove() 53 out += stride; memmove() 58 *out = x; memmove()
|
/linux-4.4.14/net/netfilter/ |
H A D | nf_conntrack_broadcast.c | 37 goto out; nf_conntrack_broadcast_help() 39 goto out; nf_conntrack_broadcast_help() 41 goto out; nf_conntrack_broadcast_help() 56 goto out; 60 goto out; 77 out:
|
/linux-4.4.14/scripts/ |
H A D | asn1_compiler.c | 368 /* First of all, break out a line */ tokenise() 559 static void render(FILE *out, FILE *hdr); 568 FILE *out, *hdr; main() local 646 out = fopen(outputname, "w"); main() 647 if (!out) { main() 653 if (!out) { main() 658 render(out, hdr); main() 660 if (fclose(out) < 0) { main() 1260 static void render_element(FILE *out, struct element *e, struct element *tag); 1261 static void render_out_of_line_list(FILE *out); 1268 static void render_opcode(FILE *out, const char *fmt, ...) render_opcode() argument 1272 if (out) { render_opcode() 1273 fprintf(out, "\t[%4d] =%*s", nr_entries, render_depth, ""); render_opcode() 1275 vfprintf(out, fmt, va); render_opcode() 1282 static void render_more(FILE *out, const char *fmt, ...) render_more() argument 1286 if (out) { render_more() 1288 vfprintf(out, fmt, va); render_more() 1296 static void render(FILE *out, FILE *hdr) render() argument 1316 fprintf(out, "/*\n"); render() 1317 fprintf(out, " * Automatically generated by asn1_compiler. Do not edit\n"); render() 1318 fprintf(out, " *\n"); render() 1319 fprintf(out, " * ASN.1 parser for %s\n", grammar_name); render() 1320 fprintf(out, " */\n"); render() 1321 fprintf(out, "#include <linux/asn1_ber_bytecode.h>\n"); render() 1322 fprintf(out, "#include \"%s-asn1.h\"\n", grammar_name); render() 1323 fprintf(out, "\n"); render() 1324 if (ferror(out)) { render() 1341 fprintf(out, "enum %s_actions {\n", grammar_name); render() 1343 fprintf(out, "\tACT_%s = %u,\n", render() 1345 fprintf(out, "\tNR__%s_actions = %u\n", grammar_name, nr_actions); render() 1346 fprintf(out, "};\n"); render() 1348 fprintf(out, "\n"); render() 1349 fprintf(out, "static const asn1_action_t %s_action_table[NR__%s_actions] = {\n", render() 1352 fprintf(out, "\t[%4u] = %s,\n", action->index, action->name); render() 1353 fprintf(out, "};\n"); render() 1355 if (ferror(out)) { render() 1373 fprintf(out, "\n"); render() 1374 fprintf(out, "static const unsigned char %s_machine[] = {\n", render() 1379 render_element(out, root->element, NULL); render() 1380 render_opcode(out, "ASN1_OP_COMPLETE,\n"); render() 1381 render_out_of_line_list(out); render() 1383 fprintf(out, "};\n"); render() 1385 fprintf(out, "\n"); render() 1386 fprintf(out, "const struct asn1_decoder %s_decoder = {\n", grammar_name); render() 1387 fprintf(out, "\t.machine = %s_machine,\n", grammar_name); render() 1388 fprintf(out, "\t.machlen = sizeof(%s_machine),\n", grammar_name); render() 1389 fprintf(out, "\t.actions = %s_action_table,\n", grammar_name); render() 1390 fprintf(out, "};\n"); render() 1394 * Render the out-of-line elements 1396 static void render_out_of_line_list(FILE *out) render_out_of_line_list() argument 1407 render_more(out, "\n"); render_out_of_line_list() 1411 render_element(out, ce, NULL); render_out_of_line_list() 1417 render_opcode(out, "ASN1_OP_END_SEQ%s,\n", act); render_out_of_line_list() 1420 render_opcode(out, "ASN1_OP_END_SEQ_OF%s,\n", act); render_out_of_line_list() 1421 render_opcode(out, "_jump_target(%u),\n", entry); render_out_of_line_list() 1424 render_opcode(out, "ASN1_OP_END_SET%s,\n", act); render_out_of_line_list() 1427 render_opcode(out, "ASN1_OP_END_SET_OF%s,\n", act); render_out_of_line_list() 1428 render_opcode(out, "_jump_target(%u),\n", entry); render_out_of_line_list() 1434 render_opcode(out, "_action(ACT_%s),\n", render_out_of_line_list() 1436 render_opcode(out, "ASN1_OP_RETURN,\n"); render_out_of_line_list() 1443 static void render_element(FILE *out, struct element *e, struct element *tag) render_element() argument 1457 if (e->type_def && out) { render_element() 1458 render_more(out, "\t// %s\n", e->type_def->name->content); render_element() 1467 render_opcode(out, "ASN1_OP_%sMATCH_ANY%s%s,", render_element() 1470 render_more(out, "\t\t// %s", e->name->content); render_element() 1471 render_more(out, "\n"); render_element() 1475 render_element(out, e->children, e); render_element() 1482 render_opcode(out, "ASN1_OP_%sMATCH%s%s,", render_element() 1495 render_opcode(out, "ASN1_OP_%sMATCH%s%s,", render_element() 1503 render_more(out, "\t\t// %s", x->name->content); render_element() 1504 render_more(out, "\n"); render_element() 1514 render_opcode(out, "_tag(%s, %s, %s),\n", render_element() 1519 render_opcode(out, "_tagn(%s, %s, %2u),\n", render_element() 1529 render_element(out, e->type->type->element, tag); render_element() 1531 render_opcode(out, "ASN1_OP_%sACT,\n", render_element() 1537 /* Render out-of-line for multiple use or render_element() 1539 render_opcode(out, "_jump_target(%u),", e->entry_index); render_element() 1541 render_more(out, "\t\t// --> %s", render_element() 1543 render_more(out, "\n"); render_element() 1554 render_element(out, ec, NULL); render_element() 1556 render_opcode(out, "ASN1_OP_END_SEQ%s,\n", act); render_element() 1563 /* Render out-of-line for multiple use or render_element() 1565 render_opcode(out, "_jump_target(%u),", e->entry_index); render_element() 1567 render_more(out, "\t\t// --> %s", render_element() 1569 render_more(out, "\n"); render_element() 1580 render_element(out, e->children, NULL); render_element() 1583 render_opcode(out, "ASN1_OP_END_SEQ_OF%s,\n", act); render_element() 1585 render_opcode(out, "ASN1_OP_END_SET_OF%s,\n", act); render_element() 1586 render_opcode(out, "_jump_target(%u),\n", entry); render_element() 1594 * elements are left out whilst not preventing optional render_element() 1595 * elements from being left out. render_element() 1602 render_element(out, ec, ec); render_element() 1604 render_opcode(out, "ASN1_OP_COND_FAIL,\n"); render_element() 1606 render_opcode(out, "ASN1_OP_ACT,\n"); render_element() 1614 render_opcode(out, "_action(ACT_%s),\n", e->action->name); render_element()
|
H A D | pnmtologo.c | 28 static FILE *out; variable 232 out = fopen(outputname, "w"); write_header() 233 if (!out) write_header() 236 out = stdout; write_header() 239 fputs("/*\n", out); write_header() 240 fputs(" * DO NOT EDIT THIS FILE!\n", out); write_header() 241 fputs(" *\n", out); write_header() 242 fprintf(out, " * It was automatically generated from %s\n", filename); write_header() 243 fputs(" *\n", out); write_header() 244 fprintf(out, " * Linux logo %s\n", logoname); write_header() 245 fputs(" */\n\n", out); write_header() 246 fputs("#include <linux/linux_logo.h>\n\n", out); write_header() 247 fprintf(out, "static unsigned char %s_data[] __initdata = {\n", write_header() 253 fputs("\n};\n\n", out); write_footer() 254 fprintf(out, "const struct linux_logo %s __initconst = {\n", logoname); write_footer() 255 fprintf(out, "\t.type\t\t= %s,\n", logo_types[logo_type]); write_footer() 256 fprintf(out, "\t.width\t\t= %d,\n", logo_width); write_footer() 257 fprintf(out, "\t.height\t\t= %d,\n", logo_height); write_footer() 259 fprintf(out, "\t.clutsize\t= %d,\n", logo_clutsize); write_footer() 260 fprintf(out, "\t.clut\t\t= %s_clut,\n", logoname); write_footer() 262 fprintf(out, "\t.data\t\t= %s_data\n", logoname); write_footer() 263 fputs("};\n\n", out); write_footer() 267 fclose(out); write_footer() 275 fprintf(out, ", 0x%02x", byte); write_hex() 277 fprintf(out, ",\n\t0x%02x", byte); write_hex() 279 fprintf(out, "\t0x%02x", byte); write_hex() 381 fputs("\n};\n\n", out); write_logo_clut224() 384 fprintf(out, "static unsigned char %s_clut[] __initdata = {\n", write_logo_clut224()
|
/linux-4.4.14/drivers/thermal/ |
H A D | intel_soc_dts_iosf.c | 47 /* Only 2 out of 4 is allowed for OSPM */ 86 u32 out; sys_get_trip_temp() local 94 SOC_DTS_OFFSET_PTPS, &out); sys_get_trip_temp() 99 out = (out >> (trip * 8)) & SOC_DTS_TJMAX_ENCODING; sys_get_trip_temp() 100 if (!out) sys_get_trip_temp() 103 *temp = sensors->tj_max - out * 1000; sys_get_trip_temp() 114 u32 out; update_trip_temp() local 132 out = (store_ptps & ~(0xFF << (thres_index * 8))); update_trip_temp() 133 out |= (temp_out & 0xFF) << (thres_index * 8); update_trip_temp() 135 SOC_DTS_OFFSET_PTPS, out); update_trip_temp() 139 pr_debug("update_trip_temp PTPS = %x\n", out); update_trip_temp() 141 SOC_DTS_OFFSET_PTMC, &out); update_trip_temp() 145 store_ptmc = out; update_trip_temp() 155 out |= (SOC_DTS_CPU_MODULE0_ENABLE_BIT | update_trip_temp() 159 out |= SOC_DTS_AUX1_ENABLE_BIT; update_trip_temp() 161 out |= SOC_DTS_AUX0_ENABLE_BIT; update_trip_temp() 165 out &= ~SOC_DTS_AUX1_ENABLE_BIT; update_trip_temp() 167 out &= ~SOC_DTS_AUX0_ENABLE_BIT; update_trip_temp() 171 SOC_DTS_OFFSET_PTMC, out); update_trip_temp() 232 u32 out; sys_get_curr_temp() local 239 SOC_DTS_OFFSET_TEMP, &out); sys_get_curr_temp() 243 out = (out & dts->temp_mask) >> dts->temp_shift; sys_get_curr_temp() 244 out -= SOC_DTS_TJMAX_ENCODING; sys_get_curr_temp() 245 *temp = sensors->tj_max - out * 1000; sys_get_curr_temp() 259 u32 out; soc_dts_enable() local 263 SOC_DTS_OFFSET_ENABLE, &out); soc_dts_enable() 267 if (!(out & BIT(id))) { soc_dts_enable() 268 out |= BIT(id); soc_dts_enable() 270 SOC_DTS_OFFSET_ENABLE, out); soc_dts_enable()
|
H A D | intel_quark_dts_thermal.c | 124 u32 out; soc_dts_enable() local 129 QRK_DTS_REG_OFFSET_ENABLE, &out); soc_dts_enable() 133 if (out & QRK_DTS_ENABLE_BIT) { soc_dts_enable() 139 out |= QRK_DTS_ENABLE_BIT; soc_dts_enable() 141 QRK_DTS_REG_OFFSET_ENABLE, out); soc_dts_enable() 157 u32 out; soc_dts_disable() local 162 QRK_DTS_REG_OFFSET_ENABLE, &out); soc_dts_disable() 166 if (!(out & QRK_DTS_ENABLE_BIT)) { soc_dts_disable() 172 out &= ~QRK_DTS_ENABLE_BIT; soc_dts_disable() 174 QRK_DTS_REG_OFFSET_ENABLE, out); soc_dts_disable() 192 u32 out; _get_trip_temp() local 196 QRK_DTS_REG_OFFSET_PTPS, &out); _get_trip_temp() 208 *temp = (out >> (trip * QRK_DTS_SHIFT_TP)) & QRK_DTS_MASK_TP_THRES; _get_trip_temp() 228 u32 out; update_trip_temp() local 260 out = (store_ptps & ~(QRK_DTS_MASK_TP_THRES << update_trip_temp() 262 out |= (temp_out & QRK_DTS_MASK_TP_THRES) << update_trip_temp() 266 QRK_DTS_REG_OFFSET_PTPS, out); update_trip_temp() 293 u32 out; sys_get_curr_temp() local 298 QRK_DTS_REG_OFFSET_TEMP, &out); sys_get_curr_temp() 309 out = (out >> QRK_DTS_OFFSET_TEMP) & QRK_DTS_MASK_TEMP; sys_get_curr_temp() 310 *temp = out - QRK_DTS_TEMP_BASE; sys_get_curr_temp() 371 u32 out; alloc_soc_dts() local 383 &out); alloc_soc_dts() 387 if (out & QRK_DTS_LOCK_BIT) { alloc_soc_dts()
|
/linux-4.4.14/security/selinux/ |
H A D | selinuxfs.c | 152 goto out; sel_write_enforce() 157 goto out; sel_write_enforce() 162 goto out; sel_write_enforce() 166 goto out; sel_write_enforce() 170 goto out; sel_write_enforce() 175 goto out; sel_write_enforce() 188 out: sel_write_enforce() 284 goto out; sel_write_disable() 289 goto out; sel_write_disable() 294 goto out; sel_write_disable() 298 goto out; sel_write_disable() 302 goto out; sel_write_disable() 307 goto out; sel_write_disable() 315 out: sel_write_disable() 445 goto out; sel_read_policy() 448 out: sel_read_policy() 515 goto out; sel_write_load() 520 goto out; sel_write_load() 524 goto out; sel_write_load() 529 goto out; sel_write_load() 533 goto out; sel_write_load() 537 goto out; sel_write_load() 558 out: sel_write_load() 577 goto out; sel_write_context() 581 goto out; sel_write_context() 585 goto out; sel_write_context() 591 goto out; sel_write_context() 596 out: sel_write_context() 620 goto out; sel_write_checkreqprot() 624 goto out; sel_write_checkreqprot() 629 goto out; sel_write_checkreqprot() 634 goto out; sel_write_checkreqprot() 638 goto out; sel_write_checkreqprot() 642 goto out; sel_write_checkreqprot() 646 out: sel_write_checkreqprot() 718 goto out; sel_write_access() 723 goto out; sel_write_access() 728 goto out; sel_write_access() 732 goto out; sel_write_access() 736 goto out; sel_write_access() 740 goto out; sel_write_access() 749 out: sel_write_access() 768 goto out; sel_write_create() 773 goto out; sel_write_create() 778 goto out; sel_write_create() 783 goto out; sel_write_create() 788 goto out; sel_write_create() 808 goto out; sel_write_create() 811 goto out; sel_write_create() 822 goto out; sel_write_create() 826 goto out; sel_write_create() 831 goto out; sel_write_create() 835 goto out; sel_write_create() 841 goto out; sel_write_create() 846 out: sel_write_create() 865 goto out; sel_write_relabel() 870 goto out; sel_write_relabel() 875 goto out; sel_write_relabel() 879 goto out; sel_write_relabel() 883 goto out; sel_write_relabel() 887 goto out; sel_write_relabel() 891 goto out; sel_write_relabel() 895 goto out; sel_write_relabel() 899 goto out; sel_write_relabel() 903 out: sel_write_relabel() 921 goto out; sel_write_user() 926 goto out; sel_write_user() 931 goto out; sel_write_user() 935 goto out; sel_write_user() 939 goto out; sel_write_user() 943 goto out; sel_write_user() 951 goto out; sel_write_user() 956 goto out; sel_write_user() 963 out: sel_write_user() 981 goto out; sel_write_member() 986 goto out; sel_write_member() 991 goto out; sel_write_member() 995 goto out; sel_write_member() 999 goto out; sel_write_member() 1003 goto out; sel_write_member() 1007 goto out; sel_write_member() 1011 goto out; sel_write_member() 1017 goto out; sel_write_member() 1022 out: sel_write_member() 1054 goto out; sel_read_bool() 1059 goto out; sel_read_bool() 1064 goto out; sel_read_bool() 1069 out: sel_read_bool() 1088 goto out; sel_write_bool() 1092 goto out; sel_write_bool() 1096 goto out; sel_write_bool() 1101 goto out; sel_write_bool() 1106 goto out; sel_write_bool() 1110 goto out; sel_write_bool() 1114 goto out; sel_write_bool() 1122 out: sel_write_bool() 1146 goto out; sel_commit_bools_write() 1150 goto out; sel_commit_bools_write() 1155 goto out; sel_commit_bools_write() 1160 goto out; sel_commit_bools_write() 1164 goto out; sel_commit_bools_write() 1168 goto out; sel_commit_bools_write() 1177 out: sel_commit_bools_write() 1223 goto out; sel_make_bools() 1227 goto out; sel_make_bools() 1233 goto out; sel_make_bools() 1238 goto out; sel_make_bools() 1243 goto out; sel_make_bools() 1248 goto out; sel_make_bools() 1262 out: sel_make_bools() 1301 goto out; sel_write_avc_cache_threshold() 1305 goto out; sel_write_avc_cache_threshold() 1310 goto out; sel_write_avc_cache_threshold() 1315 goto out; sel_write_avc_cache_threshold() 1319 goto out; sel_write_avc_cache_threshold() 1323 goto out; sel_write_avc_cache_threshold() 1328 out: sel_write_avc_cache_threshold() 1593 goto out; sel_make_perm_files() 1598 goto out; sel_make_perm_files() 1606 out: sel_make_perm_files() 1663 goto out; sel_make_classes() 1670 goto out; sel_make_classes() 1673 out: sel_make_classes()
|
/linux-4.4.14/lib/842/ |
H A D | 842_decompress.c | 63 u8 *out; member in struct:sw842_param 154 put_unaligned(cpu_to_be16((u16)v), (__be16 *)p->out); do_data() 157 put_unaligned(cpu_to_be32((u32)v), (__be32 *)p->out); do_data() 160 put_unaligned(cpu_to_be64((u64)v), (__be64 *)p->out); do_data() 166 p->out += n; do_data() 174 u64 index, offset, total = round_down(p->out - p->ostart, 8); __do_index() 210 memcpy(p->out, &p->ostart[offset], size); __do_index() 211 p->out += size; __do_index() 271 * to the output buffer @out, using no more than @olen bytes. 283 u8 *out, unsigned int *olen) sw842_decompress() 293 p.out = out; sw842_decompress() 294 p.ostart = out; sw842_decompress() 314 if (p.out == out) /* no previous bytes */ sw842_decompress() 324 memcpy(p.out, p.out - 8, 8); sw842_decompress() 325 p.out += 8; sw842_decompress() 337 memset(p.out, 0, 8); sw842_decompress() 338 p.out += 8; sw842_decompress() 357 *p.out = (u8)tmp; sw842_decompress() 358 p.out++; sw842_decompress() 390 if (crc != (u64)crc32_be(0, out, total - p.olen)) { sw842_decompress() 282 sw842_decompress(const u8 *in, unsigned int ilen, u8 *out, unsigned int *olen) sw842_decompress() argument
|
/linux-4.4.14/drivers/scsi/qla2xxx/ |
H A D | qla_dfs.c | 60 goto out; qla2x00_dfs_fce_open() 73 out: qla2x00_dfs_fce_open() 85 goto out; qla2x00_dfs_fce_release() 101 out: qla2x00_dfs_fce_release() 119 goto out; qla2x00_dfs_setup() 121 goto out; qla2x00_dfs_setup() 131 goto out; qla2x00_dfs_setup() 143 goto out; qla2x00_dfs_setup() 154 goto out; qla2x00_dfs_setup() 156 out: qla2x00_dfs_setup()
|
/linux-4.4.14/drivers/staging/fwserial/ |
H A D | dma_fifo.c | 82 fifo->out = 0; dma_fifo_alloc() 132 fifo->out = 0; dma_fifo_reset() 169 "fifo corrupt: in:%u out:%u done:%u n:%d avail:%d", dma_fifo_in() 170 fifo->in, fifo->out, fifo->done, n, fifo->avail)) dma_fifo_in() 176 df_trace("in:%u out:%u done:%u n:%d avail:%d", fifo->in, fifo->out, dma_fifo_in() 202 pended->out = fifo->out; dma_fifo_out_pend() 204 len = fifo->in - fifo->out; dma_fifo_out_pend() 211 ofs = fifo->out % fifo->capacity; dma_fifo_out_pend() 216 fifo->out += limit; dma_fifo_out_pend() 218 fifo->out += l; dma_fifo_out_pend() 219 fifo->in = fifo->out; dma_fifo_out_pend() 221 fifo->out += round_up(n, fifo->align); dma_fifo_out_pend() 222 fifo->in = fifo->out; dma_fifo_out_pend() 225 df_trace("in: %u out: %u done: %u n: %d len: %u avail: %d", fifo->in, dma_fifo_out_pend() 226 fifo->out, fifo->done, n, len, fifo->avail); dma_fifo_out_pend() 230 pended->next = fifo->out; dma_fifo_out_pend() 238 if (FAIL(fifo, fifo->out & (fifo->align - 1), dma_fifo_out_pend() 239 "fifo out unaligned:%u (align:%u)", dma_fifo_out_pend() 240 fifo->out, fifo->align)) dma_fifo_out_pend() 275 df_trace("still pending: saved out: %u len: %d", dma_fifo_out_complete() 276 pending->out, pending->len); dma_fifo_out_complete() 280 if (FAIL(fifo, pending->out != fifo->done || dma_fifo_out_complete() 282 "in:%u out:%u done:%u saved:%u next:%u", dma_fifo_out_complete() 283 fifo->in, fifo->out, fifo->done, pending->out, dma_fifo_out_complete() 292 df_trace("in: %u out: %u done: %u len: %u avail: %d", fifo->in, dma_fifo_out_complete() 293 fifo->out, fifo->done, pending->len, fifo->avail); dma_fifo_out_complete()
|
/linux-4.4.14/fs/ubifs/ |
H A D | master.c | 64 goto out; scan_for_master() 66 goto out; scan_for_master() 71 goto out; scan_for_master() 75 goto out; scan_for_master() 80 out: scan_for_master() 105 goto out; validate_master() 110 goto out; validate_master() 115 goto out; validate_master() 123 goto out; validate_master() 129 goto out; validate_master() 135 goto out; validate_master() 140 goto out; validate_master() 147 goto out; validate_master() 153 goto out; validate_master() 159 goto out; validate_master() 166 goto out; validate_master() 173 goto out; validate_master() 180 goto out; validate_master() 185 goto out; validate_master() 190 goto out; validate_master() 195 goto out; validate_master() 201 goto out; validate_master() 206 goto out; validate_master() 211 goto out; validate_master() 217 goto out; validate_master() 223 goto out; validate_master() 230 goto out; validate_master() 237 goto out; validate_master() 242 out: validate_master()
|
/linux-4.4.14/net/caif/ |
H A D | cfrfml.c | 113 goto out; cfrfml_receive() 120 goto out; cfrfml_receive() 125 goto out; cfrfml_receive() 132 goto out; cfrfml_receive() 135 goto out; cfrfml_receive() 141 goto out; cfrfml_receive() 144 goto out; cfrfml_receive() 152 goto out; cfrfml_receive() 155 goto out; cfrfml_receive() 164 goto out; cfrfml_receive() 169 out: cfrfml_receive() 200 /* Add info for MUX-layer to route the packet out. */ cfrfml_transmit_segment() 226 goto out; cfrfml_transmit() 230 goto out; cfrfml_transmit() 237 goto out; cfrfml_transmit() 245 goto out; cfrfml_transmit() 255 goto out; cfrfml_transmit() 261 goto out; cfrfml_transmit() 269 goto out; cfrfml_transmit() 272 goto out; cfrfml_transmit() 280 goto out; cfrfml_transmit() 285 out: cfrfml_transmit()
|
/linux-4.4.14/Documentation/timers/ |
H A D | hpet_example.c | 116 goto out; hpet_info() 124 out: hpet_info() 157 goto out; hpet_poll() 162 goto out; hpet_poll() 169 goto out; hpet_poll() 174 goto out; hpet_poll() 207 out: hpet_poll() 239 goto out; hpet_fasync() 254 goto out; hpet_fasync() 262 goto out; hpet_fasync() 267 goto out; hpet_fasync() 274 goto out; hpet_fasync() 279 goto out; hpet_fasync() 287 out: hpet_fasync()
|
/linux-4.4.14/tools/testing/selftests/ptrace/ |
H A D | peeksiginfo.c | 64 goto out; check_error_paths() 77 goto out; check_error_paths() 86 goto out; check_error_paths() 95 goto out; check_error_paths() 99 out: check_error_paths() 124 goto out; check_direct_path() 137 goto out; check_direct_path() 143 goto out; check_direct_path() 147 out: check_direct_path() 194 goto out; main() 197 goto out; main() 204 goto out; main() 207 goto out; main() 211 out: main()
|
/linux-4.4.14/sound/arm/ |
H A D | pxa2xx-pcm.c | 43 goto out; pxa2xx_pcm_open() 58 out: pxa2xx_pcm_open() 93 goto out; pxa2xx_pcm_new() 100 goto out; pxa2xx_pcm_new() 107 goto out; pxa2xx_pcm_new() 114 goto out; pxa2xx_pcm_new() 121 out: pxa2xx_pcm_new()
|
/linux-4.4.14/drivers/infiniband/hw/mlx5/ |
H A D | mad.c | 63 struct ib_mad_hdr *out, size_t *out_mad_size, mlx5_ib_process_mad() 69 struct ib_mad *out_mad = (struct ib_mad *)out; mlx5_ib_process_mad() 130 goto out; mlx5_query_ext_port_caps() 143 out: mlx5_query_ext_port_caps() 181 goto out; mlx5_query_mad_ifc_system_image_guid() 185 out: mlx5_query_mad_ifc_system_image_guid() 203 goto out; mlx5_query_mad_ifc_max_pkeys() 207 out: mlx5_query_mad_ifc_max_pkeys() 225 goto out; mlx5_query_mad_ifc_vendor_id() 229 out: mlx5_query_mad_ifc_vendor_id() 244 goto out; mlx5_query_mad_ifc_node_desc() 251 goto out; mlx5_query_mad_ifc_node_desc() 254 out: mlx5_query_mad_ifc_node_desc() 269 goto out; mlx5_query_mad_ifc_node_guid() 276 goto out; mlx5_query_mad_ifc_node_guid() 279 out: mlx5_query_mad_ifc_node_guid() 295 goto out; mlx5_query_mad_ifc_pkey() 304 goto out; mlx5_query_mad_ifc_pkey() 308 out: mlx5_query_mad_ifc_pkey() 324 goto out; mlx5_query_mad_ifc_gids() 333 goto out; mlx5_query_mad_ifc_gids() 344 goto out; mlx5_query_mad_ifc_gids() 348 out: mlx5_query_mad_ifc_gids() 372 goto out; mlx5_query_mad_ifc_port() 383 goto out; mlx5_query_mad_ifc_port() 431 goto out; mlx5_query_mad_ifc_port() 439 out: mlx5_query_mad_ifc_port() 60 mlx5_ib_process_mad(struct ib_device *ibdev, int mad_flags, u8 port_num, const struct ib_wc *in_wc, const struct ib_grh *in_grh, const struct ib_mad_hdr *in, size_t in_mad_size, struct ib_mad_hdr *out, size_t *out_mad_size, u16 *out_mad_pkey_index) mlx5_ib_process_mad() argument
|
/linux-4.4.14/drivers/video/fbdev/matrox/ |
H A D | matroxfb_crtc2.c | 345 int out; matroxfb_dh_set_par() local 357 for (out = 0; out < MATROXFB_MAX_OUTPUTS; out++) { matroxfb_dh_set_par() 358 if (minfo->outputs[out].src == MATROXFB_SRC_CRTC2) { matroxfb_dh_set_par() 360 if (minfo->outputs[out].output->compute) { matroxfb_dh_set_par() 361 minfo->outputs[out].output->compute(minfo->outputs[out].data, &mt); matroxfb_dh_set_par() 376 for (out = 0; out < MATROXFB_MAX_OUTPUTS; out++) { matroxfb_dh_set_par() 377 if (minfo->outputs[out].src == MATROXFB_SRC_CRTC2 && matroxfb_dh_set_par() 378 minfo->outputs[out].output->program) { matroxfb_dh_set_par() 379 minfo->outputs[out].output->program(minfo->outputs[out].data); matroxfb_dh_set_par() 382 for (out = 0; out < MATROXFB_MAX_OUTPUTS; out++) { matroxfb_dh_set_par() 383 if (minfo->outputs[out].src == MATROXFB_SRC_CRTC2 && matroxfb_dh_set_par() 384 minfo->outputs[out].output->start) { matroxfb_dh_set_par() 385 minfo->outputs[out].output->start(minfo->outputs[out].data); matroxfb_dh_set_par() 408 /* mask out reserved bits + field number (odd/even) */ matroxfb_dh_get_vblank() 464 int out; DBG() local 469 for (out = 0; out < 32; out++) { DBG() 470 if (tmp & (1 << out)) { DBG() 471 if (out >= MATROXFB_MAX_OUTPUTS) DBG() 473 if (!minfo->outputs[out].output) DBG() 475 switch (minfo->outputs[out].src) { DBG() 491 for (out = 0; out < MATROXFB_MAX_OUTPUTS; out++) { DBG() 492 if (tmp & (1 << out)) { DBG() 493 if (minfo->outputs[out].src != MATROXFB_SRC_CRTC2) { DBG() 495 minfo->outputs[out].src = MATROXFB_SRC_CRTC2; DBG() 497 } else if (minfo->outputs[out].src == MATROXFB_SRC_CRTC2) { DBG() 499 minfo->outputs[out].src = MATROXFB_SRC_NONE; DBG() 510 int out; DBG() local 512 for (out = 0; out < MATROXFB_MAX_OUTPUTS; out++) { DBG() 513 if (minfo->outputs[out].src == MATROXFB_SRC_CRTC2) { DBG() 514 conn |= 1 << out; DBG() 524 int out; DBG() local 526 for (out = 0; out < MATROXFB_MAX_OUTPUTS; out++) { DBG() 527 if (minfo->outputs[out].output) { DBG() 528 switch (minfo->outputs[out].src) { DBG() 531 tmp |= 1 << out; DBG()
|
/linux-4.4.14/net/appletalk/ |
H A D | atalk_proc.c | 48 goto out; atalk_seq_interface_next() 52 out: atalk_seq_interface_next() 69 goto out; atalk_seq_interface_show() 77 out: atalk_seq_interface_show() 109 goto out; atalk_seq_route_next() 113 out: atalk_seq_route_next() 129 goto out; atalk_seq_route_show() 144 out: atalk_seq_route_show() 174 goto out; atalk_seq_socket_show() 188 out: atalk_seq_socket_show() 261 goto out; atalk_proc_init() 283 out: atalk_proc_init() 293 goto out; atalk_proc_init()
|
/linux-4.4.14/arch/x86/crypto/ |
H A D | crct10dif-pclmul_glue.c | 71 static int chksum_final(struct shash_desc *desc, u8 *out) chksum_final() argument 75 *(__u16 *)out = ctx->crc; chksum_final() 80 u8 *out) __chksum_finup() 84 *(__u16 *)out = crc_t10dif_pcl(*crcp, data, len); __chksum_finup() 87 *(__u16 *)out = crc_t10dif_generic(*crcp, data, len); __chksum_finup() 92 unsigned int len, u8 *out) chksum_finup() 96 return __chksum_finup(&ctx->crc, data, len, out); chksum_finup() 100 unsigned int length, u8 *out) chksum_digest() 104 return __chksum_finup(&ctx->crc, data, length, out); chksum_digest() 79 __chksum_finup(__u16 *crcp, const u8 *data, unsigned int len, u8 *out) __chksum_finup() argument 91 chksum_finup(struct shash_desc *desc, const u8 *data, unsigned int len, u8 *out) chksum_finup() argument 99 chksum_digest(struct shash_desc *desc, const u8 *data, unsigned int length, u8 *out) chksum_digest() argument
|
H A D | sha1_ssse3_glue.c | 58 unsigned int len, u8 *out, sha1_transform_fn *sha1_xform) sha1_finup() 61 return crypto_sha1_finup(desc, data, len, out); sha1_finup() 70 return sha1_base_finish(desc, out); sha1_finup() 84 unsigned int len, u8 *out) sha1_ssse3_finup() 86 return sha1_finup(desc, data, len, out, sha1_ssse3_finup() 91 static int sha1_ssse3_final(struct shash_desc *desc, u8 *out) sha1_ssse3_final() argument 93 return sha1_ssse3_finup(desc, NULL, 0, out); sha1_ssse3_final() 138 unsigned int len, u8 *out) sha1_avx_finup() 140 return sha1_finup(desc, data, len, out, sha1_avx_finup() 144 static int sha1_avx_final(struct shash_desc *desc, u8 *out) sha1_avx_final() argument 146 return sha1_avx_finup(desc, NULL, 0, out); sha1_avx_final() 230 unsigned int len, u8 *out) sha1_avx2_finup() 232 return sha1_finup(desc, data, len, out, sha1_avx2_finup() 236 static int sha1_avx2_final(struct shash_desc *desc, u8 *out) sha1_avx2_final() argument 238 return sha1_avx2_finup(desc, NULL, 0, out); sha1_avx2_final() 288 unsigned int len, u8 *out) sha1_ni_finup() 290 return sha1_finup(desc, data, len, out, sha1_ni_finup() 294 static int sha1_ni_final(struct shash_desc *desc, u8 *out) sha1_ni_final() argument 296 return sha1_ni_finup(desc, NULL, 0, out); sha1_ni_final() 57 sha1_finup(struct shash_desc *desc, const u8 *data, unsigned int len, u8 *out, sha1_transform_fn *sha1_xform) sha1_finup() argument 83 sha1_ssse3_finup(struct shash_desc *desc, const u8 *data, unsigned int len, u8 *out) sha1_ssse3_finup() argument 137 sha1_avx_finup(struct shash_desc *desc, const u8 *data, unsigned int len, u8 *out) sha1_avx_finup() argument 229 sha1_avx2_finup(struct shash_desc *desc, const u8 *data, unsigned int len, u8 *out) sha1_avx2_finup() argument 287 sha1_ni_finup(struct shash_desc *desc, const u8 *data, unsigned int len, u8 *out) sha1_ni_finup() argument
|
H A D | sha256_ssse3_glue.c | 68 unsigned int len, u8 *out, sha256_transform_fn *sha256_xform) sha256_finup() 71 return crypto_sha256_finup(desc, data, len, out); sha256_finup() 80 return sha256_base_finish(desc, out); sha256_finup() 90 unsigned int len, u8 *out) sha256_ssse3_finup() 92 return sha256_finup(desc, data, len, out, sha256_transform_ssse3); sha256_ssse3_finup() 96 static int sha256_ssse3_final(struct shash_desc *desc, u8 *out) sha256_ssse3_final() argument 98 return sha256_ssse3_finup(desc, NULL, 0, out); sha256_ssse3_final() 159 unsigned int len, u8 *out) sha256_avx_finup() 161 return sha256_finup(desc, data, len, out, sha256_transform_avx); sha256_avx_finup() 164 static int sha256_avx_final(struct shash_desc *desc, u8 *out) sha256_avx_final() argument 166 return sha256_avx_finup(desc, NULL, 0, out); sha256_avx_final() 243 unsigned int len, u8 *out) sha256_avx2_finup() 245 return sha256_finup(desc, data, len, out, sha256_transform_rorx); sha256_avx2_finup() 248 static int sha256_avx2_final(struct shash_desc *desc, u8 *out) sha256_avx2_final() argument 250 return sha256_avx2_finup(desc, NULL, 0, out); sha256_avx2_final() 325 unsigned int len, u8 *out) sha256_ni_finup() 327 return sha256_finup(desc, data, len, out, sha256_ni_transform); sha256_ni_finup() 330 static int sha256_ni_final(struct shash_desc *desc, u8 *out) sha256_ni_final() argument 332 return sha256_ni_finup(desc, NULL, 0, out); sha256_ni_final() 67 sha256_finup(struct shash_desc *desc, const u8 *data, unsigned int len, u8 *out, sha256_transform_fn *sha256_xform) sha256_finup() argument 89 sha256_ssse3_finup(struct shash_desc *desc, const u8 *data, unsigned int len, u8 *out) sha256_ssse3_finup() argument 158 sha256_avx_finup(struct shash_desc *desc, const u8 *data, unsigned int len, u8 *out) sha256_avx_finup() argument 242 sha256_avx2_finup(struct shash_desc *desc, const u8 *data, unsigned int len, u8 *out) sha256_avx2_finup() argument 324 sha256_ni_finup(struct shash_desc *desc, const u8 *data, unsigned int len, u8 *out) sha256_ni_finup() argument
|
/linux-4.4.14/arch/x86/um/os-Linux/ |
H A D | task_size.c | 40 goto out; page_ok() 51 goto out; page_ok() 54 goto out; page_ok() 61 out: page_ok() 86 * We're going to be longjmping out of the signal handler, so os_get_top_address() 98 * the first valid page (or run out of them). os_get_top_address() 105 /* If we've got this far, we ran out of pages. */ os_get_top_address() 120 goto out; os_get_top_address() 130 out: os_get_top_address()
|
/linux-4.4.14/fs/hfsplus/ |
H A D | dir.c | 58 goto out; hfsplus_lookup() 123 out: hfsplus_lookup() 151 goto out; hfsplus_readdir() 156 goto out; hfsplus_readdir() 161 goto out; hfsplus_readdir() 167 goto out; hfsplus_readdir() 175 goto out; hfsplus_readdir() 180 goto out; hfsplus_readdir() 184 goto out; hfsplus_readdir() 188 goto out; hfsplus_readdir() 191 goto out; hfsplus_readdir() 196 goto out; hfsplus_readdir() 201 goto out; hfsplus_readdir() 210 goto out; hfsplus_readdir() 216 goto out; hfsplus_readdir() 232 goto out; hfsplus_readdir() 255 goto out; hfsplus_readdir() 260 goto out; hfsplus_readdir() 263 goto out; hfsplus_readdir() 270 goto out; hfsplus_readdir() 277 out: hfsplus_readdir() 324 goto out; hfsplus_link() 333 goto out; hfsplus_link() 339 goto out; hfsplus_link() 348 out: hfsplus_link() 378 goto out; hfsplus_unlink() 382 goto out; hfsplus_unlink() 405 out: hfsplus_unlink() 422 goto out; hfsplus_rmdir() 427 out: hfsplus_rmdir() 442 goto out; hfsplus_symlink() 463 goto out; hfsplus_symlink() 469 out: hfsplus_symlink() 484 goto out; hfsplus_mknod() 504 goto out; hfsplus_mknod() 510 out: hfsplus_mknod()
|
/linux-4.4.14/fs/qnx6/ |
H A D | super_mmi.c | 55 goto out; qnx6_mmi_fill_super() 63 goto out; qnx6_mmi_fill_super() 73 goto out; qnx6_mmi_fill_super() 79 goto out; qnx6_mmi_fill_super() 86 goto out; qnx6_mmi_fill_super() 92 goto out; qnx6_mmi_fill_super() 99 goto out; qnx6_mmi_fill_super() 105 goto out; qnx6_mmi_fill_super() 142 out: qnx6_mmi_fill_super()
|
/linux-4.4.14/arch/powerpc/boot/ |
H A D | wii.c | 61 goto out; mipc_get_infohdr() 68 goto out; mipc_get_infohdr() 73 goto out; mipc_get_infohdr() 76 out: mipc_get_infohdr() 88 goto out; mipc_get_mem2_boundary() 95 goto out; mipc_get_mem2_boundary() 99 out: mipc_get_mem2_boundary() 120 goto out; platform_fixups() 136 out: platform_fixups()
|
H A D | stdlib.c | 21 goto out; strtoull() 40 out: strtoull()
|
/linux-4.4.14/drivers/ssb/ |
H A D | pci.c | 88 u32 in, out, outenable; ssb_pci_xtal() local 97 err = pci_read_config_dword(bus->host_pci, SSB_GPIO_OUT, &out); ssb_pci_xtal() 114 out |= SSB_GPIO_XTAL; ssb_pci_xtal() 116 out |= SSB_GPIO_PLL; ssb_pci_xtal() 117 err = pci_write_config_dword(bus->host_pci, SSB_GPIO_OUT, out); ssb_pci_xtal() 128 out &= ~SSB_GPIO_PLL; ssb_pci_xtal() 129 err = pci_write_config_dword(bus->host_pci, SSB_GPIO_OUT, out); ssb_pci_xtal() 146 out &= ~SSB_GPIO_XTAL; ssb_pci_xtal() 150 out |= SSB_GPIO_PLL; ssb_pci_xtal() 152 err = pci_write_config_dword(bus->host_pci, SSB_GPIO_OUT, out); ssb_pci_xtal() 160 out: ssb_pci_xtal() 166 goto out; ssb_pci_xtal() 173 out->_outvar = ((in[SPOFF(_offset)] & (_mask)) >> (_shift)) 175 out->_outvar = ((((u32)in[SPOFF((_offset)+2)] << 16 | \ 350 static void sprom_extract_r23(struct ssb_sprom *out, const u16 *in) sprom_extract_r23() argument 365 static void sprom_extract_r123(struct ssb_sprom *out, const u16 *in) sprom_extract_r123() argument 369 if (out->revision == 3) /* rev 3 moved MAC */ sprom_extract_r123() 376 sprom_get_mac(out->il0mac, &in[SPOFF(loc[0])]); sprom_extract_r123() 377 if (out->revision < 3) { /* only rev 1-2 have et0, et1 */ sprom_extract_r123() 378 sprom_get_mac(out->et0mac, &in[SPOFF(loc[1])]); sprom_extract_r123() 379 sprom_get_mac(out->et1mac, &in[SPOFF(loc[2])]); sprom_extract_r123() 388 if (out->revision == 1) sprom_extract_r123() 419 out->antenna_gain.a0 = sprom_extract_antgain(out->revision, in, sprom_extract_r123() 423 out->antenna_gain.a1 = sprom_extract_antgain(out->revision, in, sprom_extract_r123() 427 if (out->revision >= 2) sprom_extract_r123() 428 sprom_extract_r23(out, in); sprom_extract_r123() 432 static void sprom_extract_r458(struct ssb_sprom *out, const u16 *in) sprom_extract_r458() argument 471 static void sprom_extract_r45(struct ssb_sprom *out, const u16 *in) sprom_extract_r45() argument 481 ARRAY_SIZE(out->core_pwr_info)); sprom_extract_r45() 483 if (out->revision == 4) sprom_extract_r45() 488 sprom_get_mac(out->il0mac, &in[SPOFF(il0mac_offset)]); sprom_extract_r45() 495 if (out->revision == 4) { sprom_extract_r45() 520 if (out->revision == 4) { sprom_extract_r45() 537 out->antenna_gain.a0 = sprom_extract_antgain(out->revision, in, sprom_extract_r45() 541 out->antenna_gain.a1 = sprom_extract_antgain(out->revision, in, sprom_extract_r45() 545 out->antenna_gain.a2 = sprom_extract_antgain(out->revision, in, sprom_extract_r45() 549 out->antenna_gain.a3 = sprom_extract_antgain(out->revision, in, sprom_extract_r45() 591 sprom_extract_r458(out, in); sprom_extract_r45() 596 static void sprom_extract_r8(struct ssb_sprom *out, const u16 *in) sprom_extract_r8() argument 605 ARRAY_SIZE(out->core_pwr_info)); sprom_extract_r8() 608 sprom_get_mac(out->il0mac, &in[SPOFF(SSB_SPROM8_IL0MAC)]); sprom_extract_r8() 679 out->antenna_gain.a0 = sprom_extract_antgain(out->revision, in, sprom_extract_r8() 683 out->antenna_gain.a1 = sprom_extract_antgain(out->revision, in, sprom_extract_r8() 687 out->antenna_gain.a2 = sprom_extract_antgain(out->revision, in, sprom_extract_r8() 691 out->antenna_gain.a3 = sprom_extract_antgain(out->revision, in, sprom_extract_r8() 808 sprom_extract_r458(out, in); sprom_extract_r8() 813 static int sprom_extract(struct ssb_bus *bus, struct ssb_sprom *out, sprom_extract() argument 816 memset(out, 0, sizeof(*out)); sprom_extract() 818 out->revision = in[size - 1] & 0x00FF; sprom_extract() 819 ssb_dbg("SPROM revision %d detected\n", out->revision); sprom_extract() 820 memset(out->et0mac, 0xFF, 6); /* preset et0 and et1 mac */ sprom_extract() 821 memset(out->et1mac, 0xFF, 6); sprom_extract() 827 out->revision = 1; sprom_extract() 828 ssb_dbg("SPROM treated as revision %d\n", out->revision); sprom_extract() 831 switch (out->revision) { sprom_extract() 835 sprom_extract_r123(out, in); sprom_extract() 839 sprom_extract_r45(out, in); sprom_extract() 842 sprom_extract_r8(out, in); sprom_extract() 846 out->revision); sprom_extract() 847 out->revision = 1; sprom_extract() 848 sprom_extract_r123(out, in); sprom_extract() 851 if (out->boardflags_lo == 0xFFFF) sprom_extract() 852 out->boardflags_lo = 0; /* per specs */ sprom_extract() 853 if (out->boardflags_hi == 0xFFFF) sprom_extract() 854 out->boardflags_hi = 0; /* per specs */ sprom_extract() 942 goto out; ssb_pci_get_invariants() 945 out: ssb_pci_get_invariants() 1185 goto out; ssb_pci_init() 1187 out: ssb_pci_init()
|
/linux-4.4.14/fs/nls/ |
H A D | nls_koi8-ru.c | 17 unsigned char *out, int boundlen) uni2char() 25 out[0] = 0xbe; uni2char() 27 out[0] = 0xae; uni2char() 31 return p_nls->uni2char(uni, out, boundlen); uni2char() 36 return p_nls->uni2char(uni, out, boundlen); uni2char() 16 uni2char(const wchar_t uni, unsigned char *out, int boundlen) uni2char() argument
|
H A D | nls_utf8.c | 14 static int uni2char(wchar_t uni, unsigned char *out, int boundlen) uni2char() argument 21 n = utf32_to_utf8(uni, out, boundlen); uni2char() 23 *out = '?'; uni2char()
|
/linux-4.4.14/drivers/video/backlight/ |
H A D | lm3639_bl.c | 62 goto out; lm3639_chip_init() 67 goto out; lm3639_chip_init() 72 goto out; lm3639_chip_init() 76 goto out; lm3639_chip_init() 89 goto out; lm3639_chip_init() 92 out: lm3639_chip_init() 107 goto out; lm3639_bled_update_status() 126 goto out; lm3639_bled_update_status() 129 goto out; lm3639_bled_update_status() 136 goto out; lm3639_bled_update_status() 139 out: lm3639_bled_update_status() 162 goto out; lm3639_bled_get_brightness() 168 goto out; lm3639_bled_get_brightness() 172 out: lm3639_bled_get_brightness() 206 goto out; lm3639_bled_mode_store() 210 out: lm3639_bled_mode_store() 234 goto out; lm3639_torch_brightness_set() 242 goto out; lm3639_torch_brightness_set() 249 goto out; lm3639_torch_brightness_set() 252 goto out; lm3639_torch_brightness_set() 255 out: lm3639_torch_brightness_set() 271 goto out; lm3639_flash_brightness_set() 278 goto out; lm3639_flash_brightness_set() 287 goto out; lm3639_flash_brightness_set() 290 goto out; lm3639_flash_brightness_set() 293 out: lm3639_flash_brightness_set()
|
/linux-4.4.14/tools/testing/selftests/vm/ |
H A D | mlock2-tests.c | 62 goto out; get_vm_area() 69 goto out; get_vm_area() 80 goto out; get_vm_area() 83 out: get_vm_area() 165 goto out; seek_to_smaps_entry() 176 out: seek_to_smaps_entry() 194 goto out; is_vmflag_set() 207 goto out; is_vmflag_set() 210 out: is_vmflag_set() 232 goto out; is_vma_lock_on_fault() 237 goto out; is_vma_lock_on_fault() 251 goto out; is_vma_lock_on_fault() 267 goto out; is_vma_lock_on_fault() 273 out: is_vma_lock_on_fault() 360 goto out; test_mlock_lock() 385 out: test_mlock_lock() 469 goto out; test_mlock_onfault() 497 out: test_mlock_onfault() 512 goto out; test_lock_onfault_of_present() 545 out: test_lock_onfault_of_present() 560 goto out; test_munlockall() 565 goto out; test_munlockall() 586 goto out; test_munlockall() 607 goto out; test_munlockall() 622 out: test_munlockall() 649 goto out; test_vma_management() 656 goto out; test_vma_management() 667 goto out; test_vma_management() 672 goto out; test_vma_management() 679 goto out; test_vma_management() 685 goto out; test_vma_management() 691 goto out; test_vma_management() 698 goto out; test_vma_management() 704 goto out; test_vma_management() 708 out: test_vma_management()
|
/linux-4.4.14/drivers/crypto/ |
H A D | padlock-sha.c | 55 static int padlock_sha_export(struct shash_desc *desc, void *out) padlock_sha_export() argument 59 return crypto_shash_export(&dctx->fallback, out); padlock_sha_export() 80 unsigned int count, u8 *out) padlock_sha1_finup() 82 /* We can't store directly to *out as it may be unaligned. */ padlock_sha1_finup() 98 goto out; padlock_sha1_finup() 101 return crypto_shash_finup(&dctx->fallback, in, count, out); padlock_sha1_finup() 110 goto out; padlock_sha1_finup() 132 padlock_output_block((uint32_t *)result, (uint32_t *)out, 5); padlock_sha1_finup() 134 out: padlock_sha1_finup() 138 static int padlock_sha1_final(struct shash_desc *desc, u8 *out) padlock_sha1_final() argument 142 return padlock_sha1_finup(desc, buf, 0, out); padlock_sha1_final() 146 unsigned int count, u8 *out) padlock_sha256_finup() 148 /* We can't store directly to *out as it may be unaligned. */ padlock_sha256_finup() 164 goto out; padlock_sha256_finup() 167 return crypto_shash_finup(&dctx->fallback, in, count, out); padlock_sha256_finup() 176 goto out; padlock_sha256_finup() 198 padlock_output_block((uint32_t *)result, (uint32_t *)out, 8); padlock_sha256_finup() 200 out: padlock_sha256_finup() 204 static int padlock_sha256_final(struct shash_desc *desc, u8 *out) padlock_sha256_final() argument 208 return padlock_sha256_finup(desc, buf, 0, out); padlock_sha256_final() 226 goto out; padlock_cra_init() 233 out: padlock_cra_init() 311 /*The PHE require the out buffer must 128 bytes and 16-bytes aligned*/ padlock_sha1_update_nano() 359 static int padlock_sha1_final_nano(struct shash_desc *desc, u8 *out) padlock_sha1_final_nano() argument 368 /* Pad out to 56 mod 64 */ padlock_sha1_final_nano() 377 padlock_output_block((uint32_t *)(state->state), (uint32_t *)out, 5); padlock_sha1_final_nano() 400 /*The PHE require the out buffer must 128 bytes and 16-bytes aligned*/ padlock_sha256_update_nano() 448 static int padlock_sha256_final_nano(struct shash_desc *desc, u8 *out) padlock_sha256_final_nano() argument 458 /* Pad out to 56 mod 64 */ padlock_sha256_final_nano() 467 padlock_output_block((uint32_t *)(state->state), (uint32_t *)out, 8); padlock_sha256_final_nano() 473 void *out) padlock_sha_export_nano() 478 memcpy(out, sctx, statesize); padlock_sha_export_nano() 558 goto out; padlock_init() 571 out: padlock_init() 79 padlock_sha1_finup(struct shash_desc *desc, const u8 *in, unsigned int count, u8 *out) padlock_sha1_finup() argument 145 padlock_sha256_finup(struct shash_desc *desc, const u8 *in, unsigned int count, u8 *out) padlock_sha256_finup() argument 472 padlock_sha_export_nano(struct shash_desc *desc, void *out) padlock_sha_export_nano() argument
|
/linux-4.4.14/drivers/staging/iio/meter/ |
H A D | ade7854-i2c.c | 114 goto out; ade7854_i2c_read_reg_8() 118 goto out; ade7854_i2c_read_reg_8() 121 out: ade7854_i2c_read_reg_8() 140 goto out; ade7854_i2c_read_reg_16() 144 goto out; ade7854_i2c_read_reg_16() 147 out: ade7854_i2c_read_reg_16() 166 goto out; ade7854_i2c_read_reg_24() 170 goto out; ade7854_i2c_read_reg_24() 173 out: ade7854_i2c_read_reg_24() 192 goto out; ade7854_i2c_read_reg_32() 196 goto out; ade7854_i2c_read_reg_32() 200 out: ade7854_i2c_read_reg_32()
|
/linux-4.4.14/drivers/oprofile/ |
H A D | oprof.c | 45 goto out; oprofile_setup() 87 out: oprofile_setup() 127 goto out; oprofile_set_timeout() 132 goto out; oprofile_set_timeout() 138 goto out; oprofile_set_timeout() 143 out: oprofile_set_timeout() 164 goto out; oprofile_start() 169 goto out; oprofile_start() 174 goto out; oprofile_start() 179 out: oprofile_start() 190 goto out; oprofile_stop() 198 out: oprofile_stop()
|
/linux-4.4.14/drivers/acpi/apei/ |
H A D | erst-dbg.c | 108 goto out; erst_dbg_read() 119 goto out; erst_dbg_read() 127 goto out; erst_dbg_read() 133 goto out; erst_dbg_read() 140 goto out; erst_dbg_read() 149 goto out; erst_dbg_read() 153 goto out; erst_dbg_read() 155 out: erst_dbg_read() 181 goto out; erst_dbg_write() 189 goto out; erst_dbg_write() 194 goto out; erst_dbg_write() 198 out: erst_dbg_write()
|
/linux-4.4.14/arch/um/os-Linux/ |
H A D | tty.c | 47 goto out; get_pty() 54 goto out; get_pty() 57 out: get_pty()
|
/linux-4.4.14/arch/arm64/crypto/ |
H A D | aes-ce-cipher.c | 42 struct aes_block *out = (struct aes_block *)dst; aes_cipher_encrypt() local 71 " st1 {v0.16b}, %[out] ;" aes_cipher_encrypt() 73 : [out] "=Q"(*out), aes_cipher_encrypt() 87 struct aes_block *out = (struct aes_block *)dst; aes_cipher_decrypt() local 116 " st1 {v0.16b}, %[out] ;" aes_cipher_decrypt() 118 : [out] "=Q"(*out), aes_cipher_decrypt() 140 "umov %w[out], v0.4s[0] ;" aes_sub() 142 : [out] "=r"(ret) aes_sub() 210 "st1 {v1.16b}, %[out] ;" ce_aes_expandkey() 212 : [out] "=Q"(key_dec[i]) ce_aes_expandkey()
|
H A D | crc32-arm64.c | 146 static int chksum_final(struct shash_desc *desc, u8 *out) chksum_final() argument 150 put_unaligned_le32(ctx->crc, out); chksum_final() 154 static int chksumc_final(struct shash_desc *desc, u8 *out) chksumc_final() argument 158 put_unaligned_le32(~ctx->crc, out); chksumc_final() 162 static int __chksum_finup(u32 crc, const u8 *data, unsigned int len, u8 *out) __chksum_finup() argument 164 put_unaligned_le32(crc32_arm64_le_hw(crc, data, len), out); __chksum_finup() local 168 static int __chksumc_finup(u32 crc, const u8 *data, unsigned int len, u8 *out) __chksumc_finup() argument 170 put_unaligned_le32(~crc32c_arm64_le_hw(crc, data, len), out); __chksumc_finup() local 175 unsigned int len, u8 *out) chksum_finup() 179 return __chksum_finup(ctx->crc, data, len, out); chksum_finup() 183 unsigned int len, u8 *out) chksumc_finup() 187 return __chksumc_finup(ctx->crc, data, len, out); chksumc_finup() 191 unsigned int length, u8 *out) chksum_digest() 195 return __chksum_finup(mctx->key, data, length, out); chksum_digest() 199 unsigned int length, u8 *out) chksumc_digest() 203 return __chksumc_finup(mctx->key, data, length, out); chksumc_digest() 174 chksum_finup(struct shash_desc *desc, const u8 *data, unsigned int len, u8 *out) chksum_finup() argument 182 chksumc_finup(struct shash_desc *desc, const u8 *data, unsigned int len, u8 *out) chksumc_finup() argument 190 chksum_digest(struct shash_desc *desc, const u8 *data, unsigned int length, u8 *out) chksum_digest() argument 198 chksumc_digest(struct shash_desc *desc, const u8 *data, unsigned int length, u8 *out) chksumc_digest() argument
|
/linux-4.4.14/fs/ext4/ |
H A D | inline.c | 78 goto out; get_max_inline_xattr_value_size() 88 out: get_max_inline_xattr_value_size() 150 goto out; ext4_find_inline_data_nolock() 159 out: ext4_find_inline_data_nolock() 188 goto out; ext4_read_inline_data() 200 out: ext4_read_inline_data() 266 goto out; ext4_create_inline_data() 282 goto out; ext4_create_inline_data() 291 goto out; ext4_create_inline_data() 305 out: ext4_create_inline_data() 333 goto out; ext4_update_inline_data() 340 goto out; ext4_update_inline_data() 345 goto out; ext4_update_inline_data() 350 goto out; ext4_update_inline_data() 358 goto out; ext4_update_inline_data() 368 out: ext4_update_inline_data() 423 goto out; ext4_destroy_inline_data_nolock() 428 goto out; ext4_destroy_inline_data_nolock() 432 goto out; ext4_destroy_inline_data_nolock() 452 out: ext4_destroy_inline_data_nolock() 473 goto out; ext4_read_inline_page() 478 goto out; ext4_read_inline_page() 489 out: ext4_read_inline_page() 551 goto out; ext4_convert_inline_data_to_extent() 561 goto out; ext4_convert_inline_data_to_extent() 569 goto out; ext4_convert_inline_data_to_extent() 577 goto out; ext4_convert_inline_data_to_extent() 582 goto out; ext4_convert_inline_data_to_extent() 620 out: ext4_convert_inline_data_to_extent() 665 goto out; ext4_try_to_write_inline_data() 670 goto out; ext4_try_to_write_inline_data() 684 goto out; ext4_try_to_write_inline_data() 706 out: ext4_try_to_write_inline_data() 726 goto out; ext4_write_inline_data_end() 734 goto out; ext4_write_inline_data_end() 749 out: ext4_write_inline_data_end() 801 goto out; ext4_da_convert_inline_data_to_extent() 809 goto out; ext4_da_convert_inline_data_to_extent() 827 out: ext4_da_convert_inline_data_to_extent() 865 goto out; ext4_da_write_inline_data_begin() 892 goto out; ext4_da_write_inline_data_begin() 924 out: ext4_da_write_inline_data_begin() 1028 * happen is that the times are slightly out of date ext4_add_dirent_to_inline() 1152 goto out; ext4_finish_convert_inline_dir() 1154 out: ext4_finish_convert_inline_dir() 1172 goto out; ext4_convert_inline_data_nolock() 1177 goto out; ext4_convert_inline_data_nolock() 1188 goto out; ext4_convert_inline_data_nolock() 1193 goto out; ext4_convert_inline_data_nolock() 1236 out: ext4_convert_inline_data_nolock() 1261 goto out; ext4_try_add_inline_entry() 1270 goto out; ext4_try_add_inline_entry() 1279 goto out; ext4_try_add_inline_entry() 1293 goto out; ext4_try_add_inline_entry() 1303 out: ext4_try_add_inline_entry() 1340 goto out; htree_inlinedir_to_tree() 1348 goto out; htree_inlinedir_to_tree() 1354 goto out; htree_inlinedir_to_tree() 1391 goto out; htree_inlinedir_to_tree() 1408 goto out; htree_inlinedir_to_tree() 1413 out: htree_inlinedir_to_tree() 1449 goto out; ext4_read_inline_dir() 1457 goto out; ext4_read_inline_dir() 1463 goto out; ext4_read_inline_dir() 1526 goto out; ext4_read_inline_dir() 1533 goto out; ext4_read_inline_dir() 1542 goto out; ext4_read_inline_dir() 1547 goto out; ext4_read_inline_dir() 1551 out: ext4_read_inline_dir() 1590 goto out; ext4_try_create_inline_dir() 1605 out: ext4_try_create_inline_dir() 1627 goto out; ext4_find_inline_entry() 1638 goto out; ext4_find_inline_entry() 1641 goto out; ext4_find_inline_entry() 1651 out: ext4_find_inline_entry() 1676 goto out; ext4_delete_inline_entry() 1694 goto out; ext4_delete_inline_entry() 1699 goto out; ext4_delete_inline_entry() 1704 goto out; ext4_delete_inline_entry() 1707 out: ext4_delete_inline_entry() 1763 goto out; empty_inline_dir() 1772 goto out; empty_inline_dir() 1790 goto out; empty_inline_dir() 1794 goto out; empty_inline_dir() 1799 out: empty_inline_dir() 1830 goto out; ext4_inline_data_fiemap() 1835 goto out; ext4_inline_data_fiemap() 1842 goto out; ext4_inline_data_fiemap() 1852 out: ext4_inline_data_fiemap() 1884 goto out; ext4_try_to_evict_inline_data() 1888 out: ext4_try_to_evict_inline_data() 1921 goto out; ext4_inline_data_truncate() 1924 goto out; ext4_inline_data_truncate() 1969 out: ext4_inline_data_truncate() 2012 goto out; ext4_convert_inline_data() 2017 out: ext4_convert_inline_data()
|
/linux-4.4.14/arch/powerpc/lib/ |
H A D | checksum_wrappers_64.c | 37 goto out; csum_and_copy_from_user() 43 goto out; csum_and_copy_from_user() 62 out: csum_and_copy_from_user() 78 goto out; csum_and_copy_to_user() 84 goto out; csum_and_copy_to_user() 99 out: csum_and_copy_to_user()
|
/linux-4.4.14/tools/perf/arch/x86/tests/ |
H A D | intel-cqm.c | 59 goto out; test__intel_cqm_count_nmi_context() 65 goto out; test__intel_cqm_count_nmi_context() 83 goto out; test__intel_cqm_count_nmi_context() 95 goto out; test__intel_cqm_count_nmi_context() 107 goto out; test__intel_cqm_count_nmi_context() 121 out: test__intel_cqm_count_nmi_context()
|
/linux-4.4.14/net/l2tp/ |
H A D | l2tp_netlink.c | 91 goto out; l2tp_nl_cmd_noop() 108 out: l2tp_nl_cmd_noop() 181 goto out; l2tp_nl_cmd_tunnel_create() 187 goto out; l2tp_nl_cmd_tunnel_create() 193 goto out; l2tp_nl_cmd_tunnel_create() 199 goto out; l2tp_nl_cmd_tunnel_create() 224 goto out; l2tp_nl_cmd_tunnel_create() 247 goto out; l2tp_nl_cmd_tunnel_create() 262 out: l2tp_nl_cmd_tunnel_create() 275 goto out; l2tp_nl_cmd_tunnel_delete() 282 goto out; l2tp_nl_cmd_tunnel_delete() 290 out: l2tp_nl_cmd_tunnel_delete() 303 goto out; l2tp_nl_cmd_tunnel_modify() 310 goto out; l2tp_nl_cmd_tunnel_modify() 319 out: l2tp_nl_cmd_tunnel_modify() 370 goto out; l2tp_nl_tunnel_send() 404 out: l2tp_nl_tunnel_send() 423 goto out; l2tp_nl_cmd_tunnel_get() 431 goto out; l2tp_nl_cmd_tunnel_get() 437 goto out; l2tp_nl_cmd_tunnel_get() 450 out: l2tp_nl_cmd_tunnel_get() 463 goto out; l2tp_nl_cmd_tunnel_dump() 468 goto out; l2tp_nl_cmd_tunnel_dump() 473 out: l2tp_nl_cmd_tunnel_dump() 492 goto out; l2tp_nl_cmd_session_create() 498 goto out; l2tp_nl_cmd_session_create() 503 goto out; l2tp_nl_cmd_session_create() 509 goto out; l2tp_nl_cmd_session_create() 514 goto out; l2tp_nl_cmd_session_create() 520 goto out; l2tp_nl_cmd_session_create() 525 goto out; l2tp_nl_cmd_session_create() 547 goto out; l2tp_nl_cmd_session_create() 556 goto out; l2tp_nl_cmd_session_create() 599 goto out; l2tp_nl_cmd_session_create() 609 goto out; l2tp_nl_cmd_session_create() 635 out: l2tp_nl_cmd_session_create() 648 goto out; l2tp_nl_cmd_session_delete() 659 out: l2tp_nl_cmd_session_delete() 671 goto out; l2tp_nl_cmd_session_modify() 703 out: l2tp_nl_cmd_session_modify() 792 goto out; l2tp_nl_cmd_session_get() 798 goto out; l2tp_nl_cmd_session_get() 811 out: l2tp_nl_cmd_session_get() 827 goto out; l2tp_nl_cmd_session_dump() 846 out: l2tp_nl_cmd_session_dump() 974 goto out; l2tp_nl_register_ops() 979 out: l2tp_nl_register_ops()
|
/linux-4.4.14/drivers/staging/lustre/lustre/libcfs/linux/ |
H A D | linux-crypto-adler.c | 87 u8 *out) __adler32_finup() 89 *(u32 *)out = __adler32(*cksump, data, len); __adler32_finup() 94 unsigned int len, u8 *out) adler32_finup() 96 return __adler32_finup(shash_desc_ctx(desc), data, len, out); adler32_finup() 99 static int adler32_final(struct shash_desc *desc, u8 *out) adler32_final() argument 103 *(u32 *)out = *cksump; adler32_final() 108 unsigned int len, u8 *out) adler32_digest() 111 out); adler32_digest() 86 __adler32_finup(u32 *cksump, const u8 *data, unsigned int len, u8 *out) __adler32_finup() argument 93 adler32_finup(struct shash_desc *desc, const u8 *data, unsigned int len, u8 *out) adler32_finup() argument 107 adler32_digest(struct shash_desc *desc, const u8 *data, unsigned int len, u8 *out) adler32_digest() argument
|
/linux-4.4.14/arch/um/include/asm/ |
H A D | a.out-core.h | 1 /* a.out coredump register dumper 20 * fill in the user structure for an a.out core dump
|
/linux-4.4.14/arch/sh/kernel/cpu/sh3/ |
H A D | serial-sh770x.c | 15 /* Clear out SCP7MD1,0, SCP6MD1,0, SCP4MD1,0*/ sh770x_sci_init_pins() 21 /* Clear out SCP7MD1,0, SCP4MD1,0, sh770x_sci_init_pins()
|
/linux-4.4.14/arch/sparc/crypto/ |
H A D | crc32c_glue.c | 80 u8 *out) __crc32c_sparc64_finup() 86 *(__le32 *) out = ~cpu_to_le32(tmp); __crc32c_sparc64_finup() 91 unsigned int len, u8 *out) crc32c_sparc64_finup() 93 return __crc32c_sparc64_finup(shash_desc_ctx(desc), data, len, out); crc32c_sparc64_finup() 96 static int crc32c_sparc64_final(struct shash_desc *desc, u8 *out) crc32c_sparc64_final() argument 100 *(__le32 *) out = ~cpu_to_le32p(crcp); crc32c_sparc64_final() 105 unsigned int len, u8 *out) crc32c_sparc64_digest() 108 out); crc32c_sparc64_digest() 79 __crc32c_sparc64_finup(u32 *crcp, const u8 *data, unsigned int len, u8 *out) __crc32c_sparc64_finup() argument 90 crc32c_sparc64_finup(struct shash_desc *desc, const u8 *data, unsigned int len, u8 *out) crc32c_sparc64_finup() argument 104 crc32c_sparc64_digest(struct shash_desc *desc, const u8 *data, unsigned int len, u8 *out) crc32c_sparc64_digest() argument
|
/linux-4.4.14/tools/testing/selftests/timers/ |
H A D | set-2038.c | 104 goto out; main() 108 goto out; main() 112 goto out; main() 119 goto out; main() 124 goto out; main() 128 goto out; main() 133 goto out; main() 138 out: main()
|
/linux-4.4.14/drivers/usb/usbip/ |
H A D | vhci_sysfs.c | 31 char *out) status_show() 33 char *s = out; status_show() 36 BUG_ON(!the_controller || !out); status_show() 50 out += sprintf(out, status_show() 57 out += sprintf(out, "%03u %03u ", i, vdev->ud.status); status_show() 60 out += sprintf(out, "%03u %08x ", status_show() 62 out += sprintf(out, "%16p ", vdev->ud.tcp_socket); status_show() 63 out += sprintf(out, "%s", dev_name(&vdev->udev->dev)); status_show() 66 out += sprintf(out, "000 000 000 0000000000000000 0-0"); status_show() 69 out += sprintf(out, "\n"); status_show() 75 return out - s; status_show() 30 status_show(struct device *dev, struct device_attribute *attr, char *out) status_show() argument
|
/linux-4.4.14/drivers/staging/gdm72xx/ |
H A D | usb_boot.c | 170 goto out; usb_boot() 179 goto out; usb_boot() 188 goto out; usb_boot() 195 goto out; usb_boot() 207 goto out; usb_boot() 213 goto out; usb_boot() 219 goto out; usb_boot() 224 goto out; usb_boot() 235 out: usb_boot() 255 goto out; em_wait_ack() 261 goto out; em_wait_ack() 262 out: em_wait_ack() 298 goto out; em_download_image() 304 goto out; em_download_image() 317 goto out; em_download_image() 324 goto out; em_download_image() 329 goto out; em_download_image() 331 out: em_download_image()
|
/linux-4.4.14/net/atm/ |
H A D | svc.c | 108 goto out; svc_bind() 112 goto out; svc_bind() 118 goto out; svc_bind() 125 goto out; svc_bind() 140 goto out; svc_bind() 145 out: svc_bind() 163 goto out; svc_connect() 169 goto out; svc_connect() 172 goto out; svc_connect() 176 goto out; svc_connect() 181 goto out; svc_connect() 188 goto out; svc_connect() 192 goto out; svc_connect() 197 goto out; svc_connect() 202 goto out; svc_connect() 210 goto out; svc_connect() 256 goto out; svc_connect() 259 goto out; svc_connect() 263 goto out; svc_connect() 276 out: svc_connect() 293 goto out; svc_listen() 297 goto out; svc_listen() 310 goto out; svc_listen() 316 out: svc_listen() 334 goto out; svc_accept() 367 goto out; svc_accept() 370 goto out; svc_accept() 387 goto out; svc_accept() 404 goto out; svc_accept() 410 goto out; svc_accept() 414 out: svc_accept() 464 goto out; svc_setsockopt() 468 goto out; svc_setsockopt() 475 goto out; svc_setsockopt() 479 goto out; svc_setsockopt() 492 out: svc_setsockopt() 506 goto out; svc_getsockopt() 510 goto out; svc_getsockopt() 514 goto out; svc_getsockopt() 518 goto out; svc_getsockopt() 520 out: svc_getsockopt() 539 goto out; svc_addparty() 550 out: svc_addparty() 574 goto out; svc_dropparty() 577 out: svc_dropparty()
|
/linux-4.4.14/drivers/staging/lustre/lustre/obdclass/ |
H A D | class_obd.c | 143 goto out; class_resolve_dev_name() 148 goto out; class_resolve_dev_name() 156 goto out; class_resolve_dev_name() 162 out: class_resolve_dev_name() 196 goto out; class_handle_ioctl() 201 goto out; class_handle_ioctl() 211 goto out; class_handle_ioctl() 218 goto out; class_handle_ioctl() 224 goto out; class_handle_ioctl() 233 goto out; class_handle_ioctl() 246 goto out; class_handle_ioctl() 252 goto out; class_handle_ioctl() 265 goto out; class_handle_ioctl() 270 goto out; class_handle_ioctl() 281 goto out; class_handle_ioctl() 289 goto out; class_handle_ioctl() 296 goto out; class_handle_ioctl() 306 goto out; class_handle_ioctl() 311 goto out; class_handle_ioctl() 317 goto out; class_handle_ioctl() 336 goto out; class_handle_ioctl() 344 goto out; class_handle_ioctl() 348 goto out; class_handle_ioctl() 356 goto out; class_handle_ioctl() 362 goto out; class_handle_ioctl() 369 goto out; class_handle_ioctl() 377 goto out; class_handle_ioctl() 383 goto out; class_handle_ioctl() 389 goto out; class_handle_ioctl() 394 goto out; class_handle_ioctl() 398 out: class_handle_ioctl()
|
/linux-4.4.14/drivers/net/ethernet/intel/igb/ |
H A D | e1000_phy.c | 82 goto out; igb_get_phy_id() 88 goto out; igb_get_phy_id() 93 out: igb_get_phy_id() 108 goto out; igb_phy_reset_dsp() 112 goto out; igb_phy_reset_dsp() 116 out: igb_phy_reset_dsp() 136 hw_dbg("PHY Address %d is out of range\n", offset); igb_read_phy_reg_mdic() 138 goto out; igb_read_phy_reg_mdic() 152 * Increasing the time out as testing showed failures with igb_read_phy_reg_mdic() 153 * the lower time out igb_read_phy_reg_mdic() 164 goto out; igb_read_phy_reg_mdic() 169 goto out; igb_read_phy_reg_mdic() 173 out: igb_read_phy_reg_mdic() 192 hw_dbg("PHY Address %d is out of range\n", offset); igb_write_phy_reg_mdic() 194 goto out; igb_write_phy_reg_mdic() 209 * Increasing the time out as testing showed failures with igb_write_phy_reg_mdic() 210 * the lower time out igb_write_phy_reg_mdic() 221 goto out; igb_write_phy_reg_mdic() 226 goto out; igb_write_phy_reg_mdic() 229 out: igb_write_phy_reg_mdic() 295 hw_dbg("PHY I2C Address %d is out of range.\n", igb_write_phy_reg_i2c() 401 goto out; igb_read_phy_reg_igp() 405 goto out; igb_read_phy_reg_igp() 413 goto out; igb_read_phy_reg_igp() 422 out: igb_read_phy_reg_igp() 440 goto out; igb_write_phy_reg_igp() 444 goto out; igb_write_phy_reg_igp() 452 goto out; igb_write_phy_reg_igp() 461 out: igb_write_phy_reg_igp() 479 goto out; igb_copper_link_setup_82580() 486 goto out; igb_copper_link_setup_82580() 493 goto out; igb_copper_link_setup_82580() 502 goto out; igb_copper_link_setup_82580() 507 goto out; igb_copper_link_setup_82580() 527 out: igb_copper_link_setup_82580() 546 goto out; igb_copper_link_setup_m88() 552 goto out; igb_copper_link_setup_m88() 593 goto out; igb_copper_link_setup_m88() 602 goto out; igb_copper_link_setup_m88() 621 goto out; igb_copper_link_setup_m88() 628 goto out; igb_copper_link_setup_m88() 631 out: igb_copper_link_setup_m88() 745 goto out; igb_copper_link_setup_igp() 751 goto out; igb_copper_link_setup_igp() 768 goto out; igb_copper_link_setup_igp() 776 goto out; igb_copper_link_setup_igp() 781 goto out; igb_copper_link_setup_igp() 799 goto out; igb_copper_link_setup_igp() 813 goto out; igb_copper_link_setup_igp() 820 goto out; igb_copper_link_setup_igp() 825 goto out; igb_copper_link_setup_igp() 830 goto out; igb_copper_link_setup_igp() 835 goto out; igb_copper_link_setup_igp() 859 goto out; igb_copper_link_setup_igp() 862 out: igb_copper_link_setup_igp() 896 goto out; igb_copper_link_autoneg() 905 goto out; igb_copper_link_autoneg() 910 goto out; igb_copper_link_autoneg() 919 goto out; igb_copper_link_autoneg() 925 out: igb_copper_link_autoneg() 950 goto out; igb_phy_setup_autoneg() 957 goto out; igb_phy_setup_autoneg() 1065 goto out; igb_phy_setup_autoneg() 1070 goto out; igb_phy_setup_autoneg() 1079 goto out; igb_phy_setup_autoneg() 1082 out: igb_phy_setup_autoneg() 1106 goto out; igb_setup_copper_link() 1115 goto out; igb_setup_copper_link() 1124 goto out; igb_setup_copper_link() 1134 out: igb_setup_copper_link() 1155 goto out; igb_phy_force_speed_duplex_igp() 1161 goto out; igb_phy_force_speed_duplex_igp() 1168 goto out; igb_phy_force_speed_duplex_igp() 1175 goto out; igb_phy_force_speed_duplex_igp() 1186 goto out; igb_phy_force_speed_duplex_igp() 1194 goto out; igb_phy_force_speed_duplex_igp() 1197 out: igb_phy_force_speed_duplex_igp() 1226 goto out; igb_phy_force_speed_duplex_m88() 1232 goto out; igb_phy_force_speed_duplex_m88() 1239 goto out; igb_phy_force_speed_duplex_m88() 1245 goto out; igb_phy_force_speed_duplex_m88() 1250 goto out; igb_phy_force_speed_duplex_m88() 1257 goto out; igb_phy_force_speed_duplex_m88() 1285 goto out; igb_phy_force_speed_duplex_m88() 1288 goto out; igb_phy_force_speed_duplex_m88() 1296 goto out; igb_phy_force_speed_duplex_m88() 1305 goto out; igb_phy_force_speed_duplex_m88() 1309 goto out; igb_phy_force_speed_duplex_m88() 1318 goto out; igb_phy_force_speed_duplex_m88() 1325 goto out; igb_phy_force_speed_duplex_m88() 1330 out: igb_phy_force_speed_duplex_m88() 1416 goto out; igb_set_d3_lplu_state() 1420 goto out; igb_set_d3_lplu_state() 1427 goto out; igb_set_d3_lplu_state() 1438 goto out; igb_set_d3_lplu_state() 1445 goto out; igb_set_d3_lplu_state() 1451 goto out; igb_set_d3_lplu_state() 1458 goto out; igb_set_d3_lplu_state() 1467 goto out; igb_set_d3_lplu_state() 1473 goto out; igb_set_d3_lplu_state() 1480 out: igb_set_d3_lplu_state() 1515 goto out; igb_check_downshift() 1523 out: igb_check_downshift() 1571 goto out; igb_check_polarity_igp() 1592 out: igb_check_polarity_igp() 1697 goto out; igb_get_cable_length_m88() 1703 goto out; igb_get_cable_length_m88() 1711 out: igb_get_cable_length_m88() 1750 goto out; igb_get_cable_length_m88_gen2() 1754 goto out; igb_get_cable_length_m88_gen2() 1760 goto out; igb_get_cable_length_m88_gen2() 1765 goto out; igb_get_cable_length_m88_gen2() 1778 goto out; igb_get_cable_length_m88_gen2() 1785 goto out; igb_get_cable_length_m88_gen2() 1789 goto out; igb_get_cable_length_m88_gen2() 1794 goto out; igb_get_cable_length_m88_gen2() 1800 goto out; igb_get_cable_length_m88_gen2() 1813 goto out; igb_get_cable_length_m88_gen2() 1818 goto out; igb_get_cable_length_m88_gen2() 1821 out: igb_get_cable_length_m88_gen2() 1854 goto out; igb_get_cable_length_igp_2() 1868 goto out; igb_get_cable_length_igp_2() 1893 out: igb_get_cable_length_igp_2() 1917 goto out; igb_get_phy_info_m88() 1922 goto out; igb_get_phy_info_m88() 1927 goto out; igb_get_phy_info_m88() 1932 goto out; igb_get_phy_info_m88() 1939 goto out; igb_get_phy_info_m88() 1943 goto out; igb_get_phy_info_m88() 1950 goto out; igb_get_phy_info_m88() 1954 goto out; igb_get_phy_info_m88() 1970 out: igb_get_phy_info_m88() 1992 goto out; igb_get_phy_info_igp() 1997 goto out; igb_get_phy_info_igp() 2004 goto out; igb_get_phy_info_igp() 2008 goto out; igb_get_phy_info_igp() 2016 goto out; igb_get_phy_info_igp() 2020 goto out; igb_get_phy_info_igp() 2035 out: igb_get_phy_info_igp() 2052 goto out; igb_phy_sw_reset() 2056 goto out; igb_phy_sw_reset() 2061 goto out; igb_phy_sw_reset() 2065 out: igb_phy_sw_reset() 2087 goto out; igb_phy_hw_reset() 2092 goto out; igb_phy_hw_reset() 2109 out: igb_phy_hw_reset() 2210 goto out; igb_initialize_M88E1512_phy() 2214 goto out; igb_initialize_M88E1512_phy() 2218 goto out; igb_initialize_M88E1512_phy() 2222 goto out; igb_initialize_M88E1512_phy() 2226 goto out; igb_initialize_M88E1512_phy() 2230 goto out; igb_initialize_M88E1512_phy() 2234 goto out; igb_initialize_M88E1512_phy() 2238 goto out; igb_initialize_M88E1512_phy() 2242 goto out; igb_initialize_M88E1512_phy() 2247 goto out; igb_initialize_M88E1512_phy() 2251 goto out; igb_initialize_M88E1512_phy() 2256 goto out; igb_initialize_M88E1512_phy() 2261 goto out; igb_initialize_M88E1512_phy() 2266 goto out; igb_initialize_M88E1512_phy() 2276 out: igb_initialize_M88E1512_phy() 2357 goto out; igb_phy_force_speed_duplex_82580() 2363 goto out; igb_phy_force_speed_duplex_82580() 2370 goto out; igb_phy_force_speed_duplex_82580() 2376 goto out; igb_phy_force_speed_duplex_82580() 2387 goto out; igb_phy_force_speed_duplex_82580() 2395 goto out; igb_phy_force_speed_duplex_82580() 2398 out: igb_phy_force_speed_duplex_82580() 2420 goto out; igb_get_phy_info_82580() 2425 goto out; igb_get_phy_info_82580() 2432 goto out; igb_get_phy_info_82580() 2436 goto out; igb_get_phy_info_82580() 2444 goto out; igb_get_phy_info_82580() 2448 goto out; igb_get_phy_info_82580() 2463 out: igb_get_phy_info_82580() 2482 goto out; igb_get_cable_length_82580() 2492 out: igb_get_cable_length_82580()
|
/linux-4.4.14/net/llc/ |
H A D | af_llc.c | 192 goto out; llc_ui_release() 207 out: llc_ui_release() 229 goto out; llc_ui_autoport() 237 out: llc_ui_autoport() 259 goto out; llc_ui_autobind() 270 goto out; llc_ui_autobind() 274 goto out; llc_ui_autobind() 278 goto out; llc_ui_autobind() 285 out: llc_ui_autobind() 313 goto out; llc_ui_bind() 316 goto out; llc_ui_bind() 341 goto out; llc_ui_bind() 346 goto out; llc_ui_bind() 353 goto out; llc_ui_bind() 382 out: llc_ui_bind() 404 goto out; llc_ui_shutdown() 407 goto out; llc_ui_shutdown() 413 out: llc_ui_shutdown() 442 goto out; llc_ui_connect() 445 goto out; llc_ui_connect() 447 goto out; llc_ui_connect() 450 goto out; llc_ui_connect() 456 goto out; llc_ui_connect() 469 goto out; llc_ui_connect() 476 goto out; llc_ui_connect() 480 goto out; llc_ui_connect() 488 out: llc_ui_connect() 494 goto out; llc_ui_connect() 512 goto out; llc_ui_listen() 515 goto out; llc_ui_listen() 518 goto out; llc_ui_listen() 528 out: llc_ui_listen() 657 goto out; llc_ui_accept() 661 goto out; llc_ui_accept() 666 goto out; llc_ui_accept() 693 out: llc_ui_accept() 727 goto out; llc_ui_recvmsg() 852 out: llc_ui_recvmsg() 870 goto out; llc_ui_recvmsg() 926 goto out; llc_ui_sendmsg() 930 goto out; llc_ui_sendmsg() 935 goto out; llc_ui_sendmsg() 940 goto out; llc_ui_sendmsg() 944 goto out; llc_ui_sendmsg() 946 out: llc_ui_sendmsg() 977 goto out; llc_ui_getname() 982 goto out; llc_ui_getname() 990 goto out; llc_ui_getname() 1002 out: llc_ui_getname() 1041 goto out; llc_ui_setsockopt() 1044 goto out; llc_ui_setsockopt() 1049 goto out; llc_ui_setsockopt() 1054 goto out; llc_ui_setsockopt() 1059 goto out; llc_ui_setsockopt() 1064 goto out; llc_ui_setsockopt() 1069 goto out; llc_ui_setsockopt() 1074 goto out; llc_ui_setsockopt() 1079 goto out; llc_ui_setsockopt() 1084 goto out; llc_ui_setsockopt() 1095 goto out; llc_ui_setsockopt() 1098 out: llc_ui_setsockopt() 1122 goto out; llc_ui_getsockopt() 1125 goto out; llc_ui_getsockopt() 1128 goto out; llc_ui_getsockopt() 1151 goto out; llc_ui_getsockopt() 1156 out: llc_ui_getsockopt() 1200 goto out; llc2_init() 1222 out: llc2_init() 1231 goto out; llc2_init()
|
/linux-4.4.14/drivers/net/ethernet/mellanox/mlx4/ |
H A D | reset.c | 76 goto out; mlx4_reset() 88 goto out; mlx4_reset() 98 goto out; mlx4_reset() 101 /* grab HW semaphore to lock out flash updates */ mlx4_reset() 115 goto out; mlx4_reset() 137 goto out; mlx4_reset() 148 goto out; mlx4_reset() 156 goto out; mlx4_reset() 169 goto out; mlx4_reset() 177 goto out; mlx4_reset() 180 out: mlx4_reset()
|
/linux-4.4.14/arch/cris/arch-v32/drivers/ |
H A D | iop_fw_load.c | 104 goto out; iop_fw_load_spu() 124 out: iop_fw_load_spu() 155 goto out; iop_fw_load_mpu() 160 goto out; iop_fw_load_mpu() 164 out: iop_fw_load_mpu() 176 goto out; iop_start_mpu() 179 goto out; iop_start_mpu() 182 goto out; iop_start_mpu() 185 goto out; iop_start_mpu() 189 goto out; iop_start_mpu() 192 out: iop_start_mpu()
|
/linux-4.4.14/fs/f2fs/ |
H A D | crypto_key.c | 56 goto out; f2fs_derive_key_aes() 62 goto out; f2fs_derive_key_aes() 70 goto out; f2fs_derive_key_aes() 82 out: f2fs_derive_key_aes() 184 goto out; _f2fs_get_encryption_info() 198 goto out; _f2fs_get_encryption_info() 205 goto out; _f2fs_get_encryption_info() 214 goto out; _f2fs_get_encryption_info() 222 goto out; _f2fs_get_encryption_info() 231 goto out; _f2fs_get_encryption_info() 240 out: _f2fs_get_encryption_info()
|
/linux-4.4.14/fs/sysv/ |
H A D | namei.c | 95 goto out; sysv_symlink() 100 goto out; sysv_symlink() 109 out: sysv_symlink() 115 goto out; sysv_symlink() 155 out: sysv_mkdir() 164 goto out; sysv_mkdir() 176 goto out; sysv_unlink() 180 goto out; sysv_unlink() 184 out: sysv_unlink() 221 goto out; sysv_rename() 272 out: sysv_rename()
|
/linux-4.4.14/include/uapi/linux/ |
H A D | btrfs.h | 125 struct btrfs_scrub_progress progress; /* out */ 146 __u64 replace_state; /* out, see #define above */ 147 __u64 progress_1000; /* out, 0 <= x <= 1000 */ 148 __u64 time_started; /* out, seconds since 1-Jan-1970 */ 149 __u64 time_stopped; /* out, seconds since 1-Jan-1970 */ 150 __u64 num_write_errors; /* out */ 151 __u64 num_uncorrectable_read_errors; /* out */ 163 __u64 result; /* out */ 168 }; /* in/out */ 174 __u64 devid; /* in/out */ 175 __u8 uuid[BTRFS_UUID_SIZE]; /* in/out */ 176 __u64 bytes_used; /* out */ 177 __u64 total_bytes; /* out */ 179 __u8 path[BTRFS_DEVICE_PATH_NAME_MAX]; /* out */ 183 __u64 max_id; /* out */ 184 __u64 num_devices; /* out */ 185 __u8 fsid[BTRFS_FSID_SIZE]; /* out */ 186 __u32 nodesize; /* out */ 187 __u32 sectorsize; /* out */ 188 __u32 clone_alignment; /* out */ 262 __u64 flags; /* in/out */ 263 __u64 state; /* out */ 265 struct btrfs_balance_args data; /* in/out */ 266 struct btrfs_balance_args meta; /* in/out */ 267 struct btrfs_balance_args sys; /* in/out */ 269 struct btrfs_balance_progress stat; /* out */ 337 struct btrfs_ioctl_search_key key; /* in/out - search parameters */ 339 * out - on EOVERFLOW: needed size 341 __u64 buf[0]; /* out - found items */ 359 __u64 bytes_deduped; /* out - total # of bytes we were able 366 __s32 status; /* out - see above description */ 392 __u32 bytes_left; /* out -- bytes not needed to deliver output */ 393 __u32 bytes_missing; /* out -- additional bytes needed for result */ 394 __u32 elem_cnt; /* out */ 395 __u32 elem_missed; /* out */ 396 __u64 val[0]; /* out */ 403 /* struct btrfs_data_container *fspath; out */ 404 __u64 fspath; /* out */ 411 /* struct btrfs_data_container *inodes; out */ 439 __u64 nr_items; /* in/out */ 440 __u64 flags; /* in/out */ 442 /* out values: */ 480 __u64 rtransid; /* out */ 482 struct btrfs_ioctl_timespec rtime; /* out */
|
/linux-4.4.14/arch/arm/mach-bcm/ |
H A D | bcm63xx_pmb.c | 153 goto out; bcm63xx_pmb_power_on_cpu() 158 goto out; bcm63xx_pmb_power_on_cpu() 164 goto out; bcm63xx_pmb_power_on_cpu() 171 goto out; bcm63xx_pmb_power_on_cpu() 178 goto out; bcm63xx_pmb_power_on_cpu() 184 goto out; bcm63xx_pmb_power_on_cpu() 191 goto out; bcm63xx_pmb_power_on_cpu() 198 goto out; bcm63xx_pmb_power_on_cpu() 205 goto out; bcm63xx_pmb_power_on_cpu() 211 goto out; bcm63xx_pmb_power_on_cpu() 217 out: bcm63xx_pmb_power_on_cpu()
|
/linux-4.4.14/drivers/rtc/ |
H A D | rtc-mc13xxx.c | 108 goto out; mc13xxx_rtc_set_mmss() 114 goto out; mc13xxx_rtc_set_mmss() 123 goto out; mc13xxx_rtc_set_mmss() 127 goto out; mc13xxx_rtc_set_mmss() 131 goto out; mc13xxx_rtc_set_mmss() 138 goto out; mc13xxx_rtc_set_mmss() 144 goto out; mc13xxx_rtc_set_mmss() 149 out: mc13xxx_rtc_set_mmss() 169 goto out; mc13xxx_rtc_read_alarm() 172 goto out; mc13xxx_rtc_read_alarm() 177 goto out; mc13xxx_rtc_read_alarm() 182 out: mc13xxx_rtc_read_alarm() 211 goto out; mc13xxx_rtc_set_alarm() 215 goto out; mc13xxx_rtc_set_alarm() 225 goto out; mc13xxx_rtc_set_alarm() 231 goto out; mc13xxx_rtc_set_alarm() 235 out: mc13xxx_rtc_set_alarm()
|
H A D | rtc-max77686.c | 149 goto out; max77686_rtc_read_time() 155 goto out; max77686_rtc_read_time() 162 out: max77686_rtc_read_time() 184 goto out; max77686_rtc_set_time() 189 out: max77686_rtc_set_time() 205 goto out; max77686_rtc_read_alarm() 212 goto out; max77686_rtc_read_alarm() 230 goto out; max77686_rtc_read_alarm() 236 out: max77686_rtc_read_alarm() 252 goto out; max77686_rtc_stop_alarm() 259 goto out; max77686_rtc_stop_alarm() 272 goto out; max77686_rtc_stop_alarm() 276 out: max77686_rtc_stop_alarm() 291 goto out; max77686_rtc_start_alarm() 298 goto out; max77686_rtc_start_alarm() 319 goto out; max77686_rtc_start_alarm() 323 out: max77686_rtc_start_alarm() 341 goto out; max77686_rtc_set_alarm() 349 goto out; max77686_rtc_set_alarm() 354 goto out; max77686_rtc_set_alarm() 358 out: max77686_rtc_set_alarm()
|
/linux-4.4.14/net/lapb/ |
H A D | lapb_iface.c | 125 goto out; lapb_create_cb() 140 out: lapb_create_cb() 155 goto out; lapb_register() 161 goto out; lapb_register() 171 out: lapb_register() 184 goto out; lapb_unregister() 195 out: lapb_unregister() 207 goto out; lapb_getparms() 229 out: lapb_getparms() 240 goto out; lapb_setparms() 265 out: lapb_setparms() 276 goto out; lapb_connect_request() 294 out: lapb_connect_request() 305 goto out; lapb_disconnect_request() 339 out: lapb_disconnect_request() 350 goto out; lapb_data_request() 361 out: lapb_data_request()
|
/linux-4.4.14/drivers/scsi/ufs/ |
H A D | ufshcd-pltfrm.c | 57 goto out; ufshcd_parse_clock_info() 72 goto out; ufshcd_parse_clock_info() 76 goto out; ufshcd_parse_clock_info() 80 goto out; ufshcd_parse_clock_info() 86 goto out; ufshcd_parse_clock_info() 93 goto out; ufshcd_parse_clock_info() 108 goto out; ufshcd_parse_clock_info() 113 goto out; ufshcd_parse_clock_info() 123 out: ufshcd_parse_clock_info() 138 goto out; ufshcd_populate_vreg() 145 goto out; ufshcd_populate_vreg() 157 goto out; ufshcd_populate_vreg() 184 goto out; ufshcd_populate_vreg() 189 out: ufshcd_populate_vreg() 212 goto out; ufshcd_parse_regulator_info() 216 goto out; ufshcd_parse_regulator_info() 220 goto out; ufshcd_parse_regulator_info() 223 out: ufshcd_parse_regulator_info() 300 goto out; ufshcd_pltfrm_init() 307 goto out; ufshcd_pltfrm_init() 313 goto out; ufshcd_pltfrm_init() 349 out: ufshcd_pltfrm_init()
|
/linux-4.4.14/drivers/mtd/tests/ |
H A D | speedtest.c | 244 goto out; mtd_speedtest_init() 250 goto out; mtd_speedtest_init() 253 goto out; mtd_speedtest_init() 261 goto out; mtd_speedtest_init() 271 goto out; mtd_speedtest_init() 275 goto out; mtd_speedtest_init() 289 goto out; mtd_speedtest_init() 293 goto out; mtd_speedtest_init() 301 goto out; mtd_speedtest_init() 311 goto out; mtd_speedtest_init() 315 goto out; mtd_speedtest_init() 329 goto out; mtd_speedtest_init() 333 goto out; mtd_speedtest_init() 341 goto out; mtd_speedtest_init() 351 goto out; mtd_speedtest_init() 355 goto out; mtd_speedtest_init() 369 goto out; mtd_speedtest_init() 373 goto out; mtd_speedtest_init() 384 goto out; mtd_speedtest_init() 405 goto out; mtd_speedtest_init() 409 goto out; mtd_speedtest_init() 419 out: mtd_speedtest_init()
|
/linux-4.4.14/drivers/crypto/nx/ |
H A D | nx-aes-xcbc.c | 71 static int nx_xcbc_empty(struct shash_desc *desc, u8 *out) nx_xcbc_empty() argument 111 goto out; nx_xcbc_empty() 128 out_sg = nx_build_sg_list(nx_ctx->out_sg, out, &len, nx_xcbc_empty() 140 goto out; nx_xcbc_empty() 143 out: nx_xcbc_empty() 206 goto out; nx_xcbc_update() 221 goto out; nx_xcbc_update() 250 goto out; nx_xcbc_update() 262 goto out; nx_xcbc_update() 279 goto out; nx_xcbc_update() 285 goto out; nx_xcbc_update() 302 out: nx_xcbc_update() 307 static int nx_xcbc_final(struct shash_desc *desc, u8 *out) nx_xcbc_final() argument 330 rc = nx_xcbc_empty(desc, out); nx_xcbc_final() 331 goto out; nx_xcbc_final() 344 goto out; nx_xcbc_final() 348 out_sg = nx_build_sg_list(nx_ctx->out_sg, out, &len, nx_xcbc_final() 353 goto out; nx_xcbc_final() 361 goto out; nx_xcbc_final() 367 goto out; nx_xcbc_final() 371 memcpy(out, csbcpb->cpb.aes_xcbc.out_cv_mac, AES_BLOCK_SIZE); nx_xcbc_final() 372 out: nx_xcbc_final()
|
H A D | nx-sha256.c | 92 goto out; nx_sha256_update() 111 goto out; nx_sha256_update() 127 goto out; nx_sha256_update() 162 goto out; nx_sha256_update() 168 goto out; nx_sha256_update() 184 out: nx_sha256_update() 189 static int nx_sha256_final(struct shash_desc *desc, u8 *out) nx_sha256_final() argument 228 goto out; nx_sha256_final() 232 out_sg = nx_build_sg_list(nx_ctx->out_sg, out, &len, max_sg_len); nx_sha256_final() 236 goto out; nx_sha256_final() 243 goto out; nx_sha256_final() 249 goto out; nx_sha256_final() 254 memcpy(out, csbcpb->cpb.sha256.message_digest, SHA256_DIGEST_SIZE); nx_sha256_final() 255 out: nx_sha256_final() 260 static int nx_sha256_export(struct shash_desc *desc, void *out) nx_sha256_export() argument 264 memcpy(out, sctx, sizeof(*sctx)); nx_sha256_export()
|
H A D | nx-sha512.c | 92 goto out; nx_sha512_update() 111 goto out; nx_sha512_update() 126 goto out; nx_sha512_update() 150 goto out; nx_sha512_update() 166 goto out; nx_sha512_update() 172 goto out; nx_sha512_update() 187 out: nx_sha512_update() 192 static int nx_sha512_final(struct shash_desc *desc, u8 *out) nx_sha512_final() argument 237 goto out; nx_sha512_final() 241 out_sg = nx_build_sg_list(nx_ctx->out_sg, out, &len, nx_sha512_final() 249 goto out; nx_sha512_final() 255 goto out; nx_sha512_final() 260 memcpy(out, csbcpb->cpb.sha512.message_digest, SHA512_DIGEST_SIZE); nx_sha512_final() 261 out: nx_sha512_final() 266 static int nx_sha512_export(struct shash_desc *desc, void *out) nx_sha512_export() argument 270 memcpy(out, sctx, sizeof(*sctx)); nx_sha512_export()
|
/linux-4.4.14/fs/ecryptfs/ |
H A D | mmap.c | 74 goto out; ecryptfs_writepage() 77 out: ecryptfs_writepage() 159 goto out; ecryptfs_copy_up_encrypted_with_header() 176 goto out; ecryptfs_copy_up_encrypted_with_header() 181 out: ecryptfs_copy_up_encrypted_with_header() 214 goto out; ecryptfs_readpage() 224 goto out; ecryptfs_readpage() 232 goto out; ecryptfs_readpage() 235 out: ecryptfs_readpage() 255 goto out; fill_zeros_to_end_of_page() 260 out: fill_zeros_to_end_of_page() 306 goto out; ecryptfs_write_begin() 321 goto out; ecryptfs_write_begin() 333 goto out; ecryptfs_write_begin() 350 goto out; ecryptfs_write_begin() 356 /* If creating a page or more of holes, zero them out via truncate. ecryptfs_write_begin() 367 goto out; ecryptfs_write_begin() 372 * of page? Zero it out. */ ecryptfs_write_begin() 376 out: ecryptfs_write_begin() 400 goto out; ecryptfs_write_inode_size_to_header() 411 out: ecryptfs_write_inode_size_to_header() 430 goto out; ecryptfs_write_inode_size_to_xattr() 437 goto out; ecryptfs_write_inode_size_to_xattr() 452 out: ecryptfs_write_inode_size_to_xattr() 501 goto out; ecryptfs_write_end() 506 goto out; ecryptfs_write_end() 515 goto out; ecryptfs_write_end() 521 goto out; ecryptfs_write_end() 535 out: ecryptfs_write_end()
|
H A D | keystore.c | 115 goto out; ecryptfs_parse_packet_length() 119 goto out; ecryptfs_parse_packet_length() 121 out: ecryptfs_parse_packet_length() 181 goto out; write_tag_64_packet() 189 goto out; write_tag_64_packet() 200 goto out; write_tag_64_packet() 207 out: write_tag_64_packet() 235 goto out; parse_tag_65_packet() 240 goto out; parse_tag_65_packet() 246 goto out; parse_tag_65_packet() 252 goto out; parse_tag_65_packet() 259 goto out; parse_tag_65_packet() 266 goto out; parse_tag_65_packet() 277 goto out; parse_tag_65_packet() 292 out: parse_tag_65_packet() 324 goto out; write_tag_66_packet() 332 goto out; write_tag_66_packet() 343 goto out; write_tag_66_packet() 354 out: write_tag_66_packet() 382 goto out; parse_tag_67_packet() 388 goto out; parse_tag_67_packet() 395 goto out; parse_tag_67_packet() 402 goto out; parse_tag_67_packet() 409 goto out; parse_tag_67_packet() 417 goto out; parse_tag_67_packet() 420 out: parse_tag_67_packet() 443 goto out; ecryptfs_verify_version() 450 goto out; ecryptfs_verify_version() 452 out: ecryptfs_verify_version() 476 goto out; ecryptfs_verify_auth_tok_from_key() 483 goto out; ecryptfs_verify_auth_tok_from_key() 485 out: ecryptfs_verify_auth_tok_from_key() 509 goto out; ecryptfs_find_global_auth_tok_for_sig() 515 goto out; ecryptfs_find_global_auth_tok_for_sig() 527 goto out; ecryptfs_find_global_auth_tok_for_sig() 530 goto out; ecryptfs_find_global_auth_tok_for_sig() 538 out: ecryptfs_find_global_auth_tok_for_sig() 553 * out to ecryptfsd to dynamically retrieve an auth_tok object) so 637 goto out; ecryptfs_write_tag_70_packet() 649 goto out; ecryptfs_write_tag_70_packet() 658 goto out; ecryptfs_write_tag_70_packet() 869 out: ecryptfs_write_tag_70_packet() 930 goto out; ecryptfs_parse_tag_70_packet() 938 goto out; ecryptfs_parse_tag_70_packet() 953 goto out; ecryptfs_parse_tag_70_packet() 961 goto out; ecryptfs_parse_tag_70_packet() 972 goto out; ecryptfs_parse_tag_70_packet() 984 goto out; ecryptfs_parse_tag_70_packet() 993 goto out; ecryptfs_parse_tag_70_packet() 1002 goto out; ecryptfs_parse_tag_70_packet() 1101 out: ecryptfs_parse_tag_70_packet() 1159 goto out; decrypt_pki_encrypted_session_key() 1165 goto out; decrypt_pki_encrypted_session_key() 1171 goto out; decrypt_pki_encrypted_session_key() 1178 goto out; decrypt_pki_encrypted_session_key() 1185 goto out; decrypt_pki_encrypted_session_key() 1195 goto out; decrypt_pki_encrypted_session_key() 1203 out: decrypt_pki_encrypted_session_key() 1270 goto out; parse_tag_1_packet() 1276 goto out; parse_tag_1_packet() 1286 goto out; parse_tag_1_packet() 1326 goto out; parse_tag_1_packet() 1342 goto out; parse_tag_1_packet() 1349 out: parse_tag_1_packet() 1405 goto out; parse_tag_3_packet() 1411 goto out; parse_tag_3_packet() 1420 goto out; parse_tag_3_packet() 1518 goto out; parse_tag_3_packet() 1525 out: parse_tag_3_packet() 1575 goto out; parse_tag_11_packet() 1580 goto out; parse_tag_11_packet() 1586 goto out; parse_tag_11_packet() 1591 goto out; parse_tag_11_packet() 1598 goto out; parse_tag_11_packet() 1604 goto out; parse_tag_11_packet() 1609 goto out; parse_tag_11_packet() 1614 goto out; parse_tag_11_packet() 1619 out: parse_tag_11_packet() 1641 goto out; ecryptfs_keyring_auth_tok_for_sig() 1650 goto out; ecryptfs_keyring_auth_tok_for_sig() 1652 out: ecryptfs_keyring_auth_tok_for_sig() 1689 goto out; decrypt_passphrase_encrypted_session_key() 1700 goto out; decrypt_passphrase_encrypted_session_key() 1711 goto out; decrypt_passphrase_encrypted_session_key() 1721 goto out; decrypt_passphrase_encrypted_session_key() 1728 goto out; decrypt_passphrase_encrypted_session_key() 1740 out: decrypt_passphrase_encrypted_session_key() 1860 goto out; ecryptfs_parse_packet_set() 1960 out: ecryptfs_parse_packet_set() 1985 goto out; pki_encrypt_session_key() 1991 goto out; pki_encrypt_session_key() 1998 goto out; pki_encrypt_session_key() 2004 out: pki_encrypt_session_key() 2057 goto out; write_tag_1_packet() 2077 goto out; write_tag_1_packet() 2086 goto out; write_tag_1_packet() 2096 out: write_tag_1_packet() 2137 goto out; write_tag_11_packet() 2146 goto out; write_tag_11_packet() 2157 out: write_tag_11_packet() 2209 goto out; write_tag_3_packet() 2273 goto out; write_tag_3_packet() 2284 goto out; write_tag_3_packet() 2293 goto out; write_tag_3_packet() 2303 goto out; write_tag_3_packet() 2329 goto out; write_tag_3_packet() 2340 goto out; write_tag_3_packet() 2352 goto out; write_tag_3_packet() 2364 out: write_tag_3_packet() 2410 goto out; ecryptfs_generate_key_packet_set() 2475 out: ecryptfs_generate_key_packet_set() 2517 goto out; ecryptfs_add_global_auth_tok() 2526 out: ecryptfs_add_global_auth_tok()
|
/linux-4.4.14/drivers/net/wireless/cw1200/ |
H A D | fwio.c | 317 goto out; cw1200_load_firmware() 323 goto out; cw1200_load_firmware() 330 goto out; cw1200_load_firmware() 338 goto out; cw1200_load_firmware() 347 goto out; cw1200_load_firmware() 354 goto out; cw1200_load_firmware() 361 goto out; cw1200_load_firmware() 368 goto out; cw1200_load_firmware() 377 goto out; cw1200_load_firmware() 389 goto out; cw1200_load_firmware() 398 goto out; cw1200_load_firmware() 423 goto out; cw1200_load_firmware() 428 goto out; cw1200_load_firmware() 434 goto out; cw1200_load_firmware() 456 goto out; cw1200_load_firmware() 463 goto out; cw1200_load_firmware() 469 goto out; cw1200_load_firmware() 477 goto out; cw1200_load_firmware() 485 goto out; cw1200_load_firmware() 489 goto out; cw1200_load_firmware() 517 out: cw1200_load_firmware()
|
/linux-4.4.14/drivers/staging/lustre/lustre/ptlrpc/ |
H A D | llog_client.c | 98 goto out; llog_client_open() 110 goto out; llog_client_open() 130 goto out; llog_client_open() 135 goto out; llog_client_open() 140 out: llog_client_open() 179 goto out; llog_client_next_block() 184 goto out; llog_client_next_block() 191 goto out; llog_client_next_block() 198 out: llog_client_next_block() 236 goto out; llog_client_prev_block() 241 goto out; llog_client_prev_block() 247 goto out; llog_client_prev_block() 251 out: llog_client_prev_block() 285 goto out; llog_client_read_header() 290 goto out; llog_client_read_header() 308 out: llog_client_read_header()
|
/linux-4.4.14/drivers/leds/ |
H A D | leds-net48xx.c | 59 goto out; net48xx_led_init() 64 goto out; net48xx_led_init() 70 goto out; net48xx_led_init() 73 out: net48xx_led_init()
|
/linux-4.4.14/fs/hpfs/ |
H A D | dir.c | 32 /* Somebody else will have to figure out what to do here */ hpfs_dir_lseek() 77 goto out; hpfs_readdir() 81 goto out; hpfs_readdir() 90 goto out; hpfs_readdir() 104 goto out; hpfs_readdir() 110 goto out; hpfs_readdir() 114 goto out; hpfs_readdir() 125 goto out; hpfs_readdir() 128 goto out; hpfs_readdir() 131 goto out; hpfs_readdir() 135 goto out; hpfs_readdir() 140 goto out; hpfs_readdir() 152 goto out; hpfs_readdir() 170 goto out; hpfs_readdir() 176 out: hpfs_readdir() 188 * needed is up here in the directory. (And file fnodes are out in
|
/linux-4.4.14/fs/logfs/ |
H A D | compr.c | 17 int logfs_compress(void *in, void *out, size_t inlen, size_t outlen) logfs_compress() argument 30 stream.next_out = out; logfs_compress() 51 int logfs_uncompress(void *in, void *out, size_t inlen, size_t outlen) logfs_uncompress() argument 64 stream.next_out = out; logfs_uncompress()
|
/linux-4.4.14/net/bridge/netfilter/ |
H A D | nf_log_bridge.c | 23 const struct net_device *out, nf_log_bridge_packet() 29 nf_log_packet(net, NFPROTO_IPV4, hooknum, skb, in, out, nf_log_bridge_packet() 33 nf_log_packet(net, NFPROTO_IPV6, hooknum, skb, in, out, nf_log_bridge_packet() 38 nf_log_packet(net, NFPROTO_ARP, hooknum, skb, in, out, nf_log_bridge_packet() 19 nf_log_bridge_packet(struct net *net, u_int8_t pf, unsigned int hooknum, const struct sk_buff *skb, const struct net_device *in, const struct net_device *out, const struct nf_loginfo *loginfo, const char *prefix) nf_log_bridge_packet() argument
|
/linux-4.4.14/net/xfrm/ |
H A D | xfrm_ipcomp.c | 55 goto out; ipcomp_decompress() 59 goto out; ipcomp_decompress() 77 goto out; ipcomp_decompress() 84 goto out; ipcomp_decompress() 105 out: ipcomp_decompress() 117 goto out; ipcomp_input() 129 goto out; ipcomp_input() 133 out: ipcomp_input() 153 goto out; ipcomp_compress() 157 goto out; ipcomp_compress() 166 out: ipcomp_compress() 349 goto out; ipcomp_init_state() 352 goto out; ipcomp_init_state() 357 goto out; ipcomp_init_state() 373 out: ipcomp_init_state() 380 goto out; ipcomp_init_state()
|
/linux-4.4.14/init/ |
H A D | noinitramfs.c | 34 goto out; default_rootfs() 40 goto out; default_rootfs() 44 goto out; default_rootfs() 48 out: default_rootfs()
|
/linux-4.4.14/kernel/power/ |
H A D | autosleep.c | 31 goto out; try_to_suspend() 38 goto out; try_to_suspend() 53 goto out; try_to_suspend() 62 out: try_to_suspend()
|
H A D | console.c | 54 goto out; pm_vt_switch_required() 60 goto out; pm_vt_switch_required() 66 out: pm_vt_switch_required() 113 goto out; pm_vt_switch() 116 goto out; pm_vt_switch() 120 goto out; pm_vt_switch() 124 out: pm_vt_switch()
|
/linux-4.4.14/include/linux/spi/ |
H A D | ifx_modem.h | 5 unsigned short rst_out; /* modem reset out */
|
/linux-4.4.14/include/linux/amba/ |
H A D | pl061.h | 14 u8 directions; /* startup directions, 1: out, 0: in */
|
/linux-4.4.14/arch/parisc/include/asm/ |
H A D | compat_ucontext.h | 11 /* FIXME: Pad out to get uc_mcontext to start at an 8-byte aligned boundary */
|
/linux-4.4.14/arch/hexagon/include/uapi/asm/ |
H A D | user.h | 59 unsigned long pad1; /* pad out to 48 words total */ 60 unsigned long pad2; /* pad out to 48 words total */ 61 unsigned long pad3; /* pad out to 48 words total */ 65 unsigned long pad1; /* pad out to 48 words total */
|
/linux-4.4.14/arch/arm/mm/ |
H A D | tcm.h | 13 /* No TCM support, just blank inlines to be optimized out */ tcm_init()
|
/linux-4.4.14/arch/arm/mach-pxa/include/mach/ |
H A D | io.h | 13 * drivers out there that might just work if we fake them...
|
/linux-4.4.14/arch/arm/include/asm/ |
H A D | hwcap.h | 8 * This yields a mask that user programs can use to figure out what
|
/linux-4.4.14/drivers/net/wireless/ath/wcn36xx/ |
H A D | smd.c | 259 goto out; wcn36xx_smd_send_and_wait() 266 goto out; wcn36xx_smd_send_and_wait() 270 out: wcn36xx_smd_send_and_wait() 318 goto out; wcn36xx_smd_load_nv() 370 out: return ret; wcn36xx_smd_load_nv() 433 goto out; wcn36xx_smd_start() 444 goto out; wcn36xx_smd_start() 450 goto out; wcn36xx_smd_start() 453 out: wcn36xx_smd_start() 473 goto out; wcn36xx_smd_stop() 478 goto out; wcn36xx_smd_stop() 480 out: wcn36xx_smd_stop() 502 goto out; wcn36xx_smd_init_scan() 507 goto out; wcn36xx_smd_init_scan() 509 out: wcn36xx_smd_init_scan() 532 goto out; wcn36xx_smd_start_scan() 537 goto out; wcn36xx_smd_start_scan() 539 out: wcn36xx_smd_start_scan() 562 goto out; wcn36xx_smd_end_scan() 567 goto out; wcn36xx_smd_end_scan() 569 out: wcn36xx_smd_end_scan() 593 goto out; wcn36xx_smd_finish_scan() 598 goto out; wcn36xx_smd_finish_scan() 600 out: wcn36xx_smd_finish_scan() 638 goto out; wcn36xx_smd_switch_channel() 643 goto out; wcn36xx_smd_switch_channel() 645 out: wcn36xx_smd_switch_channel() 693 goto out; wcn36xx_smd_update_scan_params() 700 goto out; wcn36xx_smd_update_scan_params() 702 out: wcn36xx_smd_update_scan_params() 755 goto out; wcn36xx_smd_add_sta_self() 763 goto out; wcn36xx_smd_add_sta_self() 765 out: wcn36xx_smd_add_sta_self() 785 goto out; wcn36xx_smd_delete_sta_self() 791 goto out; wcn36xx_smd_delete_sta_self() 793 out: wcn36xx_smd_delete_sta_self() 817 goto out; wcn36xx_smd_delete_sta() 822 goto out; wcn36xx_smd_delete_sta() 824 out: wcn36xx_smd_delete_sta() 880 goto out; wcn36xx_smd_join() 885 goto out; wcn36xx_smd_join() 887 out: wcn36xx_smd_join() 915 goto out; wcn36xx_smd_set_link_st() 920 goto out; wcn36xx_smd_set_link_st() 922 out: wcn36xx_smd_set_link_st() 1032 goto out; wcn36xx_smd_config_sta() 1040 goto out; wcn36xx_smd_config_sta() 1042 out: wcn36xx_smd_config_sta() 1312 goto out; wcn36xx_smd_config_bss() 1320 goto out; wcn36xx_smd_config_bss() 1322 out: wcn36xx_smd_config_bss() 1345 goto out; wcn36xx_smd_delete_bss() 1350 goto out; wcn36xx_smd_delete_bss() 1352 out: wcn36xx_smd_delete_bss() 1367 /* TODO need to find out why this is needed? */ wcn36xx_smd_send_beacon() 1378 goto out; wcn36xx_smd_send_beacon() 1382 /* TODO need to find out why this is needed? */ wcn36xx_smd_send_beacon() 1398 goto out; wcn36xx_smd_send_beacon() 1403 goto out; wcn36xx_smd_send_beacon() 1405 out: wcn36xx_smd_send_beacon() 1424 goto out; wcn36xx_smd_update_proberesp_tmpl() 1441 goto out; wcn36xx_smd_update_proberesp_tmpl() 1447 goto out; wcn36xx_smd_update_proberesp_tmpl() 1449 out: wcn36xx_smd_update_proberesp_tmpl() 1483 goto out; wcn36xx_smd_set_stakey() 1488 goto out; wcn36xx_smd_set_stakey() 1490 out: wcn36xx_smd_set_stakey() 1521 goto out; wcn36xx_smd_set_bsskey() 1526 goto out; wcn36xx_smd_set_bsskey() 1528 out: wcn36xx_smd_set_bsskey() 1553 goto out; wcn36xx_smd_remove_stakey() 1558 goto out; wcn36xx_smd_remove_stakey() 1560 out: wcn36xx_smd_remove_stakey() 1583 goto out; wcn36xx_smd_remove_bsskey() 1588 goto out; wcn36xx_smd_remove_bsskey() 1590 out: wcn36xx_smd_remove_bsskey() 1613 goto out; wcn36xx_smd_enter_bmps() 1618 goto out; wcn36xx_smd_enter_bmps() 1620 out: wcn36xx_smd_enter_bmps() 1641 goto out; wcn36xx_smd_exit_bmps() 1646 goto out; wcn36xx_smd_exit_bmps() 1648 out: wcn36xx_smd_exit_bmps() 1674 goto out; wcn36xx_smd_set_power_params() 1677 out: wcn36xx_smd_set_power_params() 1704 goto out; wcn36xx_smd_keep_alive_req() 1712 goto out; wcn36xx_smd_keep_alive_req() 1717 goto out; wcn36xx_smd_keep_alive_req() 1719 out: wcn36xx_smd_keep_alive_req() 1744 goto out; wcn36xx_smd_dump_cmd_req() 1749 goto out; wcn36xx_smd_dump_cmd_req() 1751 out: wcn36xx_smd_dump_cmd_req() 1815 goto out; wcn36xx_smd_feature_caps_exchange() 1819 goto out; wcn36xx_smd_feature_caps_exchange() 1826 out: wcn36xx_smd_feature_caps_exchange() 1862 goto out; wcn36xx_smd_add_ba_session() 1867 goto out; wcn36xx_smd_add_ba_session() 1869 out: wcn36xx_smd_add_ba_session() 1890 goto out; wcn36xx_smd_add_ba() 1895 goto out; wcn36xx_smd_add_ba() 1897 out: wcn36xx_smd_add_ba() 1918 goto out; wcn36xx_smd_del_ba() 1923 goto out; wcn36xx_smd_del_ba() 1925 out: wcn36xx_smd_del_ba() 1952 goto out; wcn36xx_smd_trigger_ba() 1957 goto out; wcn36xx_smd_trigger_ba() 1959 out: wcn36xx_smd_trigger_ba() 2074 goto out; wcn36xx_smd_update_cfg() 2079 goto out; wcn36xx_smd_update_cfg() 2081 out: wcn36xx_smd_update_cfg() 2146 wcn36xx_err("Run out of memory while handling SMD_EVENT (%d)\n", wcn36xx_smd_rsp_process() 2208 goto out; wcn36xx_smd_open() 2224 out: wcn36xx_smd_open()
|
/linux-4.4.14/drivers/cpuidle/ |
H A D | cpuidle-ux500.c | 42 goto out; ux500_enter_idle() 53 goto out; ux500_enter_idle() 58 goto out; ux500_enter_idle() 63 goto out; ux500_enter_idle() 67 goto out; ux500_enter_idle() 73 goto out; ux500_enter_idle() 83 out: ux500_enter_idle()
|
/linux-4.4.14/fs/proc/ |
H A D | namespaces.c | 90 goto out; proc_ns_instantiate() 102 out: proc_ns_instantiate() 115 goto out; proc_ns_dir_readdir() 117 goto out; proc_ns_dir_readdir() 128 out: proc_ns_dir_readdir() 159 goto out; proc_ns_dir_lookup() 162 out: proc_ns_dir_lookup()
|
/linux-4.4.14/drivers/staging/rtl8712/ |
H A D | rtl871x_eeprom.c | 53 goto out; shift_out_bits() 62 goto out; shift_out_bits() 70 goto out; shift_out_bits() 73 out:; shift_out_bits() 81 goto out; shift_in_bits() 89 goto out; shift_in_bits() 96 out: shift_in_bits() 210 goto out; r8712_eeprom_read16() 214 goto out; r8712_eeprom_read16() 226 out: r8712_eeprom_read16()
|
/linux-4.4.14/net/x25/ |
H A D | x25_proc.c | 54 goto out; x25_seq_route_show() 61 out: x25_seq_route_show() 93 goto out; x25_seq_socket_show() 114 out: x25_seq_socket_show() 142 goto out; x25_seq_forward_show() 149 out: x25_seq_forward_show() 217 goto out; x25_proc_init() 221 goto out; x25_proc_init() 225 goto out; x25_proc_init() 228 out: x25_proc_init()
|
/linux-4.4.14/sound/aoa/soundbus/i2sbus/ |
H A D | interface.h | 91 static inline int i2s_sf_mclkdiv(int div, int *out) i2s_sf_mclkdiv() argument 96 case 1: *out |= I2S_SF_MCLKDIV_1; return 0; i2s_sf_mclkdiv() 97 case 3: *out |= I2S_SF_MCLKDIV_3; return 0; i2s_sf_mclkdiv() 98 case 5: *out |= I2S_SF_MCLKDIV_5; return 0; i2s_sf_mclkdiv() 99 case 14: *out |= I2S_SF_MCLKDIV_14; return 0; i2s_sf_mclkdiv() 105 *out |= I2S_SF_MCLKDIV_OTHER(div); i2s_sf_mclkdiv() 118 static inline int i2s_sf_sclkdiv(int div, int *out) i2s_sf_sclkdiv() argument 123 case 1: *out |= I2S_SF_SCLKDIV_1; return 0; i2s_sf_sclkdiv() 124 case 3: *out |= I2S_SF_SCLKDIV_3; return 0; i2s_sf_sclkdiv() 129 *out |= I2S_SF_SCLKDIV_OTHER(div); i2s_sf_sclkdiv()
|