/linux-4.1.27/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.1.27/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.1.27/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.1.27/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.1.27/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
|
/linux-4.1.27/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.1.27/drivers/net/ethernet/mellanox/mlx5/core/ |
H A D | fw.c | 40 struct mlx5_cmd_query_adapter_mbox_out *out; mlx5_cmd_query_adapter() local 44 out = kzalloc(sizeof(*out), GFP_KERNEL); mlx5_cmd_query_adapter() 45 if (!out) mlx5_cmd_query_adapter() 50 err = mlx5_cmd_exec(dev, &in, sizeof(in), out, sizeof(*out)); mlx5_cmd_query_adapter() 54 if (out->hdr.status) { mlx5_cmd_query_adapter() 55 err = mlx5_cmd_status_to_err(&out->hdr); mlx5_cmd_query_adapter() 59 memcpy(dev->board_id, out->vsd_psid, sizeof(out->vsd_psid)); mlx5_cmd_query_adapter() 62 kfree(out); mlx5_cmd_query_adapter() 76 void *out; mlx5_query_odp_caps() local 83 out = kzalloc(out_sz, GFP_KERNEL); mlx5_query_odp_caps() 84 if (!out) mlx5_query_odp_caps() 88 err = mlx5_cmd_exec(dev, in, sizeof(in), out, out_sz); mlx5_query_odp_caps() 90 goto out; mlx5_query_odp_caps() 92 err = mlx5_cmd_status_to_err_v2(out); mlx5_query_odp_caps() 95 goto out; mlx5_query_odp_caps() 98 memcpy(caps, MLX5_ADDR_OF(query_hca_cap_out, out, capability_struct), mlx5_query_odp_caps() 106 out: mlx5_query_odp_caps() 107 kfree(out); mlx5_query_odp_caps() 115 struct mlx5_cmd_init_hca_mbox_out out; mlx5_cmd_init_hca() local 119 memset(&out, 0, sizeof(out)); mlx5_cmd_init_hca() 121 err = mlx5_cmd_exec(dev, &in, sizeof(in), &out, sizeof(out)); mlx5_cmd_init_hca() 125 if (out.hdr.status) mlx5_cmd_init_hca() 126 err = mlx5_cmd_status_to_err(&out.hdr); mlx5_cmd_init_hca() 134 struct mlx5_cmd_teardown_hca_mbox_out out; mlx5_cmd_teardown_hca() local 138 memset(&out, 0, sizeof(out)); mlx5_cmd_teardown_hca() 140 err = mlx5_cmd_exec(dev, &in, sizeof(in), &out, sizeof(out)); mlx5_cmd_teardown_hca() 144 if (out.hdr.status) mlx5_cmd_teardown_hca() 145 err = mlx5_cmd_status_to_err(&out.hdr); mlx5_cmd_teardown_hca()
|
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 | 54 struct mlx5_create_mkey_mbox_out *out) mlx5_core_create_mkey() 68 err = mlx5_cmd_exec_cb(dev, in, inlen, out, sizeof(*out), mlx5_core_create_mkey() 90 mlx5_core_dbg(dev, "out 0x%x, key 0x%x, mkey 0x%x\n", mlx5_core_create_mkey() 111 struct mlx5_destroy_mkey_mbox_out out; mlx5_core_destroy_mkey() local 117 memset(&out, 0, sizeof(out)); mlx5_core_destroy_mkey() 130 err = mlx5_cmd_exec(dev, &in, sizeof(in), &out, sizeof(out)); mlx5_core_destroy_mkey() 134 if (out.hdr.status) mlx5_core_destroy_mkey() 135 return mlx5_cmd_status_to_err(&out.hdr); mlx5_core_destroy_mkey() 142 struct mlx5_query_mkey_mbox_out *out, int outlen) mlx5_core_query_mkey() 148 memset(out, 0, outlen); mlx5_core_query_mkey() 152 err = mlx5_cmd_exec(dev, &in, sizeof(in), out, outlen); mlx5_core_query_mkey() 156 if (out->hdr.status) mlx5_core_query_mkey() 157 return mlx5_cmd_status_to_err(&out->hdr); mlx5_core_query_mkey() 167 struct mlx5_query_special_ctxs_mbox_out out; mlx5_core_dump_fill_mkey() local 171 memset(&out, 0, sizeof(out)); mlx5_core_dump_fill_mkey() 174 err = mlx5_cmd_exec(dev, &in, sizeof(in), &out, sizeof(out)); mlx5_core_dump_fill_mkey() 178 if (out.hdr.status) mlx5_core_dump_fill_mkey() 179 return mlx5_cmd_status_to_err(&out.hdr); mlx5_core_dump_fill_mkey() 181 *mkey = be32_to_cpu(out.dump_fill_mkey); mlx5_core_dump_fill_mkey() 191 struct mlx5_allocate_psv_out out; mlx5_core_create_psv() local 198 memset(&out, 0, sizeof(out)); mlx5_core_create_psv() 202 err = mlx5_cmd_exec(dev, &in, sizeof(in), &out, sizeof(out)); mlx5_core_create_psv() 208 if (out.hdr.status) { mlx5_core_create_psv() 210 out.hdr.status); mlx5_core_create_psv() 211 return mlx5_cmd_status_to_err(&out.hdr); mlx5_core_create_psv() 215 sig_index[i] = be32_to_cpu(out.psv_idx[i]) & 0xffffff; mlx5_core_create_psv() 224 struct mlx5_destroy_psv_out out; mlx5_core_destroy_psv() local 228 memset(&out, 0, sizeof(out)); mlx5_core_destroy_psv() 232 err = mlx5_cmd_exec(dev, &in, sizeof(in), &out, sizeof(out)); mlx5_core_destroy_psv() 235 goto out; mlx5_core_destroy_psv() 238 if (out.hdr.status) { mlx5_core_destroy_psv() 240 out.hdr.status); mlx5_core_destroy_psv() 241 err = mlx5_cmd_status_to_err(&out.hdr); mlx5_core_destroy_psv() 242 goto out; mlx5_core_destroy_psv() 245 out: mlx5_core_destroy_psv() 51 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 141 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 | qp.c | 186 struct mlx5_create_qp_mbox_out out; mlx5_core_create_qp() local 191 memset(&out, 0, sizeof(out)); mlx5_core_create_qp() 194 err = mlx5_cmd_exec(dev, in, inlen, &out, sizeof(out)); mlx5_core_create_qp() 200 if (out.hdr.status) { mlx5_core_create_qp() 203 return mlx5_cmd_status_to_err(&out.hdr); mlx5_core_create_qp() 206 qp->qpn = be32_to_cpu(out.qpn) & 0xffffff; mlx5_core_create_qp() 235 mlx5_cmd_exec(dev, &din, sizeof(din), &out, sizeof(dout)); mlx5_core_create_qp() 245 struct mlx5_destroy_qp_mbox_out out; mlx5_core_destroy_qp() local 260 memset(&out, 0, sizeof(out)); mlx5_core_destroy_qp() 263 err = mlx5_cmd_exec(dev, &in, sizeof(in), &out, sizeof(out)); mlx5_core_destroy_qp() 267 if (out.hdr.status) mlx5_core_destroy_qp() 268 return mlx5_cmd_status_to_err(&out.hdr); mlx5_core_destroy_qp() 317 struct mlx5_modify_qp_mbox_out out; mlx5_core_qp_modify() local 325 memset(&out, 0, sizeof(out)); mlx5_core_qp_modify() 329 err = mlx5_cmd_exec(dev, in, sizeof(*in), &out, sizeof(out)); mlx5_core_qp_modify() 333 return mlx5_cmd_status_to_err(&out.hdr); mlx5_core_qp_modify() 352 struct mlx5_query_qp_mbox_out *out, int outlen) mlx5_core_qp_query() 358 memset(out, 0, outlen); mlx5_core_qp_query() 361 err = mlx5_cmd_exec(dev, &in, sizeof(in), out, outlen); mlx5_core_qp_query() 365 if (out->hdr.status) mlx5_core_qp_query() 366 return mlx5_cmd_status_to_err(&out->hdr); mlx5_core_qp_query() 375 struct mlx5_alloc_xrcd_mbox_out out; mlx5_core_xrcd_alloc() local 379 memset(&out, 0, sizeof(out)); mlx5_core_xrcd_alloc() 381 err = mlx5_cmd_exec(dev, &in, sizeof(in), &out, sizeof(out)); mlx5_core_xrcd_alloc() 385 if (out.hdr.status) mlx5_core_xrcd_alloc() 386 err = mlx5_cmd_status_to_err(&out.hdr); mlx5_core_xrcd_alloc() 388 *xrcdn = be32_to_cpu(out.xrcdn); mlx5_core_xrcd_alloc() 397 struct mlx5_dealloc_xrcd_mbox_out out; mlx5_core_xrcd_dealloc() local 401 memset(&out, 0, sizeof(out)); mlx5_core_xrcd_dealloc() 404 err = mlx5_cmd_exec(dev, &in, sizeof(in), &out, sizeof(out)); mlx5_core_xrcd_dealloc() 408 if (out.hdr.status) mlx5_core_xrcd_dealloc() 409 err = mlx5_cmd_status_to_err(&out.hdr); mlx5_core_xrcd_dealloc() 420 struct mlx5_page_fault_resume_mbox_out out; mlx5_core_page_fault_resume() local 424 memset(&out, 0, sizeof(out)); mlx5_core_page_fault_resume() 433 err = mlx5_cmd_exec(dev, &in, sizeof(in), &out, sizeof(out)); mlx5_core_page_fault_resume() 437 if (out.hdr.status) mlx5_core_page_fault_resume() 438 err = mlx5_cmd_status_to_err(&out.hdr); mlx5_core_page_fault_resume() 351 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 | 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 99 err = mlx5_core_access_reg(dev, &in, sizeof(in), &out, mlx5_set_port_caps() 100 sizeof(out), MLX5_REG_PCAP, 0, 1); mlx5_set_port_caps()
|
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 | srq.c | 85 struct mlx5_create_srq_mbox_out out; mlx5_core_create_srq() local 91 memset(&out, 0, sizeof(out)); mlx5_core_create_srq() 93 err = mlx5_cmd_exec(dev, in, inlen, &out, sizeof(out)); mlx5_core_create_srq() 97 if (out.hdr.status) mlx5_core_create_srq() 98 return mlx5_cmd_status_to_err(&out.hdr); mlx5_core_create_srq() 100 srq->srqn = be32_to_cpu(out.srqn) & 0xffffff; mlx5_core_create_srq() 128 struct mlx5_destroy_srq_mbox_out out; mlx5_core_destroy_srq() local 146 memset(&out, 0, sizeof(out)); mlx5_core_destroy_srq() 149 err = mlx5_cmd_exec(dev, &in, sizeof(in), &out, sizeof(out)); mlx5_core_destroy_srq() 153 if (out.hdr.status) mlx5_core_destroy_srq() 154 return mlx5_cmd_status_to_err(&out.hdr); mlx5_core_destroy_srq() 165 struct mlx5_query_srq_mbox_out *out) mlx5_core_query_srq() 171 memset(out, 0, sizeof(*out)); mlx5_core_query_srq() 175 err = mlx5_cmd_exec(dev, &in, sizeof(in), out, sizeof(*out)); mlx5_core_query_srq() 179 if (out->hdr.status) mlx5_core_query_srq() 180 return mlx5_cmd_status_to_err(&out->hdr); mlx5_core_query_srq() 190 struct mlx5_arm_srq_mbox_out out; mlx5_core_arm_srq() local 194 memset(&out, 0, sizeof(out)); mlx5_core_arm_srq() 201 err = mlx5_cmd_exec(dev, &in, sizeof(in), &out, sizeof(out)); mlx5_core_arm_srq() 205 if (out.hdr.status) mlx5_core_arm_srq() 206 return mlx5_cmd_status_to_err(&out.hdr); mlx5_core_arm_srq() 164 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
|
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 | uar.c | 70 struct mlx5_alloc_uar_mbox_out out; mlx5_cmd_alloc_uar() local 74 memset(&out, 0, sizeof(out)); mlx5_cmd_alloc_uar() 76 err = mlx5_cmd_exec(dev, &in, sizeof(in), &out, sizeof(out)); mlx5_cmd_alloc_uar() 80 if (out.hdr.status) { mlx5_cmd_alloc_uar() 81 err = mlx5_cmd_status_to_err(&out.hdr); mlx5_cmd_alloc_uar() 85 *uarn = be32_to_cpu(out.uarn) & 0xffffff; mlx5_cmd_alloc_uar() 95 struct mlx5_free_uar_mbox_out out; mlx5_cmd_free_uar() local 99 memset(&out, 0, sizeof(out)); mlx5_cmd_free_uar() 102 err = mlx5_cmd_exec(dev, &in, sizeof(in), &out, sizeof(out)); mlx5_cmd_free_uar() 106 if (out.hdr.status) mlx5_cmd_free_uar() 107 err = mlx5_cmd_status_to_err(&out.hdr); mlx5_cmd_free_uar()
|
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; give_pages() local 295 memset(&out, 0, sizeof(out)); give_pages() 315 err = mlx5_cmd_exec(dev, in, inlen, &out, sizeof(out)); give_pages() 323 if (out.hdr.status) { give_pages() 324 err = mlx5_cmd_status_to_err(&out.hdr); give_pages() 327 func_id, npages, out.hdr.status); give_pages() 343 memset(&out, 0, sizeof(out)); give_pages() 346 if (mlx5_cmd_exec(dev, nin, sizeof(*nin), &out, sizeof(out))) give_pages() 363 struct mlx5_manage_pages_outbox *out; reclaim_pages() local 374 outlen = sizeof(*out) + npages * sizeof(out->pas[0]); reclaim_pages() 375 out = mlx5_vzalloc(outlen); reclaim_pages() 376 if (!out) reclaim_pages() 384 err = mlx5_cmd_exec(dev, &in, sizeof(in), out, outlen); reclaim_pages() 391 if (out->hdr.status) { reclaim_pages() 392 err = mlx5_cmd_status_to_err(&out->hdr); reclaim_pages() 396 num_claimed = be32_to_cpu(out->num_entries); reclaim_pages() 401 addr = be64_to_cpu(out->pas[i]); reclaim_pages() 406 kvfree(out); reclaim_pages() 472 ret = (sizeof(lay->out) + MLX5_BLKS_FOR_RECLAIM_PAGES * sizeof(block->data) - optimal_reclaimed_pages()
|
H A D | main.c | 305 static void fw2drv_caps(struct mlx5_caps *caps, void *out) fw2drv_caps() argument 309 gen->max_srq_wqes = 1 << MLX5_GET_PR(cmd_hca_cap, out, log_max_srq_sz); fw2drv_caps() 310 gen->max_wqes = 1 << MLX5_GET_PR(cmd_hca_cap, out, log_max_qp_sz); fw2drv_caps() 311 gen->log_max_qp = MLX5_GET_PR(cmd_hca_cap, out, log_max_qp); fw2drv_caps() 312 gen->log_max_strq = MLX5_GET_PR(cmd_hca_cap, out, log_max_strq_sz); fw2drv_caps() 313 gen->log_max_srq = MLX5_GET_PR(cmd_hca_cap, out, log_max_srqs); fw2drv_caps() 314 gen->max_cqes = 1 << MLX5_GET_PR(cmd_hca_cap, out, log_max_cq_sz); fw2drv_caps() 315 gen->log_max_cq = MLX5_GET_PR(cmd_hca_cap, out, log_max_cq); fw2drv_caps() 316 gen->max_eqes = 1 << MLX5_GET_PR(cmd_hca_cap, out, log_max_eq_sz); fw2drv_caps() 317 gen->log_max_mkey = MLX5_GET_PR(cmd_hca_cap, out, log_max_mkey); fw2drv_caps() 318 gen->log_max_eq = MLX5_GET_PR(cmd_hca_cap, out, log_max_eq); fw2drv_caps() 319 gen->max_indirection = MLX5_GET_PR(cmd_hca_cap, out, max_indirection); fw2drv_caps() 320 gen->log_max_mrw_sz = MLX5_GET_PR(cmd_hca_cap, out, log_max_mrw_sz); fw2drv_caps() 321 gen->log_max_bsf_list_size = MLX5_GET_PR(cmd_hca_cap, out, log_max_bsf_list_size); fw2drv_caps() 322 gen->log_max_klm_list_size = MLX5_GET_PR(cmd_hca_cap, out, log_max_klm_list_size); fw2drv_caps() 323 gen->log_max_ra_req_dc = MLX5_GET_PR(cmd_hca_cap, out, log_max_ra_req_dc); fw2drv_caps() 324 gen->log_max_ra_res_dc = MLX5_GET_PR(cmd_hca_cap, out, log_max_ra_res_dc); fw2drv_caps() 325 gen->log_max_ra_req_qp = MLX5_GET_PR(cmd_hca_cap, out, log_max_ra_req_qp); fw2drv_caps() 326 gen->log_max_ra_res_qp = MLX5_GET_PR(cmd_hca_cap, out, log_max_ra_res_qp); fw2drv_caps() 327 gen->max_qp_counters = MLX5_GET_PR(cmd_hca_cap, out, max_qp_cnt); fw2drv_caps() 328 gen->pkey_table_size = get_pkey_table_size(MLX5_GET_PR(cmd_hca_cap, out, pkey_table_size)); fw2drv_caps() 329 gen->local_ca_ack_delay = MLX5_GET_PR(cmd_hca_cap, out, local_ca_ack_delay); fw2drv_caps() 330 gen->num_ports = MLX5_GET_PR(cmd_hca_cap, out, num_ports); fw2drv_caps() 331 gen->log_max_msg = MLX5_GET_PR(cmd_hca_cap, out, log_max_msg); fw2drv_caps() 332 gen->stat_rate_support = MLX5_GET_PR(cmd_hca_cap, out, stat_rate_support); fw2drv_caps() 333 gen->flags = be64_to_cpu(*(__be64 *)MLX5_ADDR_OF(cmd_hca_cap, out, reserved_22)); fw2drv_caps() 335 gen->uar_sz = MLX5_GET_PR(cmd_hca_cap, out, uar_sz); fw2drv_caps() 336 gen->min_log_pg_sz = MLX5_GET_PR(cmd_hca_cap, out, log_pg_sz); fw2drv_caps() 337 gen->bf_reg_size = MLX5_GET_PR(cmd_hca_cap, out, bf); fw2drv_caps() 338 gen->bf_reg_size = 1 << MLX5_GET_PR(cmd_hca_cap, out, log_bf_reg_size); fw2drv_caps() 339 gen->max_sq_desc_sz = MLX5_GET_PR(cmd_hca_cap, out, max_wqe_sz_sq); fw2drv_caps() 340 gen->max_rq_desc_sz = MLX5_GET_PR(cmd_hca_cap, out, max_wqe_sz_rq); fw2drv_caps() 341 gen->max_dc_sq_desc_sz = MLX5_GET_PR(cmd_hca_cap, out, max_wqe_sz_sq_dc); fw2drv_caps() 342 gen->max_qp_mcg = MLX5_GET_PR(cmd_hca_cap, out, max_qp_mcg); fw2drv_caps() 343 gen->log_max_pd = MLX5_GET_PR(cmd_hca_cap, out, log_max_pd); fw2drv_caps() 344 gen->log_max_xrcd = MLX5_GET_PR(cmd_hca_cap, out, log_max_xrcd); fw2drv_caps() 345 gen->log_uar_page_sz = MLX5_GET_PR(cmd_hca_cap, out, log_uar_page_sz); fw2drv_caps() 365 void *out; mlx5_core_get_caps() local 369 out = kzalloc(out_sz, GFP_KERNEL); mlx5_core_get_caps() 370 if (!out) mlx5_core_get_caps() 374 err = mlx5_cmd_exec(dev, in, sizeof(in), out, out_sz); mlx5_core_get_caps() 378 err = mlx5_cmd_status_to_err_v2(out); mlx5_core_get_caps() 384 fw2drv_caps(caps, MLX5_ADDR_OF(query_hca_cap_out, out, capability_struct)); mlx5_core_get_caps() 387 kfree(out); mlx5_core_get_caps() 393 u32 out[MLX5_ST_SZ_DW(set_hca_cap_out)]; set_caps() local 396 memset(out, 0, sizeof(out)); set_caps() 399 err = mlx5_cmd_exec(dev, in, in_sz, out, sizeof(out)); set_caps() 403 err = mlx5_cmd_status_to_err_v2(out); set_caps() 476 struct mlx5_enable_hca_mbox_out out; mlx5_core_enable_hca() local 479 memset(&out, 0, sizeof(out)); mlx5_core_enable_hca() 481 err = mlx5_cmd_exec(dev, &in, sizeof(in), &out, sizeof(out)); mlx5_core_enable_hca() 485 if (out.hdr.status) mlx5_core_enable_hca() 486 return mlx5_cmd_status_to_err(&out.hdr); mlx5_core_enable_hca() 495 struct mlx5_disable_hca_mbox_out out; mlx5_core_disable_hca() local 498 memset(&out, 0, sizeof(out)); mlx5_core_disable_hca() 500 err = mlx5_cmd_exec(dev, &in, sizeof(in), &out, sizeof(out)); mlx5_core_disable_hca() 504 if (out.hdr.status) mlx5_core_disable_hca() 505 return mlx5_cmd_status_to_err(&out.hdr); mlx5_core_disable_hca() 974 pr_warn("selected profile out of range, selecting default (%d)\n", init_one() 986 goto out; init_one() 1003 out: init_one()
|
/linux-4.1.27/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.1.27/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 | 131 struct omap_dss_device *out = &sdi.output; sdi_display_enable() local 138 if (out == NULL || out->manager == NULL) { sdi_display_enable() 171 dss_mgr_set_timings(out->manager, t); sdi_display_enable() 190 dispc_mgr_set_clock_div(out->manager->id, &sdi.mgr_config.clock_info); sdi_display_enable() 198 r = dss_mgr_enable(out->manager); sdi_display_enable() 338 struct omap_dss_device *out = &sdi.output; sdi_init_output() local 340 out->dev = &pdev->dev; sdi_init_output() 341 out->id = OMAP_DSS_OUTPUT_SDI; sdi_init_output() 342 out->output_type = OMAP_DISPLAY_TYPE_SDI; sdi_init_output() 343 out->name = "sdi.0"; sdi_init_output() 344 out->dispc_channel = OMAP_DSS_CHANNEL_LCD; sdi_init_output() 346 out->port_num = 1; sdi_init_output() 347 out->ops.sdi = &sdi_ops; sdi_init_output() 348 out->owner = THIS_MODULE; sdi_init_output() 350 omapdss_register_output(out); sdi_init_output() 355 struct omap_dss_device *out = &sdi.output; sdi_uninit_output() local 357 omapdss_unregister_output(out); sdi_uninit_output()
|
/linux-4.1.27/lib/ |
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 | 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 | 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 | test_kasan.c | 25 pr_info("out-of-bounds to right\n"); kmalloc_oob_right() 41 pr_info("out-of-bounds to left\n"); kmalloc_oob_left() 57 pr_info("kmalloc_node(): out-of-bounds to right\n"); kmalloc_node_oob_right() 73 pr_info("kmalloc large allocation: out-of-bounds to right\n"); kmalloc_large_oob_rigth() 90 pr_info("out-of-bounds after krealloc more\n"); kmalloc_oob_krealloc_more() 109 pr_info("out-of-bounds after krealloc less\n"); kmalloc_oob_krealloc_less() 127 pr_info("kmalloc out-of-bounds for 16-bytes access\n"); kmalloc_oob_16() 146 pr_info("out-of-bounds in memset\n"); kmalloc_oob_in_memset() 223 pr_info("out-of-bounds in kmem_cache_alloc\n"); kmem_cache_oob() 243 pr_info("out-of-bounds global variable\n"); kasan_global_oob() 253 pr_info("out-of-bounds on stack\n"); kasan_stack_oob()
|
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.1.27/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.1.27/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.1.27/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.1.27/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 | 37 static int skein256_final(struct shash_desc *desc, u8 *out) skein256_final() argument 40 out); skein256_final() 43 static int skein256_export(struct shash_desc *desc, void *out) skein256_export() argument 47 memcpy(out, sctx, sizeof(*sctx)); skein256_export() 72 static int skein512_final(struct shash_desc *desc, u8 *out) skein512_final() argument 75 out); skein512_final() 78 static int skein512_export(struct shash_desc *desc, void *out) skein512_export() argument 82 memcpy(out, sctx, sizeof(*sctx)); skein512_export() 107 static int skein1024_final(struct shash_desc *desc, u8 *out) skein1024_final() argument 110 out); skein1024_final() 113 static int skein1024_export(struct shash_desc *desc, void *out) skein1024_export() argument 117 memcpy(out, sctx, sizeof(*sctx)); skein1024_export() 186 goto out; skein_generic_init() 198 out: skein_generic_init()
|
/linux-4.1.27/arch/x86/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.1.27/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.1.27/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.1.27/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.1.27/arch/x86/include/uapi/asm/ |
H A D | mman.h | 4 #define MAP_32BIT 0x40 /* only give out 32bit addresses */
|
/linux-4.1.27/include/net/netfilter/ipv6/ |
H A D | nf_nat_masquerade.h | 6 const struct net_device *out);
|
/linux-4.1.27/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.1.27/include/asm-generic/ |
H A D | user.h | 5 * used for a.out files, which are not supported on new architectures.
|
/linux-4.1.27/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.1.27/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.1.27/drivers/media/pci/solo6x10/ |
H A D | solo6x10-core.c | 265 char *out = buf; input_map_show() local 268 out += sprintf(out, "Channel 0 => Input %d\n", val & 0x1f); input_map_show() 269 out += sprintf(out, "Channel 1 => Input %d\n", (val >> 5) & 0x1f); input_map_show() 270 out += sprintf(out, "Channel 2 => Input %d\n", (val >> 10) & 0x1f); input_map_show() 271 out += sprintf(out, "Channel 3 => Input %d\n", (val >> 15) & 0x1f); input_map_show() 272 out += sprintf(out, "Channel 4 => Input %d\n", (val >> 20) & 0x1f); input_map_show() 273 out += sprintf(out, "Channel 5 => Input %d\n", (val >> 25) & 0x1f); input_map_show() 276 out += sprintf(out, "Channel 6 => Input %d\n", val & 0x1f); input_map_show() 277 out += sprintf(out, "Channel 7 => Input %d\n", (val >> 5) & 0x1f); input_map_show() 278 out += sprintf(out, "Channel 8 => Input %d\n", (val >> 10) & 0x1f); input_map_show() 279 out += sprintf(out, "Channel 9 => Input %d\n", (val >> 15) & 0x1f); input_map_show() 280 out += sprintf(out, "Channel 10 => Input %d\n", (val >> 20) & 0x1f); input_map_show() 281 out += sprintf(out, "Channel 11 => Input %d\n", (val >> 25) & 0x1f); input_map_show() 284 out += sprintf(out, "Channel 12 => Input %d\n", val & 0x1f); input_map_show() 285 out += sprintf(out, "Channel 13 => Input %d\n", (val >> 5) & 0x1f); input_map_show() 286 out += sprintf(out, "Channel 14 => Input %d\n", (val >> 10) & 0x1f); input_map_show() 287 out += sprintf(out, "Channel 15 => Input %d\n", (val >> 15) & 0x1f); input_map_show() 288 out += sprintf(out, "Spot Output => Input %d\n", (val >> 20) & 0x1f); input_map_show() 290 return out - buf; input_map_show() 325 char *out = buf; intervals_show() local 330 out += sprintf(out, "Channel %d: %d/%d (0x%08x)\n", intervals_show() 335 return out - buf; intervals_show() 344 char *out = buf; sdram_offsets_show() local 346 out += sprintf(out, "DISP: 0x%08x @ 0x%08x\n", sdram_offsets_show() 350 out += sprintf(out, "EOSD: 0x%08x @ 0x%08x (0x%08x * %d)\n", sdram_offsets_show() 357 out += sprintf(out, "MOTI: 0x%08x @ 0x%08x\n", sdram_offsets_show() 361 out += sprintf(out, "G723: 0x%08x @ 0x%08x\n", sdram_offsets_show() 365 out += sprintf(out, "CAPT: 0x%08x @ 0x%08x (0x%08x * %d)\n", sdram_offsets_show() 371 out += sprintf(out, "EREF: 0x%08x @ 0x%08x (0x%08x * %d)\n", sdram_offsets_show() 377 out += sprintf(out, "MPEG: 0x%08x @ 0x%08x\n", sdram_offsets_show() 381 out += sprintf(out, "JPEG: 0x%08x @ 0x%08x\n", sdram_offsets_show() 385 return out - buf; sdram_offsets_show()
|
/linux-4.1.27/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()
|
/linux-4.1.27/include/linux/ |
H A D | nx842.h | 7 unsigned char *out, unsigned int *out_len, void *wrkmem); 9 unsigned char *out, unsigned int *out_len, void *wrkmem);
|
H A D | a.out.h | 4 #include <uapi/linux/a.out.h>
|
/linux-4.1.27/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.1.27/tools/perf/util/ |
H A D | perf_regs.c | 11 goto out; perf_reg_value() 24 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() 379 goto out; record_ftrace_printk() 383 out: record_ftrace_printk() 534 goto out; tracing_data_get() 537 goto out; tracing_data_get() 540 goto out; tracing_data_get() 543 goto out; tracing_data_get() 546 goto out; tracing_data_get() 549 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 | srcline.c | 116 goto out; addr2line_init() 120 goto out; addr2line_init() 125 goto out; addr2line_init() 128 goto out; addr2line_init() 132 out: addr2line_init() 218 goto out; addr2line() 228 goto out; addr2line() 238 out: addr2line() 264 goto out; get_srcline() 272 goto out; get_srcline() 275 goto out; get_srcline() 278 goto out; get_srcline() 282 goto out; get_srcline() 290 out: get_srcline()
|
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.1.27/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() 42 goto out; nfs4_get_rootfh() 46 out: nfs4_get_rootfh()
|
H A D | nfs42xdr.c | 184 goto out; nfs4_xdr_dec_allocate() 187 goto out; nfs4_xdr_dec_allocate() 190 goto out; nfs4_xdr_dec_allocate() 193 goto out; nfs4_xdr_dec_allocate() 195 out: nfs4_xdr_dec_allocate() 211 goto out; nfs4_xdr_dec_deallocate() 214 goto out; nfs4_xdr_dec_deallocate() 217 goto out; nfs4_xdr_dec_deallocate() 220 goto out; nfs4_xdr_dec_deallocate() 222 out: nfs4_xdr_dec_deallocate() 238 goto out; nfs4_xdr_dec_seek() 241 goto out; nfs4_xdr_dec_seek() 244 goto out; nfs4_xdr_dec_seek() 246 out: nfs4_xdr_dec_seek()
|
/linux-4.1.27/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()
|
H A D | cmd.c | 199 goto out; wlcore_cmd_wait_for_event_or_timeout() 212 goto out; wlcore_cmd_wait_for_event_or_timeout() 219 goto out; wlcore_cmd_wait_for_event_or_timeout() 224 out: wlcore_cmd_wait_for_event_or_timeout() 244 goto out; wl12xx_cmd_role_enable() 269 out: wl12xx_cmd_role_enable() 286 goto out; wl12xx_cmd_role_disable() 302 out: wl12xx_cmd_role_disable() 435 goto out; wl12xx_cmd_role_start_dev() 471 out: wl12xx_cmd_role_start_dev() 487 goto out; wl12xx_cmd_role_stop_dev() 507 out: wl12xx_cmd_role_stop_dev() 521 goto out; wl12xx_cmd_role_start_sta() 582 out: wl12xx_cmd_role_start_sta() 598 goto out; wl12xx_cmd_role_stop_sta() 618 out: wl12xx_cmd_role_stop_sta() 636 goto out; wl12xx_cmd_role_start_ap() 642 goto out; wl12xx_cmd_role_start_ap() 725 out: wl12xx_cmd_role_start_ap() 737 goto out; wl12xx_cmd_role_stop_ap() 756 out: wl12xx_cmd_role_stop_ap() 770 goto out; wl12xx_cmd_role_start_ibss() 819 out: wl12xx_cmd_role_start_ibss() 942 goto out; wl1271_cmd_data_path() 960 goto out; wl1271_cmd_data_path() 970 goto out; wl1271_cmd_data_path() 976 out: wl1271_cmd_data_path() 993 goto out; wl1271_cmd_ps_mode() 1004 goto out; wl1271_cmd_ps_mode() 1007 out: wl1271_cmd_ps_mode() 1028 goto out; wl1271_cmd_template_set() 1052 out: wl1271_cmd_template_set() 1071 goto out; wl12xx_cmd_build_null_data() 1080 out: wl12xx_cmd_build_null_data() 1098 goto out; wl12xx_cmd_build_klv_null_data() 1105 out: wl12xx_cmd_build_klv_null_data() 1123 goto out; wl1271_cmd_build_ps_poll() 1129 out: wl1271_cmd_build_ps_poll() 1153 goto out; wl12xx_cmd_build_probe_req() 1176 out: wl12xx_cmd_build_probe_req() 1193 goto out; wl1271_cmd_build_ap_probe_req() 1210 out: wl1271_cmd_build_ap_probe_req() 1270 goto out; wl1271_cmd_build_arp_rsp() 1301 out: wl1271_cmd_build_arp_rsp() 1340 goto out; wl12xx_cmd_set_default_wep_key() 1352 goto out; wl12xx_cmd_set_default_wep_key() 1355 out: wl12xx_cmd_set_default_wep_key() 1376 goto out; wl1271_cmd_set_sta_key() 1417 goto out; wl1271_cmd_set_sta_key() 1420 out: wl1271_cmd_set_sta_key() 1484 goto out; wl1271_cmd_set_ap_key() 1487 out: wl1271_cmd_set_ap_key() 1503 goto out; wl12xx_cmd_set_peer_state() 1522 out: wl12xx_cmd_set_peer_state() 1538 goto out; wl12xx_cmd_add_peer() 1581 out: wl12xx_cmd_add_peer() 1597 goto out; wl12xx_cmd_remove_peer() 1627 out: wl12xx_cmd_remove_peer() 1729 goto out; wlcore_cmd_regdomain_config_locked() 1734 goto out; wlcore_cmd_regdomain_config_locked() 1748 goto out; wlcore_cmd_regdomain_config_locked() 1758 goto out; wlcore_cmd_regdomain_config_locked() 1764 out: wlcore_cmd_regdomain_config_locked() 1779 goto out; wl12xx_cmd_config_fwlog() 1797 out: wl12xx_cmd_config_fwlog() 1811 goto out; wl12xx_cmd_start_fwlog() 1823 out: wl12xx_cmd_start_fwlog() 1837 goto out; wl12xx_cmd_stop_fwlog() 1849 out: wl12xx_cmd_stop_fwlog() 1867 goto out; wl12xx_cmd_roc() 1895 out: wl12xx_cmd_roc() 1909 goto out; wl12xx_cmd_croc() 1923 out: wl12xx_cmd_croc() 1937 goto out; wl12xx_roc() 1940 out: wl12xx_roc() 1953 goto out; wl12xx_croc() 1960 * a chance to get out. wl12xx_croc() 1964 out: wl12xx_croc() 1978 goto out; wl12xx_cmd_stop_channel_switch() 1992 out: wl12xx_cmd_stop_channel_switch() 2011 goto out; wl12xx_start_dev() 2027 out: wl12xx_start_dev() 2043 goto out; wl12xx_stop_dev() 2048 goto out; wl12xx_stop_dev() 2053 goto out; wl12xx_stop_dev() 2057 goto out; wl12xx_stop_dev() 2059 out: wl12xx_stop_dev()
|
/linux-4.1.27/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() 69 void scatterwalk_done(struct scatter_walk *walk, int out, int more) scatterwalk_done() argument 72 scatterwalk_pagedone(walk, out, more); scatterwalk_done() 77 size_t nbytes, int out) scatterwalk_copychunks() 87 memcpy_dir(buf, vaddr, len_this_page, out); scatterwalk_copychunks() 98 scatterwalk_pagedone(walk, out, 1); scatterwalk_copychunks() 104 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() 76 scatterwalk_copychunks(void *buf, struct scatter_walk *walk, size_t nbytes, int out) scatterwalk_copychunks() argument 103 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 | 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.1.27/scripts/kconfig/ |
H A D | zconf.y | 582 static void print_quoted_string(FILE *out, const char *str) 587 putc('"', out); 591 fprintf(out, "%.*s", len, str); 592 fputs("\\\"", out); 595 fputs(str, out); 596 putc('"', out); 599 static void print_symbol(FILE *out, struct menu *menu) 605 fprintf(out, "\nchoice\n"); 607 fprintf(out, "\nconfig %s\n", sym->name); 610 fputs(" boolean\n", out); 613 fputs(" tristate\n", out); 616 fputs(" string\n", out); 619 fputs(" integer\n", out); 622 fputs(" hex\n", out); 625 fputs(" ???\n", out); 633 fputs(" prompt ", out); 634 print_quoted_string(out, prop->text); 636 fputs(" if ", out); 637 expr_fprint(prop->visible.expr, out); 639 fputc('\n', out); 642 fputs( " default ", out); 643 expr_fprint(prop->expr, out); 645 fputs(" if ", out); 646 expr_fprint(prop->visible.expr, out); 648 fputc('\n', out); 651 fputs(" #choice value\n", out); 654 fputs( " select ", out); 655 expr_fprint(prop->expr, out); 656 fputc('\n', out); 659 fputs( " range ", out); 660 expr_fprint(prop->expr, out); 661 fputc('\n', out); 664 fputs( " menu ", out); 665 print_quoted_string(out, prop->text); 666 fputc('\n', out); 669 fprintf(out, " unknown prop %d!\n", prop->type); 677 fprintf(out, " help\n%s\n", menu->help); 681 void zconfdump(FILE *out) 690 print_symbol(out, menu); 694 fputs("\ncomment ", out); 695 print_quoted_string(out, prop->text); 696 fputs("\n", out); 699 fputs("\nmenu ", out); 700 print_quoted_string(out, prop->text); 701 fputs("\n", out); 707 fputs(" depends ", out); 708 expr_fprint(prop->visible.expr, out); 709 fputc('\n', out); 719 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.1.27/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.1.27/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.1.27/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.1.27/drivers/net/wireless/ti/wl1251/ |
H A D | acx.c | 32 goto out; wl1251_acx_frame_rates() 35 out: wl1251_acx_frame_rates() 57 goto out; wl1251_acx_station_id() 59 out: wl1251_acx_station_id() 81 goto out; wl1251_acx_default_key() 86 out: wl1251_acx_default_key() 110 goto out; wl1251_acx_wake_up_conditions() 113 out: wl1251_acx_wake_up_conditions() 151 goto out; wl1251_acx_fw_version() 164 out: wl1251_acx_fw_version() 188 goto out; wl1251_acx_tx_power() 191 out: wl1251_acx_tx_power() 215 goto out; wl1251_acx_feature_cfg() 218 out: wl1251_acx_feature_cfg() 264 goto out; wl1251_acx_data_path_params() 272 goto out; wl1251_acx_data_path_params() 276 goto out; wl1251_acx_data_path_params() 279 out: wl1251_acx_data_path_params() 300 goto out; wl1251_acx_rx_msdu_life_time() 303 out: wl1251_acx_rx_msdu_life_time() 326 goto out; wl1251_acx_rx_config() 329 out: wl1251_acx_rx_config() 350 goto out; wl1251_acx_pd_threshold() 353 out: wl1251_acx_pd_threshold() 375 goto out; wl1251_acx_slot() 378 out: wl1251_acx_slot() 404 goto out; wl1251_acx_group_address_tbl() 407 out: wl1251_acx_group_address_tbl() 431 goto out; wl1251_acx_service_period_timeout() 434 out: wl1251_acx_service_period_timeout() 455 goto out; wl1251_acx_rts_threshold() 458 out: wl1251_acx_rts_threshold() 481 goto out; wl1251_acx_beacon_filter_opt() 484 out: wl1251_acx_beacon_filter_opt() 510 goto out; wl1251_acx_beacon_filter_table() 513 out: wl1251_acx_beacon_filter_table() 537 goto out; wl1251_acx_conn_monit_params() 540 out: wl1251_acx_conn_monit_params() 561 goto out; wl1251_acx_sg_enable() 564 out: wl1251_acx_sg_enable() 613 goto out; wl1251_acx_sg_cfg() 616 out: wl1251_acx_sg_cfg() 663 goto out; wl1251_acx_bcn_dtim_options() 666 out: wl1251_acx_bcn_dtim_options() 687 goto out; wl1251_acx_aid() 690 out: wl1251_acx_aid() 715 goto out; wl1251_acx_event_mbox_mask() 718 out: wl1251_acx_event_mbox_mask() 764 goto out; wl1251_acx_set_preamble() 767 out: wl1251_acx_set_preamble() 789 goto out; wl1251_acx_cts_protect() 792 out: wl1251_acx_cts_protect() 810 goto out; wl1251_acx_tsf_info() 816 out: wl1251_acx_tsf_info() 864 goto out; wl1251_acx_rate_policies() 867 out: wl1251_acx_rate_policies() 909 goto out; wl1251_acx_mem_cfg() 912 out: wl1251_acx_mem_cfg() 935 goto out; wl1251_acx_wr_tbtt_and_dtim() 938 out: wl1251_acx_wr_tbtt_and_dtim() 961 goto out; wl1251_acx_bet_enable() 964 out: wl1251_acx_bet_enable() 1017 goto out; wl1251_acx_ac_cfg() 1020 out: wl1251_acx_ac_cfg() 1050 goto out; wl1251_acx_tid_cfg() 1053 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.1.27/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.1.27/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.1.27/arch/um/kernel/skas/ |
H A D | clone.c | 32 goto out; stub_clone_handler() 36 goto out; stub_clone_handler() 41 goto out; stub_clone_handler() 46 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() 87 out: init_new_context() 98 goto out; uml_setup_stubs() 102 goto out; uml_setup_stubs() 114 goto out; uml_setup_stubs() 118 out: uml_setup_stubs()
|
/linux-4.1.27/include/net/netfilter/ipv4/ |
H A D | nf_nat_masquerade.h | 9 const struct net_device *out);
|
/linux-4.1.27/include/net/netfilter/ |
H A D | nfnetlink_log.h | 10 const struct net_device *out,
|
/linux-4.1.27/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.1.27/include/xen/interface/io/ |
H A D | console.h | 18 char out[2048]; member in struct:xencons_interface
|
/linux-4.1.27/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.1.27/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 | 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
|
H A D | sha1_neon_glue.c | 55 unsigned int len, u8 *out) sha1_neon_finup() 58 return sha1_finup_arm(desc, data, len, out); sha1_neon_finup() 67 return sha1_base_finish(desc, out); sha1_neon_finup() 70 static int sha1_neon_final(struct shash_desc *desc, u8 *out) sha1_neon_final() argument 72 return sha1_neon_finup(desc, NULL, 0, out); sha1_neon_final() 54 sha1_neon_finup(struct shash_desc *desc, const u8 *data, unsigned int len, u8 *out) sha1_neon_finup() argument
|
/linux-4.1.27/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() 56 goto out; btrfs_defrag_leaves() 65 goto out; btrfs_defrag_leaves() 89 goto out; btrfs_defrag_leaves() 92 goto out; btrfs_defrag_leaves() 99 goto out; btrfs_defrag_leaves() 103 goto out; btrfs_defrag_leaves() 114 goto out; btrfs_defrag_leaves() 120 out: btrfs_defrag_leaves()
|
H A D | send.c | 403 goto out; fs_path_prepare_for_add() 418 out: fs_path_prepare_for_add() 429 goto out; fs_path_add() 432 out: fs_path_add() 443 goto out; fs_path_add_path() 446 out: fs_path_add_path() 459 goto out; fs_path_add_from_extent_buffer() 463 out: fs_path_add_from_extent_buffer() 526 goto out; write_buf() 529 goto out; write_buf() 536 out: write_buf() 702 goto out; send_rename() 710 out: send_rename() 726 goto out; send_link() 734 out: send_link() 749 goto out; send_unlink() 756 out: send_unlink() 771 goto out; send_rmdir() 778 out: send_rmdir() 919 goto out; iterate_inode_ref() 926 goto out; iterate_inode_ref() 933 goto out; iterate_inode_ref() 942 goto out; iterate_inode_ref() 948 goto out; iterate_inode_ref() 952 out: iterate_inode_ref() 1000 goto out; iterate_dir_item() 1021 goto out; iterate_dir_item() 1025 goto out; iterate_dir_item() 1033 goto out; iterate_dir_item() 1054 goto out; iterate_dir_item() 1069 goto out; iterate_dir_item() 1072 goto out; iterate_dir_item() 1078 out: iterate_dir_item() 1120 goto out; get_inode_path() 1123 goto out; get_inode_path() 1130 goto out; get_inode_path() 1136 goto out; get_inode_path() 1139 out: get_inode_path() 1305 goto out; find_extent_clone() 1317 goto out; find_extent_clone() 1325 goto out; find_extent_clone() 1333 goto out; find_extent_clone() 1344 goto out; find_extent_clone() 1347 goto out; find_extent_clone() 1387 goto out; find_extent_clone() 1396 goto out; find_extent_clone() 1436 out: find_extent_clone() 1464 goto out; read_symlink() 1478 goto out; read_symlink() 1493 out: read_symlink() 1528 goto out; gen_unique_name() 1548 goto out; gen_unique_name() 1561 out: gen_unique_name() 1585 goto out; get_cur_inode_state() 1594 goto out; get_cur_inode_state() 1636 out: get_cur_inode_state() 1646 goto out; is_inode_existent() 1655 out: is_inode_existent() 1680 goto out; lookup_dir_item_inode() 1684 goto out; lookup_dir_item_inode() 1689 goto out; lookup_dir_item_inode() 1694 out: lookup_dir_item_inode() 1723 goto out; get_first_ref() 1731 goto out; get_first_ref() 1753 goto out; get_first_ref() 1760 goto out; get_first_ref() 1765 out: get_first_ref() 1784 goto out; is_first_ref() 1788 goto out; is_first_ref() 1793 out: is_first_ref() 1818 goto out; will_overwrite_ref() 1822 goto out; will_overwrite_ref() 1833 goto out; will_overwrite_ref() 1836 goto out; will_overwrite_ref() 1839 goto out; will_overwrite_ref() 1845 goto out; will_overwrite_ref() 1848 goto out; will_overwrite_ref() 1860 goto out; will_overwrite_ref() 1868 out: will_overwrite_ref() 1874 * used by __get_cur_name_and_parent to find out if the ref was orphanized and 1890 goto out; did_overwrite_ref() 1894 goto out; did_overwrite_ref() 1900 goto out; did_overwrite_ref() 1904 goto out; did_overwrite_ref() 1910 goto out; did_overwrite_ref() 1914 goto out; did_overwrite_ref() 1923 out: did_overwrite_ref() 1940 goto out; did_overwrite_first_ref() 1948 goto out; did_overwrite_first_ref() 1953 out: did_overwrite_first_ref() 2112 goto out; __get_cur_name_and_parent() 2114 goto out; __get_cur_name_and_parent() 2125 goto out; __get_cur_name_and_parent() 2130 goto out; __get_cur_name_and_parent() 2146 goto out; __get_cur_name_and_parent() 2155 goto out; __get_cur_name_and_parent() 2160 goto out; __get_cur_name_and_parent() 2171 goto out; __get_cur_name_and_parent() 2192 out: __get_cur_name_and_parent() 2233 goto out; get_cur_path() 2245 goto out; get_cur_path() 2262 goto out; get_cur_path() 2266 goto out; get_cur_path() 2272 out: get_cur_path() 2311 goto out; send_subvol_begin() 2314 goto out; send_subvol_begin() 2322 goto out; send_subvol_begin() 2332 goto out; send_subvol_begin() 2336 goto out; send_subvol_begin() 2354 out: send_subvol_begin() 2373 goto out; send_truncate() 2377 goto out; send_truncate() 2384 out: send_truncate() 2402 goto out; send_chmod() 2406 goto out; send_chmod() 2413 out: send_chmod() 2431 goto out; send_chown() 2435 goto out; send_chown() 2443 out: send_chown() 2467 goto out; send_utimes() 2475 goto out; send_utimes() 2483 goto out; send_utimes() 2487 goto out; send_utimes() 2497 out: send_utimes() 2527 goto out; send_create_inode() 2550 goto out; send_create_inode() 2555 goto out; send_create_inode() 2559 goto out; send_create_inode() 2568 goto out; send_create_inode() 2578 goto out; send_create_inode() 2582 out: send_create_inode() 2590 * This function does the check if we already created the dir out of order. 2606 goto out; did_create_dir() 2614 goto out; did_create_dir() 2622 goto out; did_create_dir() 2634 goto out; did_create_dir() 2643 goto out; did_create_dir() 2649 out: did_create_dir() 2657 * 2. Or a directory which was not created already due to out of order 2667 goto out; send_create_inode_if_needed() 2670 goto out; send_create_inode_if_needed() 2676 goto out; send_create_inode_if_needed() 2678 out: send_create_inode_if_needed() 2775 goto out; orphanize_inode() 2779 out: orphanize_inode() 2880 goto out; can_rmdir() 2888 goto out; can_rmdir() 2910 goto out; can_rmdir() 2915 goto out; can_rmdir() 2920 goto out; can_rmdir() 2928 out: can_rmdir() 3039 goto out; list_for_each_entry() 3044 goto out; list_for_each_entry() 3049 goto out; 3058 out: 3100 goto out; apply_dir_move() 3115 goto out; apply_dir_move() 3119 goto out; apply_dir_move() 3123 goto out; apply_dir_move() 3131 goto out; apply_dir_move() 3135 goto out; apply_dir_move() 3147 goto out; apply_dir_move() 3154 goto out; apply_dir_move() 3158 goto out; apply_dir_move() 3161 goto out; apply_dir_move() 3168 goto out; apply_dir_move() 3179 goto out; apply_dir_move() 3182 out: apply_dir_move() 3234 goto out; apply_children_dir_moves() 3241 out: apply_children_dir_moves() 3310 goto out; wait_for_dest_dir_move() 3313 goto out; wait_for_dest_dir_move() 3320 goto out; wait_for_dest_dir_move() 3333 goto out; wait_for_dest_dir_move() 3339 goto out; wait_for_dest_dir_move() 3345 goto out; wait_for_dest_dir_move() 3351 goto out; wait_for_dest_dir_move() 3365 out: wait_for_dest_dir_move() 3384 goto out; wait_for_parent_move() 3405 goto out; wait_for_parent_move() 3409 goto out; wait_for_parent_move() 3426 out: wait_for_parent_move() 3474 goto out; process_recorded_refs() 3492 goto out; process_recorded_refs() 3500 goto out; process_recorded_refs() 3506 goto out; process_recorded_refs() 3514 * parent directory out of order. But we need to check if this process_recorded_refs() 3519 goto out; process_recorded_refs() 3542 goto out; process_recorded_refs() 3546 goto out; process_recorded_refs() 3560 goto out; process_recorded_refs() 3566 goto out; process_recorded_refs() 3573 goto out; process_recorded_refs() 3592 goto out; process_recorded_refs() 3599 goto out; process_recorded_refs() 3614 goto out; process_recorded_refs() 3618 goto out; process_recorded_refs() 3628 goto out; process_recorded_refs() 3639 goto out; process_recorded_refs() 3644 goto out; process_recorded_refs() 3649 goto out; process_recorded_refs() 3662 goto out; process_recorded_refs() 3666 goto out; process_recorded_refs() 3671 goto out; process_recorded_refs() 3678 goto out; process_recorded_refs() 3689 goto out; process_recorded_refs() 3701 goto out; process_recorded_refs() 3705 goto out; process_recorded_refs() 3709 goto out; process_recorded_refs() 3722 goto out; process_recorded_refs() 3743 goto out; process_recorded_refs() 3750 goto out; process_recorded_refs() 3756 goto out; process_recorded_refs() 3761 goto out; process_recorded_refs() 3764 goto out; process_recorded_refs() 3772 out: process_recorded_refs() 3794 goto out; record_ref() 3798 goto out; record_ref() 3801 goto out; record_ref() 3805 out: record_ref() 3837 goto out; record_new_ref() 3840 out: record_new_ref() 3851 goto out; record_deleted_ref() 3854 out: record_deleted_ref() 3969 goto out; record_changed_ref() 3973 goto out; record_changed_ref() 3976 out: record_changed_ref() 4011 goto out; process_all_refs() 4019 goto out; process_all_refs() 4027 goto out; process_all_refs() 4042 goto out; process_all_refs() 4052 out: process_all_refs() 4066 goto out; send_set_xattr() 4075 out: send_set_xattr() 4087 goto out; send_remove_xattr() 4095 out: send_remove_xattr() 4131 goto out; __process_new_xattr() 4135 out: __process_new_xattr() 4155 goto out; __process_deleted_xattr() 4159 out: __process_deleted_xattr() 4298 goto out; process_changed_xattr() 4302 out: process_changed_xattr() 4327 goto out; process_all_new_xattrs() 4335 goto out; process_all_new_xattrs() 4347 goto out; process_all_new_xattrs() 4353 goto out; process_all_new_xattrs() 4358 out: process_all_new_xattrs() 4391 goto out; fill_read_buf() 4431 out: fill_read_buf() 4456 goto out; send_write() 4461 goto out; send_write() 4465 goto out; send_write() 4474 out: send_write() 4503 goto out; send_clone() 4507 goto out; send_clone() 4517 goto out; send_clone() 4523 goto out; send_clone() 4536 out: send_clone() 4556 goto out; send_update_extent() 4560 goto out; send_update_extent() 4569 out: send_update_extent() 4641 goto out; send_write_or_clone() 4655 goto out; send_write_or_clone() 4662 out: send_write_or_clone() 4700 goto out; is_extent_unchanged() 4733 goto out; is_extent_unchanged() 4736 goto out; is_extent_unchanged() 4749 goto out; is_extent_unchanged() 4761 goto out; is_extent_unchanged() 4776 goto out; is_extent_unchanged() 4795 goto out; is_extent_unchanged() 4803 goto out; is_extent_unchanged() 4816 goto out; is_extent_unchanged() 4831 out: is_extent_unchanged() 4857 goto out; get_last_extent() 4861 goto out; get_last_extent() 4876 out: get_last_extent() 4944 goto out; process_extent() 4966 goto out; process_extent() 4972 goto out; process_extent() 4980 goto out; process_extent() 4984 goto out; process_extent() 4987 out: process_extent() 5011 goto out; process_all_extents() 5020 goto out; process_all_extents() 5033 goto out; process_all_extents() 5038 goto out; process_all_extents() 5043 out: process_all_extents() 5055 goto out; process_recorded_refs_if_needed() 5058 goto out; process_recorded_refs_if_needed() 5060 goto out; process_recorded_refs_if_needed() 5064 goto out; process_recorded_refs_if_needed() 5067 out: process_recorded_refs_if_needed() 5088 goto out; finish_inode_if_needed() 5106 goto out; finish_inode_if_needed() 5108 goto out; finish_inode_if_needed() 5113 goto out; finish_inode_if_needed() 5124 goto out; finish_inode_if_needed() 5139 goto out; finish_inode_if_needed() 5145 goto out; finish_inode_if_needed() 5151 goto out; finish_inode_if_needed() 5158 goto out; finish_inode_if_needed() 5164 goto out; finish_inode_if_needed() 5174 goto out; finish_inode_if_needed() 5185 goto out; finish_inode_if_needed() 5188 out: finish_inode_if_needed() 5287 goto out; changed_inode() 5303 goto out; changed_inode() 5307 goto out; changed_inode() 5320 goto out; changed_inode() 5323 goto out; changed_inode() 5336 out: changed_inode() 5450 goto out; compare_refs() 5469 out: compare_refs() 5511 goto out; changed_cb() 5516 goto out; changed_cb() 5528 out: changed_cb() 5552 goto out; full_send_tree() 5564 goto out; full_send_tree() 5572 goto out; full_send_tree() 5582 out: full_send_tree() 5594 goto out; send_subvol() 5599 goto out; send_subvol() 5605 goto out; send_subvol() 5608 goto out; send_subvol() 5612 goto out; send_subvol() 5615 out: send_subvol() 5721 goto out; btrfs_ioctl_send() 5728 goto out; btrfs_ioctl_send() 5735 goto out; btrfs_ioctl_send() 5740 goto out; btrfs_ioctl_send() 5746 goto out; btrfs_ioctl_send() 5759 goto out; btrfs_ioctl_send() 5769 goto out; btrfs_ioctl_send() 5778 goto out; btrfs_ioctl_send() 5784 goto out; btrfs_ioctl_send() 5795 goto out; btrfs_ioctl_send() 5803 goto out; btrfs_ioctl_send() 5811 goto out; btrfs_ioctl_send() 5825 goto out; btrfs_ioctl_send() 5833 goto out; btrfs_ioctl_send() 5857 goto out; btrfs_ioctl_send() 5867 goto out; btrfs_ioctl_send() 5889 goto out; btrfs_ioctl_send() 5895 goto out; btrfs_ioctl_send() 5900 goto out; btrfs_ioctl_send() 5903 goto out; btrfs_ioctl_send() 5906 out: btrfs_ioctl_send()
|
/linux-4.1.27/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 */ 237 __u64 flags; /* in/out */ 238 __u64 state; /* out */ 240 struct btrfs_balance_args data; /* in/out */ 241 struct btrfs_balance_args meta; /* in/out */ 242 struct btrfs_balance_args sys; /* in/out */ 244 struct btrfs_balance_progress stat; /* out */ 312 struct btrfs_ioctl_search_key key; /* in/out - search parameters */ 314 * out - on EOVERFLOW: needed size 316 __u64 buf[0]; /* out - found items */ 334 __u64 bytes_deduped; /* out - total # of bytes we were able 341 __s32 status; /* out - see above description */ 367 __u32 bytes_left; /* out -- bytes not needed to deliver output */ 368 __u32 bytes_missing; /* out -- additional bytes needed for result */ 369 __u32 elem_cnt; /* out */ 370 __u32 elem_missed; /* out */ 371 __u64 val[0]; /* out */ 378 /* struct btrfs_data_container *fspath; out */ 379 __u64 fspath; /* out */ 386 /* struct btrfs_data_container *inodes; out */ 414 __u64 nr_items; /* in/out */ 415 __u64 flags; /* in/out */ 417 /* out values: */ 455 __u64 rtransid; /* out */ 457 struct btrfs_ioctl_timespec rtime; /* out */
|
/linux-4.1.27/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() 61 out: alloc_pdev() 120 goto out; xen_pcibk_do_attach() 131 goto out; xen_pcibk_do_attach() 137 out: xen_pcibk_do_attach() 152 goto out; xen_pcibk_attach() 157 goto out; xen_pcibk_attach() 169 goto out; xen_pcibk_attach() 178 goto out; xen_pcibk_attach() 183 goto out; xen_pcibk_attach() 193 out: xen_pcibk_attach() 212 goto out; xen_pcibk_publish_pci_dev() 220 out: xen_pcibk_publish_pci_dev() 242 goto out; xen_pcibk_export_device() 248 goto out; xen_pcibk_export_device() 267 out: xen_pcibk_export_device() 286 goto out; xen_pcibk_remove_device() 296 out: xen_pcibk_remove_device() 314 goto out; xen_pcibk_publish_pci_root() 321 goto out; xen_pcibk_publish_pci_root() 327 goto out; xen_pcibk_publish_pci_root() 330 goto out; xen_pcibk_publish_pci_root() 335 goto out; xen_pcibk_publish_pci_root() 342 goto out; xen_pcibk_publish_pci_root() 351 goto out; xen_pcibk_publish_pci_root() 356 out: xen_pcibk_publish_pci_root() 377 goto out; xen_pcibk_reconfigure() 386 goto out; xen_pcibk_reconfigure() 396 goto out; xen_pcibk_reconfigure() 413 goto out; xen_pcibk_reconfigure() 422 goto out; xen_pcibk_reconfigure() 429 goto out; xen_pcibk_reconfigure() 435 goto out; xen_pcibk_reconfigure() 444 goto out; xen_pcibk_reconfigure() 454 goto out; xen_pcibk_reconfigure() 467 goto out; xen_pcibk_reconfigure() 476 goto out; xen_pcibk_reconfigure() 483 goto out; xen_pcibk_reconfigure() 489 goto out; xen_pcibk_reconfigure() 507 goto out; xen_pcibk_reconfigure() 510 out: xen_pcibk_reconfigure() 574 goto out; xen_pcibk_setup_backend() 585 goto out; xen_pcibk_setup_backend() 595 goto out; xen_pcibk_setup_backend() 603 goto out; xen_pcibk_setup_backend() 610 goto out; xen_pcibk_setup_backend() 615 goto out; xen_pcibk_setup_backend() 624 goto out; xen_pcibk_setup_backend() 631 goto out; xen_pcibk_setup_backend() 640 goto out; xen_pcibk_setup_backend() 648 out: xen_pcibk_setup_backend() 682 goto out; xen_pcibk_xenbus_probe() 688 goto out; xen_pcibk_xenbus_probe() 694 goto out; xen_pcibk_xenbus_probe() 703 out: xen_pcibk_xenbus_probe()
|
/linux-4.1.27/drivers/ide/ |
H A D | ide-disk_ioctl.c | 26 goto out; ide_disk_ioctl() 29 out: ide_disk_ioctl()
|
/linux-4.1.27/arch/um/kernel/ |
H A D | syscall.c | 23 goto out; old_mmap() 26 out: old_mmap()
|
H A D | trap.c | 50 goto out; handle_page_fault() 54 goto out; handle_page_fault() 56 goto out; handle_page_fault() 58 goto out; handle_page_fault() 64 goto out; handle_page_fault() 69 goto out; handle_page_fault() 84 goto out; handle_page_fault() 87 goto out; handle_page_fault() 116 * concurrent read fault, triggering this harmlessly. So comment it out. handle_page_fault() 122 out: handle_page_fault() 129 * We ran out of memory, call the OOM killer, and return the userspace handle_page_fault() 216 goto out; segv() 238 goto out; segv() 246 goto out; segv() 271 out: segv() 286 "mount likely just ran out of space\n"); relay_signal()
|
/linux-4.1.27/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.1.27/net/dccp/ccids/lib/ |
H A D | tfrc.c | 21 goto out; tfrc_lib_init() 36 out: tfrc_lib_init()
|
/linux-4.1.27/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.1.27/sound/arm/ |
H A D | pxa2xx-pcm.c | 43 goto out; pxa2xx_pcm_open() 57 goto out; pxa2xx_pcm_open() 62 out: pxa2xx_pcm_open() 99 goto out; pxa2xx_pcm_new() 106 goto out; pxa2xx_pcm_new() 113 goto out; pxa2xx_pcm_new() 120 goto out; pxa2xx_pcm_new() 127 out: pxa2xx_pcm_new()
|
/linux-4.1.27/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.1.27/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.1.27/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.1.27/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.1.27/scripts/ |
H A D | asn1_compiler.c | 367 /* First of all, break out a line */ tokenise() 537 static void render(FILE *out, FILE *hdr); 546 FILE *out, *hdr; main() local 612 out = fopen(outputname, "w"); main() 613 if (!out) { main() 619 if (!out) { main() 624 render(out, hdr); main() 626 if (fclose(out) < 0) { main() 1194 static void render_element(FILE *out, struct element *e, struct element *tag); 1195 static void render_out_of_line_list(FILE *out); 1202 static void render_opcode(FILE *out, const char *fmt, ...) render_opcode() argument 1206 if (out) { render_opcode() 1207 fprintf(out, "\t[%4d] =%*s", nr_entries, render_depth, ""); render_opcode() 1209 vfprintf(out, fmt, va); render_opcode() 1216 static void render_more(FILE *out, const char *fmt, ...) render_more() argument 1220 if (out) { render_more() 1222 vfprintf(out, fmt, va); render_more() 1230 static void render(FILE *out, FILE *hdr) render() argument 1250 fprintf(out, "/*\n"); render() 1251 fprintf(out, " * Automatically generated by asn1_compiler. Do not edit\n"); render() 1252 fprintf(out, " *\n"); render() 1253 fprintf(out, " * ASN.1 parser for %s\n", grammar_name); render() 1254 fprintf(out, " */\n"); render() 1255 fprintf(out, "#include <linux/asn1_ber_bytecode.h>\n"); render() 1256 fprintf(out, "#include \"%s-asn1.h\"\n", grammar_name); render() 1257 fprintf(out, "\n"); render() 1258 if (ferror(out)) { render() 1275 fprintf(out, "enum %s_actions {\n", grammar_name); render() 1277 fprintf(out, "\tACT_%s = %u,\n", render() 1279 fprintf(out, "\tNR__%s_actions = %u\n", grammar_name, nr_actions); render() 1280 fprintf(out, "};\n"); render() 1282 fprintf(out, "\n"); render() 1283 fprintf(out, "static const asn1_action_t %s_action_table[NR__%s_actions] = {\n", render() 1286 fprintf(out, "\t[%4u] = %s,\n", action->index, action->name); render() 1287 fprintf(out, "};\n"); render() 1289 if (ferror(out)) { render() 1307 fprintf(out, "\n"); render() 1308 fprintf(out, "static const unsigned char %s_machine[] = {\n", render() 1313 render_element(out, root->element, NULL); render() 1314 render_opcode(out, "ASN1_OP_COMPLETE,\n"); render() 1315 render_out_of_line_list(out); render() 1317 fprintf(out, "};\n"); render() 1319 fprintf(out, "\n"); render() 1320 fprintf(out, "const struct asn1_decoder %s_decoder = {\n", grammar_name); render() 1321 fprintf(out, "\t.machine = %s_machine,\n", grammar_name); render() 1322 fprintf(out, "\t.machlen = sizeof(%s_machine),\n", grammar_name); render() 1323 fprintf(out, "\t.actions = %s_action_table,\n", grammar_name); render() 1324 fprintf(out, "};\n"); render() 1328 * Render the out-of-line elements 1330 static void render_out_of_line_list(FILE *out) render_out_of_line_list() argument 1341 render_more(out, "\n"); render_out_of_line_list() 1345 render_element(out, ce, NULL); render_out_of_line_list() 1351 render_opcode(out, "ASN1_OP_END_SEQ%s,\n", act); render_out_of_line_list() 1354 render_opcode(out, "ASN1_OP_END_SEQ_OF%s,\n", act); render_out_of_line_list() 1355 render_opcode(out, "_jump_target(%u),\n", entry); render_out_of_line_list() 1358 render_opcode(out, "ASN1_OP_END_SET%s,\n", act); render_out_of_line_list() 1361 render_opcode(out, "ASN1_OP_END_SET_OF%s,\n", act); render_out_of_line_list() 1362 render_opcode(out, "_jump_target(%u),\n", entry); render_out_of_line_list() 1368 render_opcode(out, "_action(ACT_%s),\n", render_out_of_line_list() 1370 render_opcode(out, "ASN1_OP_RETURN,\n"); render_out_of_line_list() 1377 static void render_element(FILE *out, struct element *e, struct element *tag) render_element() argument 1391 if (e->type_def && out) { render_element() 1392 render_more(out, "\t// %*.*s\n", render_element() 1403 render_opcode(out, "ASN1_OP_%sMATCH_ANY%s,", cond, act); render_element() 1405 render_more(out, "\t\t// %*.*s", render_element() 1408 render_more(out, "\n"); render_element() 1412 render_element(out, e->children, e); render_element() 1419 render_opcode(out, "ASN1_OP_%sMATCH%s%s,", render_element() 1432 render_opcode(out, "ASN1_OP_%sMATCH%s%s,", render_element() 1439 render_more(out, "\t\t// %*.*s", render_element() 1442 render_more(out, "\n"); render_element() 1451 render_opcode(out, "_tag(%s, %s, %s),\n", render_element() 1456 render_opcode(out, "_tagn(%s, %s, %2u),\n", render_element() 1466 render_element(out, e->type->type->element, tag); render_element() 1468 render_opcode(out, "ASN1_OP_ACT,\n"); render_element() 1473 /* Render out-of-line for multiple use or render_element() 1475 render_opcode(out, "_jump_target(%u),", e->entry_index); render_element() 1477 render_more(out, "\t\t// --> %*.*s", render_element() 1481 render_more(out, "\n"); render_element() 1492 render_element(out, ec, NULL); render_element() 1494 render_opcode(out, "ASN1_OP_END_SEQ%s,\n", act); render_element() 1501 /* Render out-of-line for multiple use or render_element() 1503 render_opcode(out, "_jump_target(%u),", e->entry_index); render_element() 1505 render_more(out, "\t\t// --> %*.*s", render_element() 1509 render_more(out, "\n"); render_element() 1520 render_element(out, e->children, NULL); render_element() 1523 render_opcode(out, "ASN1_OP_END_SEQ_OF%s,\n", act); render_element() 1525 render_opcode(out, "ASN1_OP_END_SET_OF%s,\n", act); render_element() 1526 render_opcode(out, "_jump_target(%u),\n", entry); render_element() 1534 * elements are left out whilst not preventing optional render_element() 1535 * elements from being left out. render_element() 1542 render_element(out, ec, NULL); render_element() 1544 render_opcode(out, "ASN1_OP_COND_FAIL,\n"); render_element() 1546 render_opcode(out, "ASN1_OP_ACT,\n"); render_element() 1554 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.1.27/drivers/thermal/ |
H A D | intel_soc_dts_thermal.c | 51 /* Only 2 out of 4 is allowed for OSPM */ 112 u32 out; sys_get_trip_temp() local 125 SOC_DTS_OFFSET_PTPS, &out); sys_get_trip_temp() 130 out = (out >> (trip * 8)) & SOC_DTS_TJMAX_ENCODING; sys_get_trip_temp() 132 if (!out) sys_get_trip_temp() 135 *temp = aux_entry->tj_max - out * 1000; sys_get_trip_temp() 145 u32 out; update_trip_temp() local 161 out = (store_ptps & ~(0xFF << (thres_index * 8))); update_trip_temp() 162 out |= (temp_out & 0xFF) << (thres_index * 8); update_trip_temp() 164 SOC_DTS_OFFSET_PTPS, out); update_trip_temp() 167 pr_debug("update_trip_temp PTPS = %x\n", out); update_trip_temp() 169 SOC_DTS_OFFSET_PTMC, &out); update_trip_temp() 173 store_ptmc = out; update_trip_temp() 184 out |= (SOC_DTS_CPU_MODULE0_ENABLE_BIT | update_trip_temp() 188 out |= SOC_DTS_AUX1_ENABLE_BIT; update_trip_temp() 190 out |= SOC_DTS_AUX0_ENABLE_BIT; update_trip_temp() 194 out &= ~SOC_DTS_AUX1_ENABLE_BIT; update_trip_temp() 196 out &= ~SOC_DTS_AUX0_ENABLE_BIT; update_trip_temp() 200 SOC_DTS_OFFSET_PTMC, out); update_trip_temp() 257 u32 out; sys_get_curr_temp() local 263 SOC_DTS_OFFSET_TEMP, &out); sys_get_curr_temp() 267 out = (out & aux_entry->temp_mask) >> aux_entry->temp_shift; sys_get_curr_temp() 268 out -= SOC_DTS_TJMAX_ENCODING; sys_get_curr_temp() 269 *temp = aux_entry->tj_max - out * 1000; sys_get_curr_temp() 293 u32 out; soc_dts_enable() local 297 SOC_DTS_OFFSET_ENABLE, &out); soc_dts_enable() 301 if (!(out & BIT(id))) { soc_dts_enable() 302 out |= BIT(id); soc_dts_enable() 304 SOC_DTS_OFFSET_ENABLE, out); soc_dts_enable()
|
/linux-4.1.27/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() 737 goto out; sel_write_access() 742 goto out; sel_write_access() 751 out: sel_write_access() 770 goto out; sel_write_create() 775 goto out; sel_write_create() 780 goto out; sel_write_create() 785 goto out; sel_write_create() 790 goto out; sel_write_create() 810 goto out; sel_write_create() 813 goto out; sel_write_create() 825 goto out; sel_write_create() 830 goto out; sel_write_create() 835 goto out; sel_write_create() 839 goto out; sel_write_create() 845 goto out; sel_write_create() 850 out: sel_write_create() 869 goto out; sel_write_relabel() 874 goto out; sel_write_relabel() 879 goto out; sel_write_relabel() 883 goto out; sel_write_relabel() 888 goto out; sel_write_relabel() 893 goto out; sel_write_relabel() 897 goto out; sel_write_relabel() 901 goto out; sel_write_relabel() 905 goto out; sel_write_relabel() 909 out: sel_write_relabel() 927 goto out; sel_write_user() 932 goto out; sel_write_user() 937 goto out; sel_write_user() 941 goto out; sel_write_user() 945 goto out; sel_write_user() 949 goto out; sel_write_user() 957 goto out; sel_write_user() 962 goto out; sel_write_user() 969 out: sel_write_user() 987 goto out; sel_write_member() 992 goto out; sel_write_member() 997 goto out; sel_write_member() 1001 goto out; sel_write_member() 1006 goto out; sel_write_member() 1011 goto out; sel_write_member() 1015 goto out; sel_write_member() 1019 goto out; sel_write_member() 1025 goto out; sel_write_member() 1030 out: sel_write_member() 1062 goto out; sel_read_bool() 1067 goto out; sel_read_bool() 1072 goto out; sel_read_bool() 1077 out: sel_read_bool() 1096 goto out; sel_write_bool() 1100 goto out; sel_write_bool() 1104 goto out; sel_write_bool() 1109 goto out; sel_write_bool() 1114 goto out; sel_write_bool() 1118 goto out; sel_write_bool() 1122 goto out; sel_write_bool() 1130 out: sel_write_bool() 1154 goto out; sel_commit_bools_write() 1158 goto out; sel_commit_bools_write() 1163 goto out; sel_commit_bools_write() 1168 goto out; sel_commit_bools_write() 1172 goto out; sel_commit_bools_write() 1176 goto out; sel_commit_bools_write() 1185 out: sel_commit_bools_write() 1231 goto out; sel_make_bools() 1235 goto out; sel_make_bools() 1241 goto out; sel_make_bools() 1246 goto out; sel_make_bools() 1251 goto out; sel_make_bools() 1256 goto out; sel_make_bools() 1270 out: sel_make_bools() 1309 goto out; sel_write_avc_cache_threshold() 1313 goto out; sel_write_avc_cache_threshold() 1318 goto out; sel_write_avc_cache_threshold() 1323 goto out; sel_write_avc_cache_threshold() 1327 goto out; sel_write_avc_cache_threshold() 1331 goto out; sel_write_avc_cache_threshold() 1336 out: sel_write_avc_cache_threshold() 1601 goto out; sel_make_perm_files() 1606 goto out; sel_make_perm_files() 1614 out: sel_make_perm_files() 1671 goto out; sel_make_classes() 1678 goto out; sel_make_classes() 1681 out: sel_make_classes()
|
/linux-4.1.27/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.1.27/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.1.27/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.1.27/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.1.27/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.1.27/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.1.27/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.1.27/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.1.27/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.1.27/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
|
/linux-4.1.27/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.1.27/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.1.27/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.1.27/fs/ext4/ |
H A D | crypto_key.c | 53 goto out; ext4_derive_key_aes() 59 goto out; ext4_derive_key_aes() 67 goto out; ext4_derive_key_aes() 79 out: ext4_derive_key_aes() 109 goto out; ext4_generate_encryption_key() 126 goto out; ext4_generate_encryption_key() 139 goto out; ext4_generate_encryption_key() 145 goto out; ext4_generate_encryption_key() 152 out: ext4_generate_encryption_key()
|
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() 453 out: ext4_destroy_inline_data_nolock() 474 goto out; ext4_read_inline_page() 479 goto out; ext4_read_inline_page() 490 out: ext4_read_inline_page() 552 goto out; ext4_convert_inline_data_to_extent() 562 goto out; ext4_convert_inline_data_to_extent() 570 goto out; ext4_convert_inline_data_to_extent() 578 goto out; ext4_convert_inline_data_to_extent() 583 goto out; ext4_convert_inline_data_to_extent() 621 out: ext4_convert_inline_data_to_extent() 666 goto out; ext4_try_to_write_inline_data() 671 goto out; ext4_try_to_write_inline_data() 685 goto out; ext4_try_to_write_inline_data() 707 out: ext4_try_to_write_inline_data() 727 goto out; ext4_write_inline_data_end() 735 goto out; ext4_write_inline_data_end() 750 out: ext4_write_inline_data_end() 802 goto out; ext4_da_convert_inline_data_to_extent() 810 goto out; ext4_da_convert_inline_data_to_extent() 828 out: ext4_da_convert_inline_data_to_extent() 866 goto out; ext4_da_write_inline_data_begin() 893 goto out; ext4_da_write_inline_data_begin() 925 out: ext4_da_write_inline_data_begin() 1032 * happen is that the times are slightly out of date ext4_add_dirent_to_inline() 1156 goto out; ext4_finish_convert_inline_dir() 1158 out: ext4_finish_convert_inline_dir() 1176 goto out; ext4_convert_inline_data_nolock() 1181 goto out; ext4_convert_inline_data_nolock() 1192 goto out; ext4_convert_inline_data_nolock() 1197 goto out; ext4_convert_inline_data_nolock() 1240 out: ext4_convert_inline_data_nolock() 1265 goto out; ext4_try_add_inline_entry() 1274 goto out; ext4_try_add_inline_entry() 1283 goto out; ext4_try_add_inline_entry() 1296 goto out; ext4_try_add_inline_entry() 1306 out: ext4_try_add_inline_entry() 1343 goto out; htree_inlinedir_to_tree() 1351 goto out; htree_inlinedir_to_tree() 1357 goto out; htree_inlinedir_to_tree() 1394 goto out; htree_inlinedir_to_tree() 1411 goto out; htree_inlinedir_to_tree() 1416 out: htree_inlinedir_to_tree() 1452 goto out; ext4_read_inline_dir() 1460 goto out; ext4_read_inline_dir() 1466 goto out; ext4_read_inline_dir() 1529 goto out; ext4_read_inline_dir() 1536 goto out; ext4_read_inline_dir() 1545 goto out; ext4_read_inline_dir() 1550 goto out; ext4_read_inline_dir() 1554 out: ext4_read_inline_dir() 1593 goto out; ext4_try_create_inline_dir() 1608 out: ext4_try_create_inline_dir() 1629 goto out; ext4_find_inline_entry() 1640 goto out; ext4_find_inline_entry() 1643 goto out; ext4_find_inline_entry() 1653 out: ext4_find_inline_entry() 1678 goto out; ext4_delete_inline_entry() 1696 goto out; ext4_delete_inline_entry() 1701 goto out; ext4_delete_inline_entry() 1706 goto out; ext4_delete_inline_entry() 1709 out: ext4_delete_inline_entry() 1765 goto out; empty_inline_dir() 1774 goto out; empty_inline_dir() 1792 goto out; empty_inline_dir() 1796 goto out; empty_inline_dir() 1801 out: empty_inline_dir() 1832 goto out; ext4_inline_data_fiemap() 1837 goto out; ext4_inline_data_fiemap() 1844 goto out; ext4_inline_data_fiemap() 1854 out: ext4_inline_data_fiemap() 1886 goto out; ext4_try_to_evict_inline_data() 1890 out: ext4_try_to_evict_inline_data() 1923 goto out; ext4_inline_data_truncate() 1926 goto out; ext4_inline_data_truncate() 1971 out: ext4_inline_data_truncate() 2014 goto out; ext4_convert_inline_data() 2019 out: ext4_convert_inline_data()
|
/linux-4.1.27/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.1.27/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.1.27/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.1.27/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.1.27/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.1.27/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.1.27/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.1.27/drivers/acpi/apei/ |
H A D | erst-dbg.c | 112 goto out; erst_dbg_read() 123 goto out; erst_dbg_read() 131 goto out; erst_dbg_read() 137 goto out; erst_dbg_read() 144 goto out; erst_dbg_read() 153 goto out; erst_dbg_read() 157 goto out; erst_dbg_read() 159 out: erst_dbg_read() 185 goto out; erst_dbg_write() 193 goto out; erst_dbg_write() 198 goto out; erst_dbg_write() 202 out: erst_dbg_write()
|
/linux-4.1.27/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.1.27/drivers/scsi/ufs/ |
H A D | ufshcd-pltfrm.c | 70 goto out; ufshcd_parse_clock_info() 85 goto out; ufshcd_parse_clock_info() 89 goto out; ufshcd_parse_clock_info() 93 goto out; ufshcd_parse_clock_info() 99 goto out; ufshcd_parse_clock_info() 106 goto out; ufshcd_parse_clock_info() 121 goto out; ufshcd_parse_clock_info() 126 goto out; ufshcd_parse_clock_info() 136 out: ufshcd_parse_clock_info() 151 goto out; ufshcd_populate_vreg() 158 goto out; ufshcd_populate_vreg() 170 goto out; ufshcd_populate_vreg() 197 goto out; ufshcd_populate_vreg() 202 out: ufshcd_populate_vreg() 225 goto out; ufshcd_parse_regulator_info() 229 goto out; ufshcd_parse_regulator_info() 233 goto out; ufshcd_parse_regulator_info() 236 out: ufshcd_parse_regulator_info() 308 goto out; ufshcd_pltfrm_probe() 315 goto out; ufshcd_pltfrm_probe() 321 goto out; ufshcd_pltfrm_probe() 330 goto out; ufshcd_pltfrm_probe() 336 goto out; ufshcd_pltfrm_probe() 355 out: ufshcd_pltfrm_probe()
|
/linux-4.1.27/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.1.27/arch/arm/mach-mvebu/ |
H A D | pm-board.c | 99 goto out; mvebu_armada_xp_gp_pm_init() 105 goto out; mvebu_armada_xp_gp_pm_init() 111 goto out; mvebu_armada_xp_gp_pm_init() 118 goto out; mvebu_armada_xp_gp_pm_init() 126 goto out; mvebu_armada_xp_gp_pm_init() 139 out: mvebu_armada_xp_gp_pm_init()
|
/linux-4.1.27/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() 592 goto out; l2tp_nl_cmd_session_create() 602 goto out; l2tp_nl_cmd_session_create() 628 out: l2tp_nl_cmd_session_create() 641 goto out; l2tp_nl_cmd_session_delete() 652 out: l2tp_nl_cmd_session_delete() 664 goto out; l2tp_nl_cmd_session_modify() 696 out: l2tp_nl_cmd_session_modify() 785 goto out; l2tp_nl_cmd_session_get() 791 goto out; l2tp_nl_cmd_session_get() 804 out: l2tp_nl_cmd_session_get() 820 goto out; l2tp_nl_cmd_session_dump() 839 out: l2tp_nl_cmd_session_dump() 967 goto out; l2tp_nl_register_ops() 972 out: l2tp_nl_register_ops()
|
/linux-4.1.27/drivers/staging/gdm72xx/ |
H A D | usb_boot.c | 168 goto out; usb_boot() 177 goto out; usb_boot() 186 goto out; usb_boot() 193 goto out; usb_boot() 205 goto out; usb_boot() 211 goto out; usb_boot() 217 goto out; usb_boot() 222 goto out; usb_boot() 233 out: usb_boot() 253 goto out; em_wait_ack() 259 goto out; em_wait_ack() 260 out: em_wait_ack() 294 goto out; em_download_image() 300 goto out; em_download_image() 313 goto out; em_download_image() 320 goto out; em_download_image() 325 goto out; em_download_image() 327 out: em_download_image()
|
/linux-4.1.27/drivers/staging/lustre/lustre/libcfs/linux/ |
H A D | linux-crypto-adler.c | 86 u8 *out) __adler32_finup() 88 *(u32 *)out = __adler32(*cksump, data, len); __adler32_finup() 93 unsigned int len, u8 *out) adler32_finup() 95 return __adler32_finup(shash_desc_ctx(desc), data, len, out); adler32_finup() 98 static int adler32_final(struct shash_desc *desc, u8 *out) adler32_final() argument 102 *(u32 *)out = *cksump; adler32_final() 107 unsigned int len, u8 *out) adler32_digest() 110 out); adler32_digest() 85 __adler32_finup(u32 *cksump, const u8 *data, unsigned int len, u8 *out) __adler32_finup() argument 92 adler32_finup(struct shash_desc *desc, const u8 *data, unsigned int len, u8 *out) adler32_finup() argument 106 adler32_digest(struct shash_desc *desc, const u8 *data, unsigned int len, u8 *out) adler32_digest() argument
|
/linux-4.1.27/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.1.27/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.1.27/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.1.27/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.1.27/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.1.27/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.1.27/drivers/staging/lustre/lustre/obdclass/ |
H A D | class_obd.c | 179 goto out; class_resolve_dev_name() 184 goto out; class_resolve_dev_name() 192 goto out; class_resolve_dev_name() 198 out: class_resolve_dev_name() 232 goto out; class_handle_ioctl() 237 goto out; class_handle_ioctl() 247 goto out; class_handle_ioctl() 254 goto out; class_handle_ioctl() 260 goto out; class_handle_ioctl() 269 goto out; class_handle_ioctl() 282 goto out; class_handle_ioctl() 288 goto out; class_handle_ioctl() 301 goto out; class_handle_ioctl() 306 goto out; class_handle_ioctl() 317 goto out; class_handle_ioctl() 325 goto out; class_handle_ioctl() 332 goto out; class_handle_ioctl() 342 goto out; class_handle_ioctl() 347 goto out; class_handle_ioctl() 353 goto out; class_handle_ioctl() 372 goto out; class_handle_ioctl() 380 goto out; class_handle_ioctl() 384 goto out; class_handle_ioctl() 392 goto out; class_handle_ioctl() 398 goto out; class_handle_ioctl() 405 goto out; class_handle_ioctl() 413 goto out; class_handle_ioctl() 419 goto out; class_handle_ioctl() 425 goto out; class_handle_ioctl() 430 goto out; class_handle_ioctl() 434 out: class_handle_ioctl()
|
/linux-4.1.27/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() 656 goto out; llc_ui_accept() 660 goto out; llc_ui_accept() 665 goto out; llc_ui_accept() 692 out: llc_ui_accept() 726 goto out; llc_ui_recvmsg() 851 out: llc_ui_recvmsg() 869 goto out; llc_ui_recvmsg() 925 goto out; llc_ui_sendmsg() 929 goto out; llc_ui_sendmsg() 934 goto out; llc_ui_sendmsg() 939 goto out; llc_ui_sendmsg() 943 goto out; llc_ui_sendmsg() 945 out: llc_ui_sendmsg() 976 goto out; llc_ui_getname() 981 goto out; llc_ui_getname() 989 goto out; llc_ui_getname() 1001 out: llc_ui_getname() 1040 goto out; llc_ui_setsockopt() 1043 goto out; llc_ui_setsockopt() 1048 goto out; llc_ui_setsockopt() 1053 goto out; llc_ui_setsockopt() 1058 goto out; llc_ui_setsockopt() 1063 goto out; llc_ui_setsockopt() 1068 goto out; llc_ui_setsockopt() 1073 goto out; llc_ui_setsockopt() 1078 goto out; llc_ui_setsockopt() 1083 goto out; llc_ui_setsockopt() 1094 goto out; llc_ui_setsockopt() 1097 out: llc_ui_setsockopt() 1121 goto out; llc_ui_getsockopt() 1124 goto out; llc_ui_getsockopt() 1127 goto out; llc_ui_getsockopt() 1150 goto out; llc_ui_getsockopt() 1155 out: llc_ui_getsockopt() 1199 goto out; llc2_init() 1221 out: llc2_init() 1230 goto out; llc2_init()
|
/linux-4.1.27/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.1.27/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.1.27/drivers/platform/x86/ |
H A D | wmi.c | 200 static int wmi_gtoa(const char *in, char *out) wmi_gtoa() argument 205 out += sprintf(out, "%02X", in[i] & 0xFF); wmi_gtoa() 207 out += sprintf(out, "-"); wmi_gtoa() 208 out += sprintf(out, "%02X", in[5] & 0xFF); wmi_gtoa() 209 out += sprintf(out, "%02X", in[4] & 0xFF); wmi_gtoa() 210 out += sprintf(out, "-"); wmi_gtoa() 211 out += sprintf(out, "%02X", in[7] & 0xFF); wmi_gtoa() 212 out += sprintf(out, "%02X", in[6] & 0xFF); wmi_gtoa() 213 out += sprintf(out, "-"); wmi_gtoa() 214 out += sprintf(out, "%02X", in[8] & 0xFF); wmi_gtoa() 215 out += sprintf(out, "%02X", in[9] & 0xFF); wmi_gtoa() 216 out += sprintf(out, "-"); wmi_gtoa() 219 out += sprintf(out, "%02X", in[i] & 0xFF); wmi_gtoa() 221 *out = '\0'; wmi_gtoa() 225 static bool find_guid(const char *guid_string, struct wmi_block **out) find_guid() argument 240 if (out) find_guid() 241 *out = wblock; find_guid() 276 * &out: Empty buffer to return the method results 281 u32 method_id, const struct acpi_buffer *in, struct acpi_buffer *out) wmi_evaluate_method() 324 status = acpi_evaluate_object(handle, method, &input, out); wmi_evaluate_method() 334 * &out: Empty buffer to return the contents of the data block to 339 struct acpi_buffer *out) wmi_query_block() 350 if (!guid_string || !out) wmi_query_block() 391 status = acpi_evaluate_object(handle, method, &input, out); wmi_query_block() 615 * @out: Buffer to hold event data. out->pointer should be freed with kfree() 619 acpi_status wmi_get_event_data(u32 event, struct acpi_buffer *out) wmi_get_event_data() argument 639 &input, out); wmi_get_event_data() 766 struct acpi_buffer out = {ACPI_ALLOCATE_BUFFER, NULL}; parse_wdg() local 774 status = acpi_evaluate_object(handle, "_WDG", NULL, &out); parse_wdg() 778 obj = (union acpi_object *) out.pointer; parse_wdg() 826 kfree(out.pointer); parse_wdg() 280 wmi_evaluate_method(const char *guid_string, u8 instance, u32 method_id, const struct acpi_buffer *in, struct acpi_buffer *out) wmi_evaluate_method() argument 338 wmi_query_block(const char *guid_string, u8 instance, struct acpi_buffer *out) wmi_query_block() argument
|
/linux-4.1.27/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.1.27/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()
|
H A D | rtc-max77802.c | 149 goto out; max77802_rtc_read_time() 156 goto out; max77802_rtc_read_time() 163 out: max77802_rtc_read_time() 185 goto out; max77802_rtc_set_time() 190 out: max77802_rtc_set_time() 206 goto out; max77802_rtc_read_alarm() 213 goto out; max77802_rtc_read_alarm() 224 goto out; max77802_rtc_read_alarm() 234 goto out; max77802_rtc_read_alarm() 240 out: max77802_rtc_read_alarm() 254 goto out; max77802_rtc_stop_alarm() 261 goto out; max77802_rtc_stop_alarm() 265 out: max77802_rtc_stop_alarm() 279 goto out; max77802_rtc_start_alarm() 288 goto out; max77802_rtc_start_alarm() 292 out: max77802_rtc_start_alarm() 310 goto out; max77802_rtc_set_alarm() 318 goto out; max77802_rtc_set_alarm() 323 goto out; max77802_rtc_set_alarm() 327 out: max77802_rtc_set_alarm()
|
/linux-4.1.27/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.1.27/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.1.27/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.1.27/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.1.27/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.1.27/drivers/leds/ |
H A D | leds-net48xx.c | 66 goto out; net48xx_led_init() 71 goto out; net48xx_led_init() 77 goto out; net48xx_led_init() 80 out: net48xx_led_init()
|
/linux-4.1.27/drivers/net/wireless/ath/ath10k/ |
H A D | testmode.c | 57 goto out; ath10k_tm_event_wmi() 72 goto out; ath10k_tm_event_wmi() 81 goto out; ath10k_tm_event_wmi() 90 goto out; ath10k_tm_event_wmi() 99 goto out; ath10k_tm_event_wmi() 104 out: ath10k_tm_event_wmi() 273 goto out; ath10k_tm_cmd_utf_stop() 282 out: ath10k_tm_cmd_utf_stop() 298 goto out; ath10k_tm_cmd_wmi() 303 goto out; ath10k_tm_cmd_wmi() 308 goto out; ath10k_tm_cmd_wmi() 324 goto out; ath10k_tm_cmd_wmi() 333 goto out; ath10k_tm_cmd_wmi() 338 out: ath10k_tm_cmd_wmi() 378 goto out; ath10k_testmode_destroy() 383 out: ath10k_testmode_destroy()
|
/linux-4.1.27/drivers/staging/lustre/lustre/ptlrpc/ |
H A D | llog_client.c | 98 goto out; llog_client_open() 110 goto out; llog_client_open() 129 goto out; llog_client_open() 134 goto out; llog_client_open() 139 out: llog_client_open() 213 goto out; llog_client_next_block() 218 goto out; llog_client_next_block() 225 goto out; llog_client_next_block() 232 out: llog_client_next_block() 270 goto out; llog_client_prev_block() 275 goto out; llog_client_prev_block() 281 goto out; llog_client_prev_block() 285 out: llog_client_prev_block() 319 goto out; llog_client_read_header() 324 goto out; llog_client_read_header() 342 out: llog_client_read_header()
|
/linux-4.1.27/arch/x86/kernel/ |
H A D | paravirt-spinlocks.c | 2 * Split spinlock implementation out into its own file, so it can be
|
/linux-4.1.27/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.1.27/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.1.27/include/linux/spi/ |
H A D | ifx_modem.h | 5 unsigned short rst_out; /* modem reset out */
|
/linux-4.1.27/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.1.27/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.1.27/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.1.27/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.1.27/arch/arm/mm/ |
H A D | tcm.h | 13 /* No TCM support, just blank inlines to be optimized out */ tcm_init()
|
/linux-4.1.27/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.1.27/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.1.27/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.1.27/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.1.27/sound/firewire/bebob/ |
H A D | bebob_yamaha.c | 20 * At 192.0kHz, the device reports 4 PCM-in, 1 MIDI-in, 6 PCM-out, 1 MIDI-out. 21 * But Yamaha's driver reduce 2 PCM-in, 1 MIDI-in, 2 PCM-out, 1 MIDI-out to use
|
/linux-4.1.27/include/linux/amba/ |
H A D | pl061.h | 14 u8 directions; /* startup directions, 1: out, 0: in */
|
/linux-4.1.27/drivers/net/ethernet/intel/igb/ |
H A D | e1000_phy.c | 88 goto out; igb_get_phy_id() 94 goto out; igb_get_phy_id() 99 out: igb_get_phy_id() 114 goto out; igb_phy_reset_dsp() 118 goto out; igb_phy_reset_dsp() 122 out: igb_phy_reset_dsp() 142 hw_dbg("PHY Address %d is out of range\n", offset); igb_read_phy_reg_mdic() 144 goto out; igb_read_phy_reg_mdic() 158 * Increasing the time out as testing showed failures with igb_read_phy_reg_mdic() 159 * the lower time out igb_read_phy_reg_mdic() 170 goto out; igb_read_phy_reg_mdic() 175 goto out; igb_read_phy_reg_mdic() 179 out: igb_read_phy_reg_mdic() 198 hw_dbg("PHY Address %d is out of range\n", offset); igb_write_phy_reg_mdic() 200 goto out; igb_write_phy_reg_mdic() 215 * Increasing the time out as testing showed failures with igb_write_phy_reg_mdic() 216 * the lower time out igb_write_phy_reg_mdic() 227 goto out; igb_write_phy_reg_mdic() 232 goto out; igb_write_phy_reg_mdic() 235 out: igb_write_phy_reg_mdic() 301 hw_dbg("PHY I2C Address %d is out of range.\n", igb_write_phy_reg_i2c() 407 goto out; igb_read_phy_reg_igp() 411 goto out; igb_read_phy_reg_igp() 419 goto out; igb_read_phy_reg_igp() 428 out: igb_read_phy_reg_igp() 446 goto out; igb_write_phy_reg_igp() 450 goto out; igb_write_phy_reg_igp() 458 goto out; igb_write_phy_reg_igp() 467 out: igb_write_phy_reg_igp() 485 goto out; igb_copper_link_setup_82580() 492 goto out; igb_copper_link_setup_82580() 499 goto out; igb_copper_link_setup_82580() 508 goto out; igb_copper_link_setup_82580() 513 goto out; igb_copper_link_setup_82580() 533 out: igb_copper_link_setup_82580() 552 goto out; igb_copper_link_setup_m88() 558 goto out; igb_copper_link_setup_m88() 599 goto out; igb_copper_link_setup_m88() 608 goto out; igb_copper_link_setup_m88() 627 goto out; igb_copper_link_setup_m88() 634 goto out; igb_copper_link_setup_m88() 637 out: igb_copper_link_setup_m88() 751 goto out; igb_copper_link_setup_igp() 757 goto out; igb_copper_link_setup_igp() 774 goto out; igb_copper_link_setup_igp() 782 goto out; igb_copper_link_setup_igp() 787 goto out; igb_copper_link_setup_igp() 805 goto out; igb_copper_link_setup_igp() 819 goto out; igb_copper_link_setup_igp() 826 goto out; igb_copper_link_setup_igp() 831 goto out; igb_copper_link_setup_igp() 836 goto out; igb_copper_link_setup_igp() 841 goto out; igb_copper_link_setup_igp() 865 goto out; igb_copper_link_setup_igp() 868 out: igb_copper_link_setup_igp() 902 goto out; igb_copper_link_autoneg() 911 goto out; igb_copper_link_autoneg() 916 goto out; igb_copper_link_autoneg() 925 goto out; igb_copper_link_autoneg() 931 out: igb_copper_link_autoneg() 956 goto out; igb_phy_setup_autoneg() 963 goto out; igb_phy_setup_autoneg() 1071 goto out; igb_phy_setup_autoneg() 1076 goto out; igb_phy_setup_autoneg() 1085 goto out; igb_phy_setup_autoneg() 1088 out: igb_phy_setup_autoneg() 1112 goto out; igb_setup_copper_link() 1121 goto out; igb_setup_copper_link() 1130 goto out; igb_setup_copper_link() 1140 out: igb_setup_copper_link() 1161 goto out; igb_phy_force_speed_duplex_igp() 1167 goto out; igb_phy_force_speed_duplex_igp() 1174 goto out; igb_phy_force_speed_duplex_igp() 1181 goto out; igb_phy_force_speed_duplex_igp() 1192 goto out; igb_phy_force_speed_duplex_igp() 1200 goto out; igb_phy_force_speed_duplex_igp() 1203 out: igb_phy_force_speed_duplex_igp() 1232 goto out; igb_phy_force_speed_duplex_m88() 1238 goto out; igb_phy_force_speed_duplex_m88() 1245 goto out; igb_phy_force_speed_duplex_m88() 1251 goto out; igb_phy_force_speed_duplex_m88() 1256 goto out; igb_phy_force_speed_duplex_m88() 1263 goto out; igb_phy_force_speed_duplex_m88() 1289 goto out; igb_phy_force_speed_duplex_m88() 1292 goto out; igb_phy_force_speed_duplex_m88() 1300 goto out; igb_phy_force_speed_duplex_m88() 1307 goto out; igb_phy_force_speed_duplex_m88() 1311 goto out; igb_phy_force_speed_duplex_m88() 1320 goto out; igb_phy_force_speed_duplex_m88() 1327 goto out; igb_phy_force_speed_duplex_m88() 1332 out: igb_phy_force_speed_duplex_m88() 1418 goto out; igb_set_d3_lplu_state() 1422 goto out; igb_set_d3_lplu_state() 1429 goto out; igb_set_d3_lplu_state() 1440 goto out; igb_set_d3_lplu_state() 1447 goto out; igb_set_d3_lplu_state() 1453 goto out; igb_set_d3_lplu_state() 1460 goto out; igb_set_d3_lplu_state() 1469 goto out; igb_set_d3_lplu_state() 1475 goto out; igb_set_d3_lplu_state() 1482 out: igb_set_d3_lplu_state() 1517 goto out; igb_check_downshift() 1525 out: igb_check_downshift() 1573 goto out; igb_check_polarity_igp() 1594 out: igb_check_polarity_igp() 1699 goto out; igb_get_cable_length_m88() 1705 goto out; igb_get_cable_length_m88() 1713 out: igb_get_cable_length_m88() 1751 goto out; igb_get_cable_length_m88_gen2() 1755 goto out; igb_get_cable_length_m88_gen2() 1761 goto out; igb_get_cable_length_m88_gen2() 1766 goto out; igb_get_cable_length_m88_gen2() 1779 goto out; igb_get_cable_length_m88_gen2() 1786 goto out; igb_get_cable_length_m88_gen2() 1790 goto out; igb_get_cable_length_m88_gen2() 1795 goto out; igb_get_cable_length_m88_gen2() 1801 goto out; igb_get_cable_length_m88_gen2() 1814 goto out; igb_get_cable_length_m88_gen2() 1819 goto out; igb_get_cable_length_m88_gen2() 1822 out: igb_get_cable_length_m88_gen2() 1855 goto out; igb_get_cable_length_igp_2() 1869 goto out; igb_get_cable_length_igp_2() 1894 out: igb_get_cable_length_igp_2() 1918 goto out; igb_get_phy_info_m88() 1923 goto out; igb_get_phy_info_m88() 1928 goto out; igb_get_phy_info_m88() 1933 goto out; igb_get_phy_info_m88() 1940 goto out; igb_get_phy_info_m88() 1944 goto out; igb_get_phy_info_m88() 1951 goto out; igb_get_phy_info_m88() 1955 goto out; igb_get_phy_info_m88() 1971 out: igb_get_phy_info_m88() 1993 goto out; igb_get_phy_info_igp() 1998 goto out; igb_get_phy_info_igp() 2005 goto out; igb_get_phy_info_igp() 2009 goto out; igb_get_phy_info_igp() 2017 goto out; igb_get_phy_info_igp() 2021 goto out; igb_get_phy_info_igp() 2036 out: igb_get_phy_info_igp() 2053 goto out; igb_phy_sw_reset() 2057 goto out; igb_phy_sw_reset() 2062 goto out; igb_phy_sw_reset() 2066 out: igb_phy_sw_reset() 2088 goto out; igb_phy_hw_reset() 2093 goto out; igb_phy_hw_reset() 2110 out: igb_phy_hw_reset() 2274 goto out; igb_phy_force_speed_duplex_82580() 2280 goto out; igb_phy_force_speed_duplex_82580() 2287 goto out; igb_phy_force_speed_duplex_82580() 2293 goto out; igb_phy_force_speed_duplex_82580() 2304 goto out; igb_phy_force_speed_duplex_82580() 2312 goto out; igb_phy_force_speed_duplex_82580() 2315 out: igb_phy_force_speed_duplex_82580() 2337 goto out; igb_get_phy_info_82580() 2342 goto out; igb_get_phy_info_82580() 2349 goto out; igb_get_phy_info_82580() 2353 goto out; igb_get_phy_info_82580() 2361 goto out; igb_get_phy_info_82580() 2365 goto out; igb_get_phy_info_82580() 2380 out: igb_get_phy_info_82580() 2399 goto out; igb_get_cable_length_82580() 2409 out: igb_get_cable_length_82580()
|
/linux-4.1.27/drivers/net/wireless/ath/wcn36xx/ |
H A D | smd.c | 261 goto out; wcn36xx_smd_send_and_wait() 268 goto out; wcn36xx_smd_send_and_wait() 272 out: wcn36xx_smd_send_and_wait() 320 goto out; wcn36xx_smd_load_nv() 372 out: return ret; wcn36xx_smd_load_nv() 435 goto out; wcn36xx_smd_start() 446 goto out; wcn36xx_smd_start() 452 goto out; wcn36xx_smd_start() 455 out: wcn36xx_smd_start() 475 goto out; wcn36xx_smd_stop() 480 goto out; wcn36xx_smd_stop() 482 out: wcn36xx_smd_stop() 504 goto out; wcn36xx_smd_init_scan() 509 goto out; wcn36xx_smd_init_scan() 511 out: wcn36xx_smd_init_scan() 534 goto out; wcn36xx_smd_start_scan() 539 goto out; wcn36xx_smd_start_scan() 541 out: wcn36xx_smd_start_scan() 564 goto out; wcn36xx_smd_end_scan() 569 goto out; wcn36xx_smd_end_scan() 571 out: wcn36xx_smd_end_scan() 595 goto out; wcn36xx_smd_finish_scan() 600 goto out; wcn36xx_smd_finish_scan() 602 out: wcn36xx_smd_finish_scan() 640 goto out; wcn36xx_smd_switch_channel() 645 goto out; wcn36xx_smd_switch_channel() 647 out: wcn36xx_smd_switch_channel() 695 goto out; wcn36xx_smd_update_scan_params() 702 goto out; wcn36xx_smd_update_scan_params() 704 out: wcn36xx_smd_update_scan_params() 757 goto out; wcn36xx_smd_add_sta_self() 765 goto out; wcn36xx_smd_add_sta_self() 767 out: wcn36xx_smd_add_sta_self() 787 goto out; wcn36xx_smd_delete_sta_self() 793 goto out; wcn36xx_smd_delete_sta_self() 795 out: wcn36xx_smd_delete_sta_self() 819 goto out; wcn36xx_smd_delete_sta() 824 goto out; wcn36xx_smd_delete_sta() 826 out: wcn36xx_smd_delete_sta() 882 goto out; wcn36xx_smd_join() 887 goto out; wcn36xx_smd_join() 889 out: wcn36xx_smd_join() 917 goto out; wcn36xx_smd_set_link_st() 922 goto out; wcn36xx_smd_set_link_st() 924 out: wcn36xx_smd_set_link_st() 1034 goto out; wcn36xx_smd_config_sta() 1042 goto out; wcn36xx_smd_config_sta() 1044 out: wcn36xx_smd_config_sta() 1314 goto out; wcn36xx_smd_config_bss() 1322 goto out; wcn36xx_smd_config_bss() 1324 out: wcn36xx_smd_config_bss() 1347 goto out; wcn36xx_smd_delete_bss() 1352 goto out; wcn36xx_smd_delete_bss() 1354 out: wcn36xx_smd_delete_bss() 1369 /* TODO need to find out why this is needed? */ wcn36xx_smd_send_beacon() 1380 goto out; wcn36xx_smd_send_beacon() 1384 /* TODO need to find out why this is needed? */ wcn36xx_smd_send_beacon() 1400 goto out; wcn36xx_smd_send_beacon() 1405 goto out; wcn36xx_smd_send_beacon() 1407 out: wcn36xx_smd_send_beacon() 1426 goto out; wcn36xx_smd_update_proberesp_tmpl() 1443 goto out; wcn36xx_smd_update_proberesp_tmpl() 1449 goto out; wcn36xx_smd_update_proberesp_tmpl() 1451 out: wcn36xx_smd_update_proberesp_tmpl() 1485 goto out; wcn36xx_smd_set_stakey() 1490 goto out; wcn36xx_smd_set_stakey() 1492 out: wcn36xx_smd_set_stakey() 1523 goto out; wcn36xx_smd_set_bsskey() 1528 goto out; wcn36xx_smd_set_bsskey() 1530 out: wcn36xx_smd_set_bsskey() 1555 goto out; wcn36xx_smd_remove_stakey() 1560 goto out; wcn36xx_smd_remove_stakey() 1562 out: wcn36xx_smd_remove_stakey() 1585 goto out; wcn36xx_smd_remove_bsskey() 1590 goto out; wcn36xx_smd_remove_bsskey() 1592 out: wcn36xx_smd_remove_bsskey() 1615 goto out; wcn36xx_smd_enter_bmps() 1620 goto out; wcn36xx_smd_enter_bmps() 1622 out: wcn36xx_smd_enter_bmps() 1643 goto out; wcn36xx_smd_exit_bmps() 1648 goto out; wcn36xx_smd_exit_bmps() 1650 out: wcn36xx_smd_exit_bmps() 1676 goto out; wcn36xx_smd_set_power_params() 1679 out: wcn36xx_smd_set_power_params() 1706 goto out; wcn36xx_smd_keep_alive_req() 1714 goto out; wcn36xx_smd_keep_alive_req() 1719 goto out; wcn36xx_smd_keep_alive_req() 1721 out: wcn36xx_smd_keep_alive_req() 1746 goto out; wcn36xx_smd_dump_cmd_req() 1751 goto out; wcn36xx_smd_dump_cmd_req() 1753 out: wcn36xx_smd_dump_cmd_req() 1817 goto out; wcn36xx_smd_feature_caps_exchange() 1821 goto out; wcn36xx_smd_feature_caps_exchange() 1828 out: wcn36xx_smd_feature_caps_exchange() 1864 goto out; wcn36xx_smd_add_ba_session() 1869 goto out; wcn36xx_smd_add_ba_session() 1871 out: wcn36xx_smd_add_ba_session() 1892 goto out; wcn36xx_smd_add_ba() 1897 goto out; wcn36xx_smd_add_ba() 1899 out: wcn36xx_smd_add_ba() 1920 goto out; wcn36xx_smd_del_ba() 1925 goto out; wcn36xx_smd_del_ba() 1927 out: wcn36xx_smd_del_ba() 1954 goto out; wcn36xx_smd_trigger_ba() 1959 goto out; wcn36xx_smd_trigger_ba() 1961 out: wcn36xx_smd_trigger_ba() 2076 goto out; wcn36xx_smd_update_cfg() 2081 goto out; wcn36xx_smd_update_cfg() 2083 out: wcn36xx_smd_update_cfg() 2148 wcn36xx_err("Run out of memory while handling SMD_EVENT (%d)\n", wcn36xx_smd_rsp_process() 2210 goto out; wcn36xx_smd_open() 2226 out: wcn36xx_smd_open()
|
/linux-4.1.27/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.1.27/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()
|
H A D | page.c | 27 u64 __user *out = (u64 __user *)buf; kpagecount_read() local 49 if (put_user(pcount, out)) { kpagecount_read() 55 out++; kpagecount_read() 59 *ppos += (char __user *)out - buf; kpagecount_read() 61 ret = (char __user *)out - buf; kpagecount_read() 190 u64 __user *out = (u64 __user *)buf; kpageflags_read() local 207 if (put_user(stable_page_flags(ppage), out)) { kpageflags_read() 213 out++; kpageflags_read() 217 *ppos += (char __user *)out - buf; kpageflags_read() 219 ret = (char __user *)out - buf; kpageflags_read()
|
/linux-4.1.27/drivers/mfd/ |
H A D | cros_ec.c | 33 uint8_t *out; cros_ec_prepare_tx() local 37 out = ec_dev->dout; cros_ec_prepare_tx() 38 out[0] = EC_CMD_VERSION0 + msg->version; cros_ec_prepare_tx() 39 out[1] = msg->command; cros_ec_prepare_tx() 40 out[2] = msg->outsize; cros_ec_prepare_tx() 41 csum = out[0] + out[1] + out[2]; cros_ec_prepare_tx() 43 csum += out[EC_MSG_TX_HEADER_BYTES + i] = msg->outdata[i]; cros_ec_prepare_tx() 44 out[EC_MSG_TX_HEADER_BYTES + msg->outsize] = (uint8_t)(csum & 0xff); cros_ec_prepare_tx()
|
/linux-4.1.27/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.1.27/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()
|
/linux-4.1.27/sound/usb/6fire/ |
H A D | midi.c | 34 if (rt->out) { usb6fire_midi_out_handler() 35 ret = snd_rawmidi_transmit(rt->out, rt->out_buffer + 4, usb6fire_midi_out_handler() 45 "midi out urb submit failed: %d\n", usb6fire_midi_out_handler() 48 rt->out = NULL; usb6fire_midi_out_handler() 84 if (rt->out) { /* we are already transmitting so just return */ usb6fire_midi_out_trigger() 99 "midi out urb submit failed: %d\n", usb6fire_midi_out_trigger() 102 rt->out = alsa_sub; usb6fire_midi_out_trigger() 104 } else if (rt->out == alsa_sub) usb6fire_midi_out_trigger() 105 rt->out = NULL; usb6fire_midi_out_trigger() 114 while (rt->out && retry++ < 100) usb6fire_midi_out_drain()
|
/linux-4.1.27/drivers/misc/altera-stapl/ |
H A D | altera-comp.c | 80 u32 altera_shrink(u8 *in, u32 in_length, u8 *out, u32 out_length, s32 version) altera_shrink() argument 92 out[i] = 0; altera_shrink() 115 out[i] = (u8)altera_read_packed(in, altera_shrink() 134 out[i] = out[i - offset]; altera_shrink()
|
/linux-4.1.27/arch/metag/kernel/ |
H A D | ptrace.c | 39 goto out; metag_gp_regs_copyout() 44 goto out; metag_gp_regs_copyout() 53 goto out; metag_gp_regs_copyout() 58 goto out; metag_gp_regs_copyout() 63 goto out; metag_gp_regs_copyout() 71 goto out; metag_gp_regs_copyout() 76 goto out; metag_gp_regs_copyout() 80 out: metag_gp_regs_copyout() 96 goto out; metag_gp_regs_copyin() 101 goto out; metag_gp_regs_copyin() 110 goto out; metag_gp_regs_copyin() 115 goto out; metag_gp_regs_copyin() 120 goto out; metag_gp_regs_copyin() 125 goto out; metag_gp_regs_copyin() 134 out: metag_gp_regs_copyin() 214 goto out; metag_rp_state_copyout() 230 goto out; metag_rp_state_copyout() 235 out: metag_rp_state_copyout() 251 goto out; metag_rp_state_copyin() 269 out: metag_rp_state_copyin()
|