/linux-4.4.14/drivers/staging/unisys/visorbus/ |
D | vbusdeviceinfo.h | 52 vbuschannel_sanitize_buffer(char *p, int remain, char *src, int srcmax) in vbuschannel_sanitize_buffer() argument 60 if (remain > 0) { in vbuschannel_sanitize_buffer() 63 remain--; in vbuschannel_sanitize_buffer() 70 if (remain > 0) { in vbuschannel_sanitize_buffer() 73 remain--; in vbuschannel_sanitize_buffer() 87 #define VBUSCHANNEL_ADDACHAR(ch, p, remain, chars) \ argument 89 if (remain <= 0) \ 92 p++; chars++; remain--; \ 105 vbuschannel_itoa(char *p, int remain, int num) in vbuschannel_itoa() argument 113 if (remain <= 0) in vbuschannel_itoa() [all …]
|
D | visorbus_main.c | 602 int i, x, remain = PAGE_SIZE; in client_bus_info_show() local 612 x = snprintf(p, remain, in client_bus_info_show() 616 remain -= x; in client_bus_info_show() 624 remain, -1); in client_bus_info_show() 626 remain -= x; in client_bus_info_show() 635 remain, -1); in client_bus_info_show() 637 remain -= x; in client_bus_info_show() 647 (&dev_info, p, remain, i); in client_bus_info_show() 649 remain -= x; in client_bus_info_show() 655 return PAGE_SIZE - remain; in client_bus_info_show()
|
/linux-4.4.14/arch/um/kernel/skas/ |
D | uaccess.c | 93 long size, remain, n; in buffer_op() local 96 remain = len; in buffer_op() 100 remain = (n < 0 ? remain : 0); in buffer_op() 105 remain -= size; in buffer_op() 106 if (remain == 0) in buffer_op() 109 while (addr < ((addr + remain) & PAGE_MASK)) { in buffer_op() 112 remain = (n < 0 ? remain : 0); in buffer_op() 117 remain -= PAGE_SIZE; in buffer_op() 119 if (remain == 0) in buffer_op() 122 n = do_op_one_page(addr, remain, is_write, op, arg); in buffer_op() [all …]
|
/linux-4.4.14/drivers/staging/rtl8188eu/hal/ |
D | fw.c | 63 u32 i, offset, blk_cnt, remain; in _rtl88e_fw_block_write() local 66 remain = size % blk_sz; in _rtl88e_fw_block_write() 74 if (remain) { in _rtl88e_fw_block_write() 77 for (i = 0; i < remain; i++) { in _rtl88e_fw_block_write() 87 u8 remain = (u8)(fwlen % 4); in _rtl88e_fill_dummy() local 89 remain = (remain == 0) ? 0 : (4 - remain); in _rtl88e_fill_dummy() 91 while (remain > 0) { in _rtl88e_fill_dummy() 94 remain--; in _rtl88e_fill_dummy() 115 u32 page_no, remain; in _rtl88e_write_fw() local 121 remain = size % FW_8192C_PAGE_SIZE; in _rtl88e_write_fw() [all …]
|
/linux-4.4.14/arch/mips/netlogic/xlr/ |
D | setup.c | 104 int i, remain, len; in build_arcs_cmdline() local 107 remain = sizeof(arcs_cmdline) - 1; in build_arcs_cmdline() 112 if (len + 1 > remain) in build_arcs_cmdline() 116 remain -= len + 1; in build_arcs_cmdline() 123 if (len > remain) in build_arcs_cmdline() 126 remain -= len; in build_arcs_cmdline() 132 if (len > remain) in build_arcs_cmdline() 135 remain -= len; in build_arcs_cmdline()
|
/linux-4.4.14/drivers/staging/fbtft/ |
D | fbtft-bus.c | 129 size_t remain; in fbtft_write_vmem16_bus8() local 139 remain = len / 2; in fbtft_write_vmem16_bus8() 159 while (remain) { in fbtft_write_vmem16_bus8() 160 to_copy = remain > tx_array_size ? tx_array_size : remain; in fbtft_write_vmem16_bus8() 162 to_copy, remain - to_copy); in fbtft_write_vmem16_bus8() 172 remain -= to_copy; in fbtft_write_vmem16_bus8() 184 size_t remain; in fbtft_write_vmem16_bus9() local 198 remain = len; in fbtft_write_vmem16_bus9() 203 while (remain) { in fbtft_write_vmem16_bus9() 204 to_copy = remain > tx_array_size ? tx_array_size : remain; in fbtft_write_vmem16_bus9() [all …]
|
D | fb_ra8875.c | 261 size_t remain; in write_vmem16_bus8() local 271 remain = len / 2; in write_vmem16_bus8() 279 while (remain) { in write_vmem16_bus8() 280 to_copy = remain > tx_array_size ? tx_array_size : remain; in write_vmem16_bus8() 282 to_copy, remain - to_copy); in write_vmem16_bus8() 292 remain -= to_copy; in write_vmem16_bus8()
|
/linux-4.4.14/arch/um/drivers/ |
D | umcast_kern.c | 73 char *port_str = NULL, *ttl_str = NULL, *remain; in mcast_setup() local 81 remain = split_if_spec(str, mac_out, &init->addr, &port_str, &ttl_str, in mcast_setup() 83 if (remain != NULL) { in mcast_setup() 85 "specification : '%s'\n", remain); in mcast_setup() 119 char *lport_str = NULL, *rport_str = NULL, *remain; in ucast_setup() local 127 remain = split_if_spec(str, mac_out, &init->addr, in ucast_setup() 129 if (remain != NULL) { in ucast_setup() 131 "specification : '%s'\n", remain); in ucast_setup()
|
D | net_user.c | 52 int remain, ret, expected; in read_output() local 62 ret = read(fd, &remain, sizeof(remain)); in read_output() 64 if (ret != sizeof(remain)) { in read_output() 67 expected = sizeof(remain); in read_output() 72 while (remain != 0) { in read_output() 73 expected = (remain < len) ? remain : len; in read_output() 81 remain -= ret; in read_output()
|
D | pcap_kern.c | 56 char *remain, *host_if = NULL, *options[2] = { NULL, NULL }; in pcap_setup() local 65 remain = split_if_spec(str, &host_if, &init->filter, in pcap_setup() 67 if (remain != NULL) { in pcap_setup() 69 "specification : '%s'\n", remain); in pcap_setup()
|
D | vde_kern.c | 73 char *remain, *port_str = NULL, *mode_str = NULL, *last; in vde_setup() local 82 remain = split_if_spec(str, &init->vde_switch, mac_out, &port_str, in vde_setup() 85 if (remain != NULL) in vde_setup() 87 "'%s'\n", remain); in vde_setup()
|
D | daemon_kern.c | 64 char *remain; in daemon_setup() local 70 remain = split_if_spec(str, mac_out, &init->sock_type, &init->ctl_sock, in daemon_setup() 72 if (remain != NULL) in daemon_setup()
|
D | net_kern.c | 897 char *remain; in tap_setup_common() local 899 remain = split_if_spec(str, dev_name, mac_out, gate_addr, NULL); in tap_setup_common() 900 if (remain != NULL) { in tap_setup_common() 902 "specification : '%s'\n", remain); in tap_setup_common()
|
/linux-4.4.14/drivers/gpu/drm/qxl/ |
D | qxl_image.c | 136 int remain; in qxl_image_init_helper() local 140 remain = linesize * height; in qxl_image_init_helper() 144 while (remain > 0) { in qxl_image_init_helper() 155 size = min(size, remain); in qxl_image_init_helper() 161 remain -= size; in qxl_image_init_helper() 168 remain = linesize; in qxl_image_init_helper() 171 while (remain > 0) { in qxl_image_init_helper() 174 size = min((int)(PAGE_SIZE - page_offset), remain); in qxl_image_init_helper() 180 remain -= size; in qxl_image_init_helper()
|
/linux-4.4.14/drivers/media/usb/stk1160/ |
D | stk1160-video.c | 117 int remain; in stk1160_copy_video() local 133 remain = len; in stk1160_copy_video() 145 if (remain < (bytesperline - lineoff)) in stk1160_copy_video() 146 lencopy = remain; in stk1160_copy_video() 156 remain = lencopy; in stk1160_copy_video() 160 if (lencopy == 0 || remain == 0) in stk1160_copy_video() 179 remain -= lencopy; in stk1160_copy_video() 182 while (remain > 0) { in stk1160_copy_video() 188 if (remain < bytesperline) in stk1160_copy_video() 189 lencopy = remain; in stk1160_copy_video() [all …]
|
/linux-4.4.14/drivers/mmc/host/ |
D | moxart-mmc.c | 164 int remain; in moxart_next_sg() local 172 remain = host->data_len - data->bytes_xfered; in moxart_next_sg() 173 if (remain > 0 && remain < host->data_remain) in moxart_next_sg() 174 host->data_remain = remain; in moxart_next_sg() 311 u32 *sgp, len = 0, remain, status; in moxart_transfer_pio() local 317 remain = host->data_remain; in moxart_transfer_pio() 320 while (remain > 0) { in moxart_transfer_pio() 327 for (len = 0; len < remain && len < host->fifo_width;) { in moxart_transfer_pio() 332 remain -= len; in moxart_transfer_pio() 336 while (remain > 0) { in moxart_transfer_pio() [all …]
|
D | mmci.c | 919 u32 remain, success; in mmci_data_irq() local 934 remain = readl(host->base + MMCIDATACNT); in mmci_data_irq() 935 success = data->blksz * data->blocks - remain; in mmci_data_irq() 1047 static int mmci_get_rx_fifocnt(struct mmci_host *host, u32 status, int remain) in mmci_get_rx_fifocnt() argument 1049 return remain - (readl(host->base + MMCIFIFOCNT) << 2); in mmci_get_rx_fifocnt() 1066 static int mmci_pio_read(struct mmci_host *host, char *buffer, unsigned int remain) in mmci_pio_read() argument 1076 if (count > remain) in mmci_pio_read() 1077 count = remain; in mmci_pio_read() 1102 remain -= count; in mmci_pio_read() 1105 if (remain == 0) in mmci_pio_read() [all …]
|
D | wbsd.h | 159 unsigned int remain; /* Data left in curren entry */ member
|
D | wbsd.c | 249 host->remain = host->cur_sg->length; in wbsd_init_sg() 265 host->remain = host->cur_sg->length; in wbsd_next_sg() 451 host->remain--; in wbsd_empty_fifo() 458 if (host->remain == 0) { in wbsd_empty_fifo() 514 host->remain--; in wbsd_fill_fifo() 521 if (host->remain == 0) { in wbsd_fill_fifo()
|
D | mmci.h | 232 int (*get_rx_fifocnt)(struct mmci_host *h, u32 status, int remain);
|
D | dw_mmc.c | 2223 unsigned int remain, fcnt; in dw_mci_read_data_pio() local 2231 remain = sg_miter->length; in dw_mci_read_data_pio() 2237 len = min(remain, fcnt); in dw_mci_read_data_pio() 2243 remain -= len; in dw_mci_read_data_pio() 2244 } while (remain); in dw_mci_read_data_pio() 2253 if (!remain) { in dw_mci_read_data_pio() 2278 unsigned int remain, fcnt; in dw_mci_write_data_pio() local 2286 remain = sg_miter->length; in dw_mci_write_data_pio() 2293 len = min(remain, fcnt); in dw_mci_write_data_pio() 2299 remain -= len; in dw_mci_write_data_pio() [all …]
|
/linux-4.4.14/drivers/spi/ |
D | spi-sh.c | 166 int remain = t->len; in spi_sh_send() local 175 while (remain > 0) { in spi_sh_send() 176 cur_len = min(SPI_SH_FIFO_SIZE, remain); in spi_sh_send() 193 remain -= cur_len; in spi_sh_send() 196 if (remain > 0) { in spi_sh_send() 231 int remain = t->len; in spi_sh_receive() local 247 while (remain > 0) { in spi_sh_receive() 248 if (remain >= SPI_SH_FIFO_SIZE) { in spi_sh_receive() 261 cur_len = min(SPI_SH_FIFO_SIZE, remain); in spi_sh_receive() 268 remain -= cur_len; in spi_sh_receive()
|
D | spi-rockchip.c | 381 int remain = 0; in rockchip_spi_pio_transfer() local 385 remain = rs->tx_end - rs->tx; in rockchip_spi_pio_transfer() 390 remain = rs->rx_end - rs->rx; in rockchip_spi_pio_transfer() 395 } while (remain); in rockchip_spi_pio_transfer()
|
/linux-4.4.14/drivers/staging/gdm72xx/ |
D | gdm_sdio.c | 215 int n, blocks, ret, remain; in send_sdio_pkt() local 231 remain = len - n; in send_sdio_pkt() 232 remain = (remain + 3) & ~3; in send_sdio_pkt() 234 if (remain) { in send_sdio_pkt() 235 ret = sdio_memcpy_toio(func, 0, data + n, remain); in send_sdio_pkt() 482 int ret, remain; in gdm_sdio_irq() local 521 remain = len - TYPE_A_LOOKAHEAD_SIZE + TYPE_A_HEADER_SIZE; in gdm_sdio_irq() 522 if (remain <= 0) in gdm_sdio_irq() 525 blocks = remain / func->cur_blksize; in gdm_sdio_irq() 536 remain -= n; in gdm_sdio_irq() [all …]
|
/linux-4.4.14/lib/ |
D | genalloc.c | 276 int nbits, start_bit = 0, end_bit, remain; in gen_pool_alloc() local 297 remain = bitmap_set_ll(chunk->bits, start_bit, nbits); in gen_pool_alloc() 298 if (remain) { in gen_pool_alloc() 299 remain = bitmap_clear_ll(chunk->bits, start_bit, in gen_pool_alloc() 300 nbits - remain); in gen_pool_alloc() 301 BUG_ON(remain); in gen_pool_alloc() 358 int start_bit, nbits, remain; in gen_pool_free() local 370 remain = bitmap_clear_ll(chunk->bits, start_bit, nbits); in gen_pool_free() 371 BUG_ON(remain); in gen_pool_free()
|
/linux-4.4.14/arch/powerpc/kernel/ |
D | udbg.c | 106 int remain = n; in udbg_write() local 113 while (((c = *s++) != '\0') && (remain-- > 0)) { in udbg_write() 121 return n - remain; in udbg_write()
|
/linux-4.4.14/drivers/net/wireless/realtek/rtlwifi/rtl8723com/ |
D | fw_common.c | 102 u8 remain = (u8) (fwlen % 4); in rtl8723_fill_dummy() local 104 remain = (remain == 0) ? 0 : (4 - remain); in rtl8723_fill_dummy() 106 while (remain > 0) { in rtl8723_fill_dummy() 109 remain--; in rtl8723_fill_dummy()
|
/linux-4.4.14/sound/soc/codecs/ |
D | rt5677-spi.c | 80 static u8 rt5677_spi_select_cmd(bool read, u32 align, u32 remain, u32 *len) in rt5677_spi_select_cmd() argument 84 if (align == 2 || align == 6 || remain == 2) { in rt5677_spi_select_cmd() 87 } else if (align == 4 || remain <= 6) { in rt5677_spi_select_cmd() 92 *len = min_t(u32, remain & ~7, RT5677_SPI_BURST_LEN); in rt5677_spi_select_cmd()
|
/linux-4.4.14/arch/alpha/lib/ |
D | memchr.S | 72 # Deal with the case where at most 8 bytes remain to be searched 103 # Deal with the case where $18 > 8 bytes remain to be 127 # At least two quads remain to be accessed. 133 # At least three quads remain to be accessed
|
D | ev6-memchr.S | 71 # Deal with the case where at most 8 bytes remain to be searched 122 # Deal with the case where $18 > 8 bytes remain to be 144 # At least two quads remain to be accessed. 149 # At least three quads remain to be accessed
|
/linux-4.4.14/drivers/staging/gdm724x/ |
D | gdm_tty.c | 182 int remain = len; in gdm_tty_write() local 193 sending_len = remain > MUX_TX_MAX_SIZE ? MUX_TX_MAX_SIZE : in gdm_tty_write() 194 remain; in gdm_tty_write() 203 remain -= sending_len; in gdm_tty_write() 204 if (remain <= 0) in gdm_tty_write()
|
/linux-4.4.14/net/rxrpc/ |
D | ar-output.c | 594 sp->remain = chunk; in rxrpc_send_data() 595 if (sp->remain > skb_tailroom(skb)) in rxrpc_send_data() 596 sp->remain = skb_tailroom(skb); in rxrpc_send_data() 602 sp->remain); in rxrpc_send_data() 616 if (copy > sp->remain) in rxrpc_send_data() 617 copy = sp->remain; in rxrpc_send_data() 624 sp->remain -= copy; in rxrpc_send_data() 635 if (sp->remain <= 0 || in rxrpc_send_data()
|
D | ar-internal.h | 87 int remain; /* amount of space remaining for next write */ member
|
/linux-4.4.14/arch/x86/kernel/ |
D | kdebugfs.c | 34 unsigned long remain; in setup_data_read() local 58 remain = copy_to_user(user_buf, p, count); in setup_data_read() 63 if (remain) in setup_data_read()
|
/linux-4.4.14/fs/omfs/ |
D | file.c | 230 int remain; in omfs_get_block() local 253 offset = find_block(inode, entry, block, extent_count, &remain); in omfs_get_block() 257 if (remain > max_blocks) in omfs_get_block() 258 remain = max_blocks; in omfs_get_block() 259 bh_result->b_size = (remain << inode->i_blkbits); in omfs_get_block()
|
/linux-4.4.14/drivers/usb/dwc2/ |
D | hcd_ddma.c | 805 u16 remain = 0; in dwc2_cmpl_host_isoc_dma_desc() local 814 remain = (dma_desc->status & HOST_DMA_ISOC_NBYTES_MASK) >> in dwc2_cmpl_host_isoc_dma_desc() 824 frame_desc->actual_length = qh->n_bytes[idx] - remain; in dwc2_cmpl_host_isoc_dma_desc() 828 frame_desc->actual_length = qh->n_bytes[idx] - remain; in dwc2_cmpl_host_isoc_dma_desc() 940 u16 remain = 0; in dwc2_update_non_isoc_urb_state_ddma() local 943 remain = (dma_desc->status & HOST_DMA_NBYTES_MASK) >> in dwc2_update_non_isoc_urb_state_ddma() 946 dev_vdbg(hsotg->dev, "remain=%d dwc2_urb=%p\n", remain, urb); in dwc2_update_non_isoc_urb_state_ddma() 986 urb->actual_length += n_bytes - remain; in dwc2_update_non_isoc_urb_state_ddma() 987 if (remain || urb->actual_length >= urb->length) { in dwc2_update_non_isoc_urb_state_ddma() 1002 urb->actual_length += n_bytes - remain; in dwc2_update_non_isoc_urb_state_ddma() [all …]
|
/linux-4.4.14/drivers/gpu/host1x/ |
D | syncpt.c | 242 int remain = wait_event_interruptible_timeout(wq, in host1x_syncpt_wait() local 245 if (remain > 0 || host1x_syncpt_is_expired(sp, thresh)) { in host1x_syncpt_wait() 251 if (remain < 0) { in host1x_syncpt_wait() 252 err = remain; in host1x_syncpt_wait()
|
/linux-4.4.14/drivers/media/usb/au0828/ |
D | au0828-video.c | 330 int linesdone, currlinedone, offset, lencopy, remain; in au0828_copy_video() local 340 remain = len; in au0828_copy_video() 353 lencopy = lencopy > remain ? remain : lencopy; in au0828_copy_video() 359 remain = (char *)outp + buf->length - (char *)startwrite; in au0828_copy_video() 360 lencopy = remain; in au0828_copy_video() 366 remain -= lencopy; in au0828_copy_video() 368 while (remain > 0) { in au0828_copy_video() 371 if (bytesperline > remain) in au0828_copy_video() 372 lencopy = remain; in au0828_copy_video() 381 lencopy = remain = (char *)outp + buf->length - in au0828_copy_video() [all …]
|
/linux-4.4.14/drivers/net/wireless/realtek/rtlwifi/rtl8188ee/ |
D | fw.c | 100 u8 remain = (u8) (fwlen % 4); in _rtl88e_fill_dummy() local 102 remain = (remain == 0) ? 0 : (4 - remain); in _rtl88e_fill_dummy() 104 while (remain > 0) { in _rtl88e_fill_dummy() 107 remain--; in _rtl88e_fill_dummy()
|
/linux-4.4.14/drivers/mmc/card/ |
D | queue.c | 461 unsigned int len, remain, offset = 0; in mmc_queue_packed_map_sg() local 464 remain = hdr_sz; in mmc_queue_packed_map_sg() 466 len = min(remain, max_seg_sz); in mmc_queue_packed_map_sg() 469 remain -= len; in mmc_queue_packed_map_sg() 472 } while (remain); in mmc_queue_packed_map_sg()
|
/linux-4.4.14/scripts/ |
D | checkpatch.pl | 1053 my ($linenr, $remain, $off) = @_; 1077 for (; $remain > 0; $line++) { 1080 $remain--; 1171 $remain--; 1183 $line, $remain + 1, $off - $loff + 1, $level); 1230 my ($linenr, $remain, $off) = @_; 1236 ($statement, $condition, $linenr, $remain, $off, $level) = 1237 ctx_statement_block($linenr, $remain, $off); 1240 if (!($remain > 0 && $condition =~ /^\s*(?:\n[+-])?\s*(?:if|else|do)\b/s)) { 1247 ($statement, $condition, $linenr, $remain, $off, $level) = [all …]
|
/linux-4.4.14/drivers/usb/misc/ |
D | chaoskey.c | 374 unsigned long remain; in chaoskey_read() local 414 remain = copy_to_user(buffer, dev->buf + dev->used, this_time); in chaoskey_read() 415 if (remain) { in chaoskey_read() 421 dev->used += this_time - remain; in chaoskey_read()
|
/linux-4.4.14/drivers/staging/lustre/lustre/libcfs/ |
D | tracefile.c | 273 int remain; in libcfs_debug_vmsg2() local 342 remain = max_nob - needed; in libcfs_debug_vmsg2() 343 if (remain < 0) in libcfs_debug_vmsg2() 344 remain = 0; in libcfs_debug_vmsg2() 347 needed += vsnprintf(string_buf + needed, remain, in libcfs_debug_vmsg2() 443 remain = CFS_TRACE_CONSOLE_BUFFER_SIZE - needed; in libcfs_debug_vmsg2() 444 if (remain > 0) { in libcfs_debug_vmsg2() 446 needed += vsnprintf(string_buf+needed, remain, in libcfs_debug_vmsg2()
|
/linux-4.4.14/drivers/staging/dgnc/ |
D | dgnc_tty.c | 457 int remain; in dgnc_wmove() local 470 remain = WQUEUESIZE - head; in dgnc_wmove() 472 if (n >= remain) { in dgnc_wmove() 473 n -= remain; in dgnc_wmove() 474 memcpy(ch->ch_wqueue + head, buf, remain); in dgnc_wmove() 476 buf += remain; in dgnc_wmove() 483 remain = n; in dgnc_wmove() 484 memcpy(ch->ch_wqueue + head, buf, remain); in dgnc_wmove() 485 head += remain; in dgnc_wmove() 1699 uint remain; in dgnc_tty_write() local [all …]
|
/linux-4.4.14/drivers/infiniband/hw/cxgb4/ |
D | mem.c | 185 u32 remain = len; in _c4iw_write_mem_dma() local 196 while (remain > inline_threshold) { in _c4iw_write_mem_dma() 197 if (remain < T4_ULPTX_MAX_DMA) { in _c4iw_write_mem_dma() 198 if (remain & ~T4_ULPTX_MIN_IO) in _c4iw_write_mem_dma() 199 dmalen = remain & ~(T4_ULPTX_MIN_IO-1); in _c4iw_write_mem_dma() 201 dmalen = remain; in _c4iw_write_mem_dma() 204 remain -= dmalen; in _c4iw_write_mem_dma() 206 !remain); in _c4iw_write_mem_dma() 213 if (remain) in _c4iw_write_mem_dma() 214 ret = _c4iw_write_mem_inline(rdev, addr, remain, data); in _c4iw_write_mem_dma()
|
/linux-4.4.14/drivers/net/wireless/realtek/rtlwifi/rtl8192ee/ |
D | fw.c | 96 u8 remain = (u8)(fwlen % 4); in _rtl92ee_fill_dummy() local 98 remain = (remain == 0) ? 0 : (4 - remain); in _rtl92ee_fill_dummy() 100 while (remain > 0) { in _rtl92ee_fill_dummy() 103 remain--; in _rtl92ee_fill_dummy()
|
/linux-4.4.14/drivers/media/usb/em28xx/ |
D | em28xx-i2c.c | 619 int remain = len, rsize, rsize_max, ret; in em28xx_i2c_read_block() local 623 if (addr + remain > (addr_w16 * 0xff00 + 0xff + 1)) in em28xx_i2c_read_block() 636 while (remain > 0) { in em28xx_i2c_read_block() 637 if (remain > rsize_max) in em28xx_i2c_read_block() 640 rsize = remain; in em28xx_i2c_read_block() 646 remain -= rsize; in em28xx_i2c_read_block()
|
D | em28xx-video.c | 456 int linesdone, currlinedone, offset, lencopy, remain; in em28xx_copy_video() local 463 remain = len; in em28xx_copy_video() 480 lencopy = lencopy > remain ? remain : lencopy; in em28xx_copy_video() 486 remain = (char *)buf->vb_buf + buf->length - in em28xx_copy_video() 488 lencopy = remain; in em28xx_copy_video() 494 remain -= lencopy; in em28xx_copy_video() 496 while (remain > 0) { in em28xx_copy_video() 502 if (bytesperline > remain) in em28xx_copy_video() 503 lencopy = remain; in em28xx_copy_video() 513 lencopy = remain = (char *)buf->vb_buf + buf->length - in em28xx_copy_video() [all …]
|
/linux-4.4.14/drivers/net/wireless/realtek/rtlwifi/rtl8192de/ |
D | fw.c | 107 u8 remain = (u8) (fwlen % 4); in _rtl92d_fill_dummy() local 109 remain = (remain == 0) ? 0 : (4 - remain); in _rtl92d_fill_dummy() 110 while (remain > 0) { in _rtl92d_fill_dummy() 113 remain--; in _rtl92d_fill_dummy()
|
/linux-4.4.14/drivers/net/wireless/realtek/rtlwifi/rtl8192c/ |
D | fw_common.c | 115 u8 remain = (u8) (fwlen % 4); in _rtl92c_fill_dummy() local 117 remain = (remain == 0) ? 0 : (4 - remain); in _rtl92c_fill_dummy() 119 while (remain > 0) { in _rtl92c_fill_dummy() 122 remain--; in _rtl92c_fill_dummy()
|
/linux-4.4.14/drivers/usb/musb/ |
D | musb_virthub.c | 170 long remain = (unsigned long) musb->rh_timer - jiffies; in musb_port_reset() local 172 if (musb->rh_timer > 0 && remain > 0) { in musb_port_reset() 175 &musb->deassert_reset_work, remain); in musb_port_reset()
|
/linux-4.4.14/drivers/staging/rtl8712/ |
D | TODO | 5 - checkpatch.pl fixes - only a few remain
|
/linux-4.4.14/kernel/ |
D | auditfilter.c | 136 char *audit_unpack_string(void **bufp, size_t *remain, size_t len) in audit_unpack_string() argument 140 if (!*bufp || (len == 0) || (len > *remain)) in audit_unpack_string() 156 *remain -= len; in audit_unpack_string() 425 size_t remain = datasz - sizeof(struct audit_rule_data); in audit_data_to_entry() local 492 str = audit_unpack_string(&bufp, &remain, f->val); in audit_data_to_entry() 513 str = audit_unpack_string(&bufp, &remain, f->val); in audit_data_to_entry() 525 str = audit_unpack_string(&bufp, &remain, f->val); in audit_data_to_entry() 543 str = audit_unpack_string(&bufp, &remain, f->val); in audit_data_to_entry() 552 str = audit_unpack_string(&bufp, &remain, f->val); in audit_data_to_entry()
|
/linux-4.4.14/crypto/ |
D | gcm.c | 260 unsigned int remain, in gcm_hash_remain() argument 263 return gcm_hash_update(req, compl, &gcm_zeroes->sg, remain, flags); in gcm_hash_remain() 333 unsigned int remain; in gcm_hash_crypt_continue() local 335 remain = gcm_remain(gctx->cryptlen); in gcm_hash_crypt_continue() 336 if (remain) in gcm_hash_crypt_continue() 337 return gcm_hash_remain(req, remain, in gcm_hash_crypt_continue() 390 unsigned int remain; in gcm_hash_assoc_continue() local 392 remain = gcm_remain(req->assoclen); in gcm_hash_assoc_continue() 393 if (remain) in gcm_hash_assoc_continue() 394 return gcm_hash_remain(req, remain, in gcm_hash_assoc_continue()
|
D | Kconfig | 685 lanes remain unfilled, a flush operation will be initiated to
|
/linux-4.4.14/fs/ocfs2/ |
D | stackglue.c | 506 ssize_t ret = 0, total = 0, remain = PAGE_SIZE; in ocfs2_loaded_cluster_plugins_show() local 511 ret = snprintf(buf, remain, "%s\n", in ocfs2_loaded_cluster_plugins_show() 517 if (ret == remain) { in ocfs2_loaded_cluster_plugins_show() 523 remain -= ret; in ocfs2_loaded_cluster_plugins_show()
|
/linux-4.4.14/tools/testing/selftests/futex/ |
D | README | 25 o The build system shall remain as simple as possible, avoiding any archive or 30 o External dependencies shall remain as minimal as possible. Currently gcc
|
/linux-4.4.14/Documentation/ABI/testing/ |
D | sysfs-driver-intel-rapid-start | 20 remain asleep before waking up to enter hibernation.
|
D | sysfs-devices-power | 193 becomes idle at run time; they want the device to remain
|
D | sysfs-kernel-slab | 296 remain on a node's partial list to avoid the overhead of
|
/linux-4.4.14/drivers/net/wireless/realtek/rtlwifi/rtl8821ae/ |
D | fw.c | 98 u8 remain = (u8)(fwlen % 4); in _rtl8821ae_fill_dummy() local 100 remain = (remain == 0) ? 0 : (4 - remain); in _rtl8821ae_fill_dummy() 102 while (remain > 0) { in _rtl8821ae_fill_dummy() 105 remain--; in _rtl8821ae_fill_dummy()
|
/linux-4.4.14/Documentation/trace/ |
D | function-graph-fold.vim | 8 " functions will not include finish_task_switch(), so folding should remain
|
D | ring-buffer-design.txt | 942 remain in UPDATE and only reset by the outermost writer. This prevents
|
/linux-4.4.14/sound/hda/ |
D | hdac_stream.c | 336 u32 remain = 0x1000 - (ofs & 0xfff); in setup_bdle() local 338 if (chunk > remain) in setup_bdle() 339 chunk = remain; in setup_bdle()
|
/linux-4.4.14/drivers/bluetooth/ |
D | btusb.c | 1542 int remain = fw->size - (*fw_ptr - fw->data); in btusb_setup_intel_patching() local 1551 if (remain > HCI_COMMAND_HDR_SIZE && *fw_ptr[0] != 0x01) { in btusb_setup_intel_patching() 1556 remain--; in btusb_setup_intel_patching() 1560 remain -= sizeof(*cmd); in btusb_setup_intel_patching() 1565 if (remain < cmd->plen) { in btusb_setup_intel_patching() 1581 remain -= cmd->plen; in btusb_setup_intel_patching() 1590 while (remain > HCI_EVENT_HDR_SIZE && *fw_ptr[0] == 0x02) { in btusb_setup_intel_patching() 1592 remain--; in btusb_setup_intel_patching() 1596 remain -= sizeof(*evt); in btusb_setup_intel_patching() 1598 if (remain < evt->plen) { in btusb_setup_intel_patching() [all …]
|
/linux-4.4.14/drivers/net/wireless/libertas/ |
D | if_cs.c | 626 int remain = fw->size - sent; in if_cs_prog_helper() local 628 if (remain < count) in if_cs_prog_helper() 629 count = remain; in if_cs_prog_helper()
|
/linux-4.4.14/drivers/gpu/drm/i915/ |
D | i915_gem.c | 600 ssize_t remain; in i915_gem_shmem_pread() local 609 remain = args->size; in i915_gem_shmem_pread() 623 if (remain <= 0) in i915_gem_shmem_pread() 632 page_length = remain; in i915_gem_shmem_pread() 648 ret = fault_in_multipages_writeable(user_data, remain); in i915_gem_shmem_pread() 667 remain -= page_length; in i915_gem_shmem_pread() 769 ssize_t remain; in i915_gem_gtt_pwrite_fast() local 787 remain = args->size; in i915_gem_gtt_pwrite_fast() 793 while (remain > 0) { in i915_gem_gtt_pwrite_fast() 802 page_length = remain; in i915_gem_gtt_pwrite_fast() [all …]
|
D | i915_gem_execbuffer.c | 493 int remain, ret; in i915_gem_execbuffer_relocate_vma() local 497 remain = entry->relocation_count; in i915_gem_execbuffer_relocate_vma() 498 while (remain) { in i915_gem_execbuffer_relocate_vma() 500 int count = remain; in i915_gem_execbuffer_relocate_vma() 503 remain -= count; in i915_gem_execbuffer_relocate_vma()
|
/linux-4.4.14/Documentation/devicetree/bindings/gpio/ |
D | spear_spics.txt | 5 PL022 control. If chipselect remain under PL022 control then they would be
|
/linux-4.4.14/Documentation/devicetree/bindings/display/exynos/ |
D | exynos5433-decon.txt | 30 it is not needed, but make it remain to use same kind of node
|
/linux-4.4.14/Documentation/hwmon/ |
D | adc128d818 | 35 If an alarm triggers, it will remain triggered until the hardware register
|
D | smsc47m1 | 53 If an alarm triggers, it will remain triggered until the hardware register
|
D | lm80 | 55 If an alarm triggers, it will remain triggered until the hardware register
|
D | gl518sm | 65 If an alarm triggers, it will remain triggered until the hardware register
|
D | lm87 | 50 If an alarm triggers, it will remain triggered until the hardware register
|
D | lm78 | 60 If an alarm triggers, it will remain triggered until the hardware register
|
D | via686a | 58 If an alarm triggers, it will remain triggered until the hardware register
|
D | sis5595 | 92 If an alarm triggers, it will remain triggered until the hardware register
|
D | adm1021 | 81 If an alarm triggers, it will remain triggered until the hardware register
|
D | adm1026 | 67 If an alarm triggers, it will remain triggered until the hardware register
|
D | pc87360 | 163 If an alarm triggers, it will remain triggered until the hardware register
|
D | it87 | 202 If an alarm triggers, it will remain triggered until the hardware register
|
D | w83781d | 144 If an alarm triggers, it will remain triggered until the hardware register
|
/linux-4.4.14/drivers/isdn/hardware/mISDN/ |
D | hfcsusb.c | 1170 int k, tx_offset, num_isoc_packets, sink, remain, current_len, in tx_iso_complete() local 1252 remain = tx_skb->len - *tx_idx; in tx_iso_complete() 1254 remain = 15; /* > not complete */ in tx_iso_complete() 1256 remain = 0; in tx_iso_complete() 1258 if (remain > 0) { in tx_iso_complete() 1265 if (remain < current_len) in tx_iso_complete() 1266 current_len = remain; in tx_iso_complete() 1272 if (current_len == remain) { in tx_iso_complete()
|
/linux-4.4.14/Documentation/devicetree/bindings/net/can/ |
D | m_can.txt | 31 RAM. The remain cells are used to specify how many
|
/linux-4.4.14/Documentation/ |
D | VGA-softcursor.txt | 10 hardware cursor should remain visible or not. There may be other things I have
|
D | kref.txt | 53 structure must remain valid during the kref_get(). 296 But note that the struct kref member needs to remain in valid memory for a
|
D | SubmitChecklist | 32 You should be able to justify all violations that remain in
|
D | dell_rbu.txt | 77 The /sys/class/firmware/dell_rbu/ entries will remain till the following is
|
D | cachetlb.txt | 353 implementation is a nop (and should remain so for all coherent 364 implementation is a nop and should remain so on all coherent
|
D | clk.txt | 234 the disabling means that the driver will remain functional while the issues
|
D | sysfs-rules.txt | 183 the attribute files to remain consistent in the absence of a version
|
D | parport-lowlevel.txt | 931 Once set for a registered device, the timeout will remain at the set
|
D | HOWTO | 256 the real world, a small number of regressions often remain at
|
D | CodingStyle | 890 remain easy to follow.
|
D | SubmittingPatches | 259 You should be able to justify all violations that remain in your
|
/linux-4.4.14/Documentation/video4linux/ |
D | cafe_ccic | 8 QVGA modes work; CIF is there but the colors remain funky. Only the OV7670
|
D | videobuf | 230 remain mapped, videobuf_mmap_free() returns an error code instead. The
|
/linux-4.4.14/drivers/net/wireless/ath/ar5523/ |
D | ar5523_hw.h | 30 __be32 remain; member
|
D | ar5523.c | 1524 txblock->remain = cpu_to_be32(len - mlen); in ar5523_load_firmware()
|
/linux-4.4.14/drivers/net/wireless/ath/wil6210/ |
D | wmi.c | 813 unsigned long remain; in wmi_call() local 824 remain = wait_for_completion_timeout(&wil->wmi_call, in wmi_call() 826 if (0 == remain) { in wmi_call() 834 to_msec - jiffies_to_msecs(remain)); in wmi_call()
|
/linux-4.4.14/Documentation/filesystems/ |
D | dnotify.txt | 25 remain until explicitly removed (by registering for no events).
|
D | directory-locking | 57 attempts to acquire lock on B, A will remain the parent of B until we
|
D | logfs.txt | 222 remain open until all dirty inodes are written. So
|
D | relay.txt | 51 data between userspace and kernel, allowing the kernel side to remain 360 If the current buffer is full, i.e. all sub-buffers remain unconsumed,
|
D | porting | 72 change your internal locking. Otherwise exclusion warranties remain the
|
D | ntfs.txt | 165 Note that files remain accessible via their short file
|
D | sharedsubtree.txt | 53 and the contents of both the mounts remain identical.
|
D | xfs-delayed-logging-design.txt | 472 transactions to remain untouched (i.e. commit an asynchronous transaction, then
|
D | coda.txt | 505 long va_spare; /* remain quad aligned */
|
/linux-4.4.14/Documentation/virtual/kvm/devices/ |
D | s390_flic.txt | 33 All interrupts remain pending, i.e. are not deleted from the list of
|
/linux-4.4.14/drivers/net/hyperv/ |
D | netvsc.c | 716 u32 remain = packet->total_data_buflen % net_device->pkt_align; in netvsc_copy_to_send_buf() local 721 if (packet->is_data_pkt && packet->xmit_more && remain && in netvsc_copy_to_send_buf() 723 padding = net_device->pkt_align - remain; in netvsc_copy_to_send_buf()
|
/linux-4.4.14/drivers/media/dvb-frontends/ |
D | stb0899_algo.c | 804 u32 dec_ratio, dec_rate, decim, remain, intval, btr_nom_freq; in stb0899_dvbs2_calc_srate() local 816 remain = (decim * (1 << (config->btr_nco_bits - 1))) % master_clk; in stb0899_dvbs2_calc_srate() 819 remain = (decim * (1 << (config->btr_nco_bits - 1))) % master_clk; in stb0899_dvbs2_calc_srate() 821 btr_nom_freq = (intval * srate) + ((remain * srate) / master_clk); in stb0899_dvbs2_calc_srate()
|
/linux-4.4.14/drivers/staging/lustre/lustre/obdclass/ |
D | lu_object.c | 1774 unsigned long remain = sc->nr_to_scan, freed = 0; in lu_cache_shrink_scan() local 1793 freed = lu_site_purge(&lu_shrink_env, s, remain); in lu_cache_shrink_scan() 1794 remain -= freed; in lu_cache_shrink_scan() 1804 return sc->nr_to_scan - remain; in lu_cache_shrink_scan()
|
/linux-4.4.14/Documentation/infiniband/ |
D | core_locking.txt | 101 must be complete before this call. The device must remain usable
|
/linux-4.4.14/Documentation/security/ |
D | Yama.txt | 24 exist and remain possible if ptrace is allowed to operate as before.
|
/linux-4.4.14/arch/alpha/kernel/ |
D | osf_sys.c | 1221 struct timeval32 __user *, remain) in SYSCALL_DEFINE2() argument 1233 if (remain) { in SYSCALL_DEFINE2() 1235 if (put_tv32(remain, &tmp)) in SYSCALL_DEFINE2()
|
/linux-4.4.14/Documentation/usb/ |
D | power-management.txt | 168 "suspend", meaning that the device should remain 175 number of milliseconds the device should remain idle 497 possible, the device should remain suspended following the system 509 succeed, it may still remain active and thus cause the system to 568 a shared power well causing power to remain until all ports in the gang 670 '1' the port will remain active/powered regardless of 757 power/pm_qos_no_power_off set to '1' causing ports to always remain
|
D | gadget_configfs.txt | 384 after a gadget is disabled and torn down, the modules remain loaded.
|
/linux-4.4.14/Documentation/devicetree/bindings/sound/ |
D | fsl,ssi.txt | 84 "fsl,mpc8610-dma-channel") can remain. If these nodes are left as
|
/linux-4.4.14/drivers/video/console/ |
D | Kconfig | 130 such that other users of the framebuffer will remain normally
|
/linux-4.4.14/Documentation/frv/ |
D | atomic-ops.txt | 53 condition in ICC3 to remain with the Z flag set, thus causing step (5) to loop back to step (1).
|
D | features.txt | 276 Normally once a context ID is allocated, it will remain affixed to a task 301 The context ID will remain pinned as long as any process is using that
|
D | kernel-ABI.txt | 234 ICC2.C would remain unaffected (ie: 0).
|
/linux-4.4.14/drivers/usb/gadget/udc/ |
D | pxa27x_udc.c | 903 int length, count, remain, i; in write_packet() local 913 remain = length & 0x3; in write_packet() 919 for (i = remain; i > 0; i--) in write_packet() 922 ep_vdbg(ep, "length=%d+%d, udccsr=0x%03x\n", count, remain, in write_packet()
|
/linux-4.4.14/security/selinux/ |
D | Kconfig | 47 SELinux will then remain disabled until the next boot.
|
/linux-4.4.14/arch/arm/kernel/ |
D | entry-header.S | 22 @ This _must_ remain a multiple of 8 for EABI.
|
D | entry-armv.S | 1044 @ Prepare for SVC32 mode. IRQs remain disabled.
|
/linux-4.4.14/Documentation/filesystems/nfs/ |
D | nfs.txt | 47 The string should remain fixed for the lifetime of the client. It can be
|
/linux-4.4.14/drivers/power/ |
D | charger-manager.c | 1948 ktime_t remain; in cm_suspend_complete() local 1952 remain = alarm_expires_remaining(cm_timer); in cm_suspend_complete() 1953 cm_suspend_duration_ms -= ktime_to_ms(remain); in cm_suspend_complete()
|
/linux-4.4.14/drivers/net/wireless/orinoco/ |
D | Kconfig | 48 on startup. The firmware will remain cached until the
|
/linux-4.4.14/Documentation/DocBook/ |
D | 80211.xml.db | 60 API-cfg80211-remain-on-channel-expired
|
/linux-4.4.14/drivers/platform/x86/ |
D | toshiba_acpi.c | 1283 int remain = count; in video_proc_write() local 1306 while (remain) { in video_proc_write() 1316 --remain; in video_proc_write() 1317 } while (remain && *(buffer - 1) != ';'); in video_proc_write()
|
D | Kconfig | 919 then reboots into Linux, the system may remain configured to resume 921 will then remain awake until something triggers another suspend.
|
/linux-4.4.14/drivers/staging/dgap/ |
D | dgap.c | 3517 u16 head, tail, tmask, remain; in dgap_tty_write() local 3600 remain = ch->ch_tstart + ch->ch_tsize - head; in dgap_tty_write() 3602 if (n >= remain) { in dgap_tty_write() 3603 n -= remain; in dgap_tty_write() 3606 memcpy_toio(vaddr, (u8 *)buf, remain); in dgap_tty_write() 3609 buf += remain; in dgap_tty_write() 3617 remain = n; in dgap_tty_write() 3619 memcpy_toio(vaddr, (u8 *)buf, remain); in dgap_tty_write() 3620 head += remain; in dgap_tty_write()
|
/linux-4.4.14/Documentation/vm/ |
D | zswap.txt | 40 pages stored in zswap will remain in the compressed pool until they are
|
D | page_migration | 106 6. The refcount of the page is examined and we back out if references remain
|
D | numa_memory_policy.txt | 58 changes its task policy remain where they were allocated based on 96 is installed. Any pages already faulted into the VMA range remain
|
D | hugetlbpage.txt | 257 Note that the number of overcommit and reserve pages remain global quantities,
|
/linux-4.4.14/arch/m68k/ifpsp060/ |
D | ilsp.doc | 74 The entry point addresses at the beginning of the package will remain
|
D | fplsp.doc | 75 The entry point addresses at the beginning of the package will remain
|
D | TEST.DOC | 175 must remain system independent.
|
/linux-4.4.14/Documentation/x86/ |
D | pat.txt | 121 combine areas of IO memory desired to remain uncacheable with areas where
|
/linux-4.4.14/net/wireless/ |
D | Kconfig | 83 and willing to ensure your system will remain regulatory
|
/linux-4.4.14/drivers/block/paride/ |
D | Transition-notes | 128 can be taken to callers as long as they remain within the area.
|
/linux-4.4.14/Documentation/networking/ |
D | netconsole.txt | 209 be more automatic, and some fundamental limitations will remain:
|
D | z8530drv.txt | 478 The time the transmitter will remain keyed after the last 497 2: Like 1, but the transmitter will remain keyed, also
|
D | openvswitch.txt | 31 kernel module to remain relevant, it must be possible for newer
|
D | l2tp.txt | 98 must remain open while the tunnel is active. Opening this tunnel
|
D | vortex.txt | 447 applied, etc. At the end of it all, the problem may even remain
|
D | LICENSE.qlcnic | 188 parties remain in full compliance.
|
D | LICENSE.qlge | 188 parties remain in full compliance.
|
D | ip-sysctl.txt | 285 application) connection will remain in the FIN_WAIT_2 state 428 when RTO retransmissions remain unacknowledged. 473 when RTO retransmissions remain unacknowledged.
|
D | filter.txt | 30 remain on that socket.
|
/linux-4.4.14/fs/jffs2/ |
D | README.Locking | 6 JFFS2. It is not expected to remain perfectly up to date, but ought to
|
/linux-4.4.14/drivers/net/usb/ |
D | r8152.c | 1550 int remain, ret; in r8152_tx_agg_fill() local 1561 remain = agg_buf_sz; in r8152_tx_agg_fill() 1563 while (remain >= ETH_ZLEN + sizeof(struct tx_desc)) { in r8152_tx_agg_fill() 1575 if (len > remain) { in r8152_tx_agg_fill() 1610 remain = agg_buf_sz - (int)(tx_agg_align(tx_data) - agg->head); in r8152_tx_agg_fill()
|
/linux-4.4.14/Documentation/cgroups/ |
D | cgroups.txt | 220 will remain active even though unmounted; if there are no 598 fork. If this method returns 0 (success) then this should remain valid 608 "cgroup.subtree_control" but should remain enabled because other
|
D | memory.txt | 436 remain charged to it, the charge is dropped when the page is freed or
|
D | cpusets.txt | 604 remain within the new cpusets memory placement. If the task was using
|
/linux-4.4.14/Documentation/scheduler/ |
D | completion.txt | 91 work threads remains in-scope, and no references remain to on-stack data
|
/linux-4.4.14/Documentation/scsi/ |
D | FlashPoint.txt | 118 However, BusLogic does remain committed to providing a high performance
|
D | scsi_fc_transport.txt | 396 The vport will remain in this state until it is deleted or re-enabled. 416 removal. If the LLDD delete request fails, the vport object will remain,
|
D | sym53c8xx_2.txt | 191 instructions that address the on-chip RAM (8k) remain internal to the chip. 702 "diff" support. ("led pin" support for Symbios compatible cards can remain
|
D | LICENSE.qla4xxx | 189 parties remain in full compliance.
|
D | LICENSE.qla2xxx | 190 parties remain in full compliance.
|
D | ncr53c8xx.txt | 216 instructions that address the on-chip RAM (8k) remain internal to the chip. 1475 "diff" support. ("led pin" support for Symbios compatible cards can remain
|
D | scsi_mid_low_api.txt | 118 and scsi_unregister() functions remain to support legacy LLDs that use
|
/linux-4.4.14/Documentation/virtual/kvm/arm/ |
D | vgic-mapped-irqs.txt | 86 line. This means that the interrupt will remain pending on the physical
|
/linux-4.4.14/arch/arm64/ |
D | Kconfig | 496 # These have to remain sorted largest to smallest 690 The feature is detected at runtime, and will remain as a 'nop'
|
/linux-4.4.14/Documentation/sound/alsa/ |
D | compress_offload.txt | 127 the settings should remain the exception.
|
/linux-4.4.14/Documentation/arm64/ |
D | booting.txt | 228 - CPUs with a "psci" enable method should remain outside of
|
/linux-4.4.14/Documentation/fb/ |
D | fbcon.txt | 147 use the framebuffer will remain at their 'normal'orientation.
|
/linux-4.4.14/drivers/mtd/onenand/ |
D | onenand_base.c | 642 unsigned long remain, timeout; in onenand_try_interrupt_wait() local 648 remain = wait_for_completion_timeout(&this->complete, timeout); in onenand_try_interrupt_wait() 649 if (!remain) { in onenand_try_interrupt_wait()
|
/linux-4.4.14/arch/unicore32/kernel/ |
D | entry.S | 706 @ Prepare for PRIV mode. INTRs remain disabled.
|
/linux-4.4.14/Documentation/development-process/ |
D | 2.Process | 190 continue to take responsibility for the code if it is to remain useful 301 being added to the kernel tree live. They remain in drivers/staging while
|
/linux-4.4.14/Documentation/device-mapper/ |
D | cache.txt | 83 blocks should remain clean.
|
/linux-4.4.14/Documentation/virtual/kvm/ |
D | timekeeping.txt | 385 It is recommended not to trust the TSCs to remain synchronized on NUMA or 463 it may very well make that assumption. It may expect it to remain true to very
|
/linux-4.4.14/Documentation/arm/ |
D | cluster-pm-race-avoidance.txt | 335 The cluster will remain in this state until a policy decision is
|
/linux-4.4.14/Documentation/filesystems/caching/ |
D | fscache.txt | 101 rather to let the netfs remain oblivious.
|
/linux-4.4.14/Documentation/timers/ |
D | NO_HZ.txt | 123 adaptive-tick CPUs: At least one non-adaptive-tick CPU must remain
|
/linux-4.4.14/drivers/staging/rtl8192u/ |
D | copying | 178 parties remain in full compliance.
|
/linux-4.4.14/Documentation/power/ |
D | swsusp.txt | 287 for suspend. If you don't need swap after resume these data can remain
|
D | runtime_pm.txt | 798 think it will remain in that state for a substantial time. A common heuristic 799 says that a device which hasn't been used for a while is liable to remain
|
D | devices.txt | 502 the contents of memory should remain undisturbed while this happens, so that the
|
/linux-4.4.14/Documentation/s390/ |
D | cds.txt | 349 However, this should be used with care as it implies the channel will remain
|
/linux-4.4.14/tools/usb/usbip/ |
D | COPYING | 178 parties remain in full compliance.
|
/linux-4.4.14/Documentation/input/ |
D | joystick.txt | 154 This way, after the next reboot your joystick will remain calibrated. You
|
/linux-4.4.14/drivers/staging/rtl8192e/ |
D | license | 180 have their licenses terminated so long as such parties remain in full
|
/linux-4.4.14/ |
D | COPYING | 194 parties remain in full compliance.
|
/linux-4.4.14/kernel/trace/ |
D | Kconfig | 263 the main tracing buffer, and the other CPU buffers remain the same.
|
/linux-4.4.14/Documentation/powerpc/ |
D | hvcs.txt | 262 adapter is not guaranteed to remain the same across system reboots. Look
|
/linux-4.4.14/fs/cifs/ |
D | cifssmb.c | 480 int val, seconds, remain, result; in decode_lanman_negprot_rsp() local 491 remain = seconds % MIN_TZ_ADJ; in decode_lanman_negprot_rsp() 492 if (remain >= (MIN_TZ_ADJ / 2)) in decode_lanman_negprot_rsp()
|
/linux-4.4.14/drivers/gpio/ |
D | Kconfig | 535 the Intel SCH suspend power supply. These GPIOs remain
|
/linux-4.4.14/Documentation/RCU/ |
D | whatisRCU.txt | 143 remain unreclaimed for the full duration of that critical section.
|
/linux-4.4.14/drivers/staging/speakup/ |
D | spkguide.txt | 1342 that this Transparent copy will remain thus accessible at the stated 1525 parties remain in full compliance.
|
/linux-4.4.14/drivers/mfd/ |
D | Kconfig | 879 remain unchanged when IC changes. Binding of the functions to
|
/linux-4.4.14/drivers/watchdog/ |
D | Kconfig | 343 and/or ATUe configuration registers will remain intact, but if
|
/linux-4.4.14/Documentation/filesystems/cifs/ |
D | CHANGES | 1053 6) Moved negotiate, treeDisconnect and uloggoffX (only tConx and SessSetup remain in connect.c) to …
|
/linux-4.4.14/Documentation/laptops/ |
D | thinkpad-acpi.txt | 1066 many times as you want, and the sound will remain mute.
|
/linux-4.4.14/arch/arm/ |
D | Kconfig | 1702 Their lower 1MB needs to remain accessible for the vectors, but
|