Home
last modified time | relevance | path

Searched refs:remain (Results 1 – 200 of 210) sorted by relevance

12

/linux-4.4.14/drivers/staging/unisys/visorbus/
Dvbusdeviceinfo.h52 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 …]
Dvisorbus_main.c602 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/
Duaccess.c93 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/
Dfw.c63 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/
Dsetup.c104 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/
Dfbtft-bus.c129 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 …]
Dfb_ra8875.c261 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/
Dumcast_kern.c73 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()
Dnet_user.c52 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()
Dpcap_kern.c56 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()
Dvde_kern.c73 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()
Ddaemon_kern.c64 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()
Dnet_kern.c897 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/
Dqxl_image.c136 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/
Dstk1160-video.c117 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/
Dmoxart-mmc.c164 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 …]
Dmmci.c919 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 …]
Dwbsd.h159 unsigned int remain; /* Data left in curren entry */ member
Dwbsd.c249 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()
Dmmci.h232 int (*get_rx_fifocnt)(struct mmci_host *h, u32 status, int remain);
Ddw_mmc.c2223 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/
Dspi-sh.c166 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()
Dspi-rockchip.c381 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/
Dgdm_sdio.c215 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/
Dgenalloc.c276 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/
Dudbg.c106 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/
Dfw_common.c102 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/
Drt5677-spi.c80 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/
Dmemchr.S72 # 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
Dev6-memchr.S71 # 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/
Dgdm_tty.c182 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/
Dar-output.c594 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()
Dar-internal.h87 int remain; /* amount of space remaining for next write */ member
/linux-4.4.14/arch/x86/kernel/
Dkdebugfs.c34 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/
Dfile.c230 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/
Dhcd_ddma.c805 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/
Dsyncpt.c242 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/
Dau0828-video.c330 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/
Dfw.c100 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/
Dqueue.c461 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/
Dcheckpatch.pl1053 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/
Dchaoskey.c374 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/
Dtracefile.c273 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/
Ddgnc_tty.c457 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/
Dmem.c185 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/
Dfw.c96 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/
Dem28xx-i2c.c619 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()
Dem28xx-video.c456 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/
Dfw.c107 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/
Dfw_common.c115 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/
Dmusb_virthub.c170 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/
DTODO5 - checkpatch.pl fixes - only a few remain
/linux-4.4.14/kernel/
Dauditfilter.c136 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/
Dgcm.c260 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()
DKconfig685 lanes remain unfilled, a flush operation will be initiated to
/linux-4.4.14/fs/ocfs2/
Dstackglue.c506 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/
DREADME25 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/
Dsysfs-driver-intel-rapid-start20 remain asleep before waking up to enter hibernation.
Dsysfs-devices-power193 becomes idle at run time; they want the device to remain
Dsysfs-kernel-slab296 remain on a node's partial list to avoid the overhead of
/linux-4.4.14/drivers/net/wireless/realtek/rtlwifi/rtl8821ae/
Dfw.c98 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/
Dfunction-graph-fold.vim8 " functions will not include finish_task_switch(), so folding should remain
Dring-buffer-design.txt942 remain in UPDATE and only reset by the outermost writer. This prevents
/linux-4.4.14/sound/hda/
Dhdac_stream.c336 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/
Dbtusb.c1542 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/
Dif_cs.c626 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/
Di915_gem.c600 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 …]
Di915_gem_execbuffer.c493 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/
Dspear_spics.txt5 PL022 control. If chipselect remain under PL022 control then they would be
/linux-4.4.14/Documentation/devicetree/bindings/display/exynos/
Dexynos5433-decon.txt30 it is not needed, but make it remain to use same kind of node
/linux-4.4.14/Documentation/hwmon/
Dadc128d81835 If an alarm triggers, it will remain triggered until the hardware register
Dsmsc47m153 If an alarm triggers, it will remain triggered until the hardware register
Dlm8055 If an alarm triggers, it will remain triggered until the hardware register
Dgl518sm65 If an alarm triggers, it will remain triggered until the hardware register
Dlm8750 If an alarm triggers, it will remain triggered until the hardware register
Dlm7860 If an alarm triggers, it will remain triggered until the hardware register
Dvia686a58 If an alarm triggers, it will remain triggered until the hardware register
Dsis559592 If an alarm triggers, it will remain triggered until the hardware register
Dadm102181 If an alarm triggers, it will remain triggered until the hardware register
Dadm102667 If an alarm triggers, it will remain triggered until the hardware register
Dpc87360163 If an alarm triggers, it will remain triggered until the hardware register
Dit87202 If an alarm triggers, it will remain triggered until the hardware register
Dw83781d144 If an alarm triggers, it will remain triggered until the hardware register
/linux-4.4.14/drivers/isdn/hardware/mISDN/
Dhfcsusb.c1170 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/
Dm_can.txt31 RAM. The remain cells are used to specify how many
/linux-4.4.14/Documentation/
DVGA-softcursor.txt10 hardware cursor should remain visible or not. There may be other things I have
Dkref.txt53 structure must remain valid during the kref_get().
296 But note that the struct kref member needs to remain in valid memory for a
DSubmitChecklist32 You should be able to justify all violations that remain in
Ddell_rbu.txt77 The /sys/class/firmware/dell_rbu/ entries will remain till the following is
Dcachetlb.txt353 implementation is a nop (and should remain so for all coherent
364 implementation is a nop and should remain so on all coherent
Dclk.txt234 the disabling means that the driver will remain functional while the issues
Dsysfs-rules.txt183 the attribute files to remain consistent in the absence of a version
Dparport-lowlevel.txt931 Once set for a registered device, the timeout will remain at the set
DHOWTO256 the real world, a small number of regressions often remain at
DCodingStyle890 remain easy to follow.
DSubmittingPatches259 You should be able to justify all violations that remain in your
/linux-4.4.14/Documentation/video4linux/
Dcafe_ccic8 QVGA modes work; CIF is there but the colors remain funky. Only the OV7670
Dvideobuf230 remain mapped, videobuf_mmap_free() returns an error code instead. The
/linux-4.4.14/drivers/net/wireless/ath/ar5523/
Dar5523_hw.h30 __be32 remain; member
Dar5523.c1524 txblock->remain = cpu_to_be32(len - mlen); in ar5523_load_firmware()
/linux-4.4.14/drivers/net/wireless/ath/wil6210/
Dwmi.c813 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/
Ddnotify.txt25 remain until explicitly removed (by registering for no events).
Ddirectory-locking57 attempts to acquire lock on B, A will remain the parent of B until we
Dlogfs.txt222 remain open until all dirty inodes are written. So
Drelay.txt51 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,
Dporting72 change your internal locking. Otherwise exclusion warranties remain the
Dntfs.txt165 Note that files remain accessible via their short file
Dsharedsubtree.txt53 and the contents of both the mounts remain identical.
Dxfs-delayed-logging-design.txt472 transactions to remain untouched (i.e. commit an asynchronous transaction, then
Dcoda.txt505 long va_spare; /* remain quad aligned */
/linux-4.4.14/Documentation/virtual/kvm/devices/
Ds390_flic.txt33 All interrupts remain pending, i.e. are not deleted from the list of
/linux-4.4.14/drivers/net/hyperv/
Dnetvsc.c716 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/
Dstb0899_algo.c804 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/
Dlu_object.c1774 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/
Dcore_locking.txt101 must be complete before this call. The device must remain usable
/linux-4.4.14/Documentation/security/
DYama.txt24 exist and remain possible if ptrace is allowed to operate as before.
/linux-4.4.14/arch/alpha/kernel/
Dosf_sys.c1221 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/
Dpower-management.txt168 "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
Dgadget_configfs.txt384 after a gadget is disabled and torn down, the modules remain loaded.
/linux-4.4.14/Documentation/devicetree/bindings/sound/
Dfsl,ssi.txt84 "fsl,mpc8610-dma-channel") can remain. If these nodes are left as
/linux-4.4.14/drivers/video/console/
DKconfig130 such that other users of the framebuffer will remain normally
/linux-4.4.14/Documentation/frv/
Datomic-ops.txt53 condition in ICC3 to remain with the Z flag set, thus causing step (5) to loop back to step (1).
Dfeatures.txt276 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
Dkernel-ABI.txt234 ICC2.C would remain unaffected (ie: 0).
/linux-4.4.14/drivers/usb/gadget/udc/
Dpxa27x_udc.c903 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/
DKconfig47 SELinux will then remain disabled until the next boot.
/linux-4.4.14/arch/arm/kernel/
Dentry-header.S22 @ This _must_ remain a multiple of 8 for EABI.
Dentry-armv.S1044 @ Prepare for SVC32 mode. IRQs remain disabled.
/linux-4.4.14/Documentation/filesystems/nfs/
Dnfs.txt47 The string should remain fixed for the lifetime of the client. It can be
/linux-4.4.14/drivers/power/
Dcharger-manager.c1948 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/
DKconfig48 on startup. The firmware will remain cached until the
/linux-4.4.14/Documentation/DocBook/
D80211.xml.db60 API-cfg80211-remain-on-channel-expired
/linux-4.4.14/drivers/platform/x86/
Dtoshiba_acpi.c1283 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()
DKconfig919 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/
Ddgap.c3517 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/
Dzswap.txt40 pages stored in zswap will remain in the compressed pool until they are
Dpage_migration106 6. The refcount of the page is examined and we back out if references remain
Dnuma_memory_policy.txt58 changes its task policy remain where they were allocated based on
96 is installed. Any pages already faulted into the VMA range remain
Dhugetlbpage.txt257 Note that the number of overcommit and reserve pages remain global quantities,
/linux-4.4.14/arch/m68k/ifpsp060/
Dilsp.doc74 The entry point addresses at the beginning of the package will remain
Dfplsp.doc75 The entry point addresses at the beginning of the package will remain
DTEST.DOC175 must remain system independent.
/linux-4.4.14/Documentation/x86/
Dpat.txt121 combine areas of IO memory desired to remain uncacheable with areas where
/linux-4.4.14/net/wireless/
DKconfig83 and willing to ensure your system will remain regulatory
/linux-4.4.14/drivers/block/paride/
DTransition-notes128 can be taken to callers as long as they remain within the area.
/linux-4.4.14/Documentation/networking/
Dnetconsole.txt209 be more automatic, and some fundamental limitations will remain:
Dz8530drv.txt478 The time the transmitter will remain keyed after the last
497 2: Like 1, but the transmitter will remain keyed, also
Dopenvswitch.txt31 kernel module to remain relevant, it must be possible for newer
Dl2tp.txt98 must remain open while the tunnel is active. Opening this tunnel
Dvortex.txt447 applied, etc. At the end of it all, the problem may even remain
DLICENSE.qlcnic188 parties remain in full compliance.
DLICENSE.qlge188 parties remain in full compliance.
Dip-sysctl.txt285 application) connection will remain in the FIN_WAIT_2 state
428 when RTO retransmissions remain unacknowledged.
473 when RTO retransmissions remain unacknowledged.
Dfilter.txt30 remain on that socket.
/linux-4.4.14/fs/jffs2/
DREADME.Locking6 JFFS2. It is not expected to remain perfectly up to date, but ought to
/linux-4.4.14/drivers/net/usb/
Dr8152.c1550 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/
Dcgroups.txt220 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
Dmemory.txt436 remain charged to it, the charge is dropped when the page is freed or
Dcpusets.txt604 remain within the new cpusets memory placement. If the task was using
/linux-4.4.14/Documentation/scheduler/
Dcompletion.txt91 work threads remains in-scope, and no references remain to on-stack data
/linux-4.4.14/Documentation/scsi/
DFlashPoint.txt118 However, BusLogic does remain committed to providing a high performance
Dscsi_fc_transport.txt396 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,
Dsym53c8xx_2.txt191 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
DLICENSE.qla4xxx189 parties remain in full compliance.
DLICENSE.qla2xxx190 parties remain in full compliance.
Dncr53c8xx.txt216 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
Dscsi_mid_low_api.txt118 and scsi_unregister() functions remain to support legacy LLDs that use
/linux-4.4.14/Documentation/virtual/kvm/arm/
Dvgic-mapped-irqs.txt86 line. This means that the interrupt will remain pending on the physical
/linux-4.4.14/arch/arm64/
DKconfig496 # 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/
Dcompress_offload.txt127 the settings should remain the exception.
/linux-4.4.14/Documentation/arm64/
Dbooting.txt228 - CPUs with a "psci" enable method should remain outside of
/linux-4.4.14/Documentation/fb/
Dfbcon.txt147 use the framebuffer will remain at their 'normal'orientation.
/linux-4.4.14/drivers/mtd/onenand/
Donenand_base.c642 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/
Dentry.S706 @ Prepare for PRIV mode. INTRs remain disabled.
/linux-4.4.14/Documentation/development-process/
D2.Process190 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/
Dcache.txt83 blocks should remain clean.
/linux-4.4.14/Documentation/virtual/kvm/
Dtimekeeping.txt385 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/
Dcluster-pm-race-avoidance.txt335 The cluster will remain in this state until a policy decision is
/linux-4.4.14/Documentation/filesystems/caching/
Dfscache.txt101 rather to let the netfs remain oblivious.
/linux-4.4.14/Documentation/timers/
DNO_HZ.txt123 adaptive-tick CPUs: At least one non-adaptive-tick CPU must remain
/linux-4.4.14/drivers/staging/rtl8192u/
Dcopying178 parties remain in full compliance.
/linux-4.4.14/Documentation/power/
Dswsusp.txt287 for suspend. If you don't need swap after resume these data can remain
Druntime_pm.txt798 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
Ddevices.txt502 the contents of memory should remain undisturbed while this happens, so that the
/linux-4.4.14/Documentation/s390/
Dcds.txt349 However, this should be used with care as it implies the channel will remain
/linux-4.4.14/tools/usb/usbip/
DCOPYING178 parties remain in full compliance.
/linux-4.4.14/Documentation/input/
Djoystick.txt154 This way, after the next reboot your joystick will remain calibrated. You
/linux-4.4.14/drivers/staging/rtl8192e/
Dlicense180 have their licenses terminated so long as such parties remain in full
/linux-4.4.14/
DCOPYING194 parties remain in full compliance.
/linux-4.4.14/kernel/trace/
DKconfig263 the main tracing buffer, and the other CPU buffers remain the same.
/linux-4.4.14/Documentation/powerpc/
Dhvcs.txt262 adapter is not guaranteed to remain the same across system reboots. Look
/linux-4.4.14/fs/cifs/
Dcifssmb.c480 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/
DKconfig535 the Intel SCH suspend power supply. These GPIOs remain
/linux-4.4.14/Documentation/RCU/
DwhatisRCU.txt143 remain unreclaimed for the full duration of that critical section.
/linux-4.4.14/drivers/staging/speakup/
Dspkguide.txt1342 that this Transparent copy will remain thus accessible at the stated
1525 parties remain in full compliance.
/linux-4.4.14/drivers/mfd/
DKconfig879 remain unchanged when IC changes. Binding of the functions to
/linux-4.4.14/drivers/watchdog/
DKconfig343 and/or ATUe configuration registers will remain intact, but if
/linux-4.4.14/Documentation/filesystems/cifs/
DCHANGES1053 6) Moved negotiate, treeDisconnect and uloggoffX (only tConx and SessSetup remain in connect.c) to …
/linux-4.4.14/Documentation/laptops/
Dthinkpad-acpi.txt1066 many times as you want, and the sound will remain mute.
/linux-4.4.14/arch/arm/
DKconfig1702 Their lower 1MB needs to remain accessible for the vectors, but

12