/linux-4.1.27/drivers/staging/unisys/common-spar/include/ |
H A D | vbusdeviceinfo.h | 39 * the buffer at <p>, which is <remain> bytes long, ensuring never to 48 * Pass <p> == NULL and <remain> == 0 for this special behavior. In this 53 vbuschannel_sanitize_buffer(char *p, int remain, char *src, int srcmax) vbuschannel_sanitize_buffer() argument 61 if (remain > 0) { vbuschannel_sanitize_buffer() 64 remain--; vbuschannel_sanitize_buffer() 71 if (remain > 0) { vbuschannel_sanitize_buffer() 74 remain--; vbuschannel_sanitize_buffer() 88 #define VBUSCHANNEL_ADDACHAR(ch, p, remain, chars) \ 90 if (remain <= 0) \ 93 p++; chars++; remain--; \ 97 * at <p>, writing at most <remain> bytes. Note there is NO '\0' termination 106 vbuschannel_itoa(char *p, int remain, int num) vbuschannel_itoa() argument 114 if (remain <= 0) vbuschannel_itoa() 126 if (remain < digits) { vbuschannel_itoa() 129 for (i = 0; i < remain; i++, p++) vbuschannel_itoa() 131 return remain; vbuschannel_itoa() 145 * writing at most <remain> bytes. Note there is NO '\0' termination 154 char *p, int remain, int devix) vbuschannel_devinfo_to_string() 167 VBUSCHANNEL_ADDACHAR('[', p, remain, chars); vbuschannel_devinfo_to_string() 168 x = vbuschannel_itoa(p, remain, devix); vbuschannel_devinfo_to_string() 170 remain -= x; vbuschannel_devinfo_to_string() 172 VBUSCHANNEL_ADDACHAR(']', p, remain, chars); vbuschannel_devinfo_to_string() 174 VBUSCHANNEL_ADDACHAR(' ', p, remain, chars); vbuschannel_devinfo_to_string() 175 VBUSCHANNEL_ADDACHAR(' ', p, remain, chars); vbuschannel_devinfo_to_string() 176 VBUSCHANNEL_ADDACHAR(' ', p, remain, chars); vbuschannel_devinfo_to_string() 180 x = vbuschannel_sanitize_buffer(p, remain, psrc, nsrc); vbuschannel_devinfo_to_string() 182 remain -= x; vbuschannel_devinfo_to_string() 186 VBUSCHANNEL_ADDACHAR(' ', p, remain, chars); vbuschannel_devinfo_to_string() 187 VBUSCHANNEL_ADDACHAR(' ', p, remain, chars); vbuschannel_devinfo_to_string() 192 x = vbuschannel_sanitize_buffer(p, remain, psrc, nsrc); vbuschannel_devinfo_to_string() 194 remain -= x; vbuschannel_devinfo_to_string() 198 VBUSCHANNEL_ADDACHAR(' ', p, remain, chars); vbuschannel_devinfo_to_string() 199 VBUSCHANNEL_ADDACHAR(' ', p, remain, chars); vbuschannel_devinfo_to_string() 204 x = vbuschannel_sanitize_buffer(p, remain, psrc, nsrc); vbuschannel_devinfo_to_string() 206 remain -= x; vbuschannel_devinfo_to_string() 208 VBUSCHANNEL_ADDACHAR('\n', p, remain, chars); vbuschannel_devinfo_to_string() 153 vbuschannel_devinfo_to_string(struct ultra_vbus_deviceinfo *devinfo, char *p, int remain, int devix) vbuschannel_devinfo_to_string() argument
|
/linux-4.1.27/arch/um/kernel/skas/ |
H A D | uaccess.c | 93 int size, remain, n; buffer_op() local 96 remain = len; buffer_op() 100 remain = (n < 0 ? remain : 0); buffer_op() 105 remain -= size; buffer_op() 106 if (remain == 0) buffer_op() 109 while (addr < ((addr + remain) & PAGE_MASK)) { buffer_op() 112 remain = (n < 0 ? remain : 0); buffer_op() 117 remain -= PAGE_SIZE; buffer_op() 119 if (remain == 0) buffer_op() 122 n = do_op_one_page(addr, remain, is_write, op, arg); buffer_op() 124 remain = (n < 0 ? remain : 0); buffer_op() 130 return remain; buffer_op()
|
/linux-4.1.27/drivers/staging/rtl8188eu/hal/ |
H A D | fw.c | 63 u32 i, offset, blk_cnt, remain; _rtl88e_fw_block_write() local 66 remain = size % blk_sz; _rtl88e_fw_block_write() 74 if (remain) { _rtl88e_fw_block_write() 77 for (i = 0; i < remain; i++) { _rtl88e_fw_block_write() 87 u8 remain = (u8)(fwlen % 4); _rtl88e_fill_dummy() local 89 remain = (remain == 0) ? 0 : (4 - remain); _rtl88e_fill_dummy() 91 while (remain > 0) { _rtl88e_fill_dummy() 94 remain--; _rtl88e_fill_dummy() 115 u32 page_no, remain; _rtl88e_write_fw() local 121 remain = size % FW_8192C_PAGE_SIZE; _rtl88e_write_fw() 129 if (remain) { _rtl88e_write_fw() 132 _rtl88e_fw_page_write(adapt, page, (buf_ptr + offset), remain); _rtl88e_write_fw()
|
/linux-4.1.27/drivers/staging/fbtft/ |
H A D | fbtft-bus.c | 134 size_t remain; fbtft_write_vmem16_bus8() local 144 remain = len / 2; fbtft_write_vmem16_bus8() 164 while (remain) { fbtft_write_vmem16_bus8() 165 to_copy = remain > tx_array_size ? tx_array_size : remain; fbtft_write_vmem16_bus8() 166 dev_dbg(par->info->device, " to_copy=%zu, remain=%zu\n", fbtft_write_vmem16_bus8() 167 to_copy, remain - to_copy); fbtft_write_vmem16_bus8() 177 remain -= to_copy; fbtft_write_vmem16_bus8() 189 size_t remain; fbtft_write_vmem16_bus9() local 203 remain = len; fbtft_write_vmem16_bus9() 208 while (remain) { fbtft_write_vmem16_bus9() 209 to_copy = remain > tx_array_size ? tx_array_size : remain; fbtft_write_vmem16_bus9() 210 dev_dbg(par->info->device, " to_copy=%zu, remain=%zu\n", fbtft_write_vmem16_bus9() 211 to_copy, remain - to_copy); fbtft_write_vmem16_bus9() 226 remain -= to_copy; fbtft_write_vmem16_bus9()
|
H A D | fb_ra8875.c | 275 size_t remain; write_vmem16_bus8() local 285 remain = len / 2; write_vmem16_bus8() 293 while (remain) { write_vmem16_bus8() 294 to_copy = remain > tx_array_size ? tx_array_size : remain; write_vmem16_bus8() 295 dev_dbg(par->info->device, " to_copy=%zu, remain=%zu\n", write_vmem16_bus8() 296 to_copy, remain - to_copy); write_vmem16_bus8() 306 remain -= to_copy; write_vmem16_bus8()
|
/linux-4.1.27/arch/um/drivers/ |
H A D | net_user.c | 52 int remain, ret, expected; read_output() local 62 ret = read(fd, &remain, sizeof(remain)); read_output() 64 if (ret != sizeof(remain)) { read_output() 67 expected = sizeof(remain); read_output() 72 while (remain != 0) { read_output() 73 expected = (remain < len) ? remain : len; read_output() 81 remain -= ret; read_output()
|
H A D | umcast_kern.c | 73 char *port_str = NULL, *ttl_str = NULL, *remain; mcast_setup() local 81 remain = split_if_spec(str, mac_out, &init->addr, &port_str, &ttl_str, mcast_setup() 83 if (remain != NULL) { mcast_setup() 85 "specification : '%s'\n", remain); mcast_setup() 119 char *lport_str = NULL, *rport_str = NULL, *remain; ucast_setup() local 127 remain = split_if_spec(str, mac_out, &init->addr, ucast_setup() 129 if (remain != NULL) { ucast_setup() 131 "specification : '%s'\n", remain); ucast_setup()
|
H A D | pcap_kern.c | 56 char *remain, *host_if = NULL, *options[2] = { NULL, NULL }; pcap_setup() local 65 remain = split_if_spec(str, &host_if, &init->filter, pcap_setup() 67 if (remain != NULL) { pcap_setup() 69 "specification : '%s'\n", remain); pcap_setup()
|
H A D | vde_kern.c | 73 char *remain, *port_str = NULL, *mode_str = NULL, *last; vde_setup() local 82 remain = split_if_spec(str, &init->vde_switch, mac_out, &port_str, vde_setup() 85 if (remain != NULL) vde_setup() 87 "'%s'\n", remain); vde_setup()
|
H A D | daemon_kern.c | 64 char *remain; daemon_setup() local 70 remain = split_if_spec(str, mac_out, &init->sock_type, &init->ctl_sock, daemon_setup() 72 if (remain != NULL) daemon_setup()
|
H A D | net_kern.c | 896 char *remain; tap_setup_common() local 898 remain = split_if_spec(str, dev_name, mac_out, gate_addr, NULL); tap_setup_common() 899 if (remain != NULL) { tap_setup_common() 901 "specification : '%s'\n", remain); tap_setup_common()
|
/linux-4.1.27/arch/mips/netlogic/xlr/ |
H A D | setup.c | 104 int i, remain, len; build_arcs_cmdline() local 107 remain = sizeof(arcs_cmdline) - 1; build_arcs_cmdline() 112 if (len + 1 > remain) build_arcs_cmdline() 116 remain -= len + 1; build_arcs_cmdline() 123 if (len > remain) build_arcs_cmdline() 126 remain -= len; build_arcs_cmdline() 132 if (len > remain) build_arcs_cmdline() 135 remain -= len; build_arcs_cmdline()
|
/linux-4.1.27/drivers/gpu/drm/qxl/ |
H A D | qxl_image.c | 136 int remain; qxl_image_init_helper() local 140 remain = linesize * height; qxl_image_init_helper() 144 while (remain > 0) { qxl_image_init_helper() 155 size = min(size, remain); qxl_image_init_helper() 161 remain -= size; qxl_image_init_helper() 168 remain = linesize; qxl_image_init_helper() 171 while (remain > 0) { qxl_image_init_helper() 174 size = min((int)(PAGE_SIZE - page_offset), remain); qxl_image_init_helper() 180 remain -= size; qxl_image_init_helper()
|
/linux-4.1.27/drivers/mmc/host/ |
H A D | moxart-mmc.c | 164 int remain; moxart_next_sg() local 172 remain = host->data_len - data->bytes_xfered; moxart_next_sg() 173 if (remain > 0 && remain < host->data_remain) moxart_next_sg() 174 host->data_remain = remain; moxart_next_sg() 311 u32 *sgp, len = 0, remain, status; moxart_transfer_pio() local 317 remain = host->data_remain; moxart_transfer_pio() 320 while (remain > 0) { moxart_transfer_pio() 327 for (len = 0; len < remain && len < host->fifo_width;) { moxart_transfer_pio() 332 remain -= len; moxart_transfer_pio() 336 while (remain > 0) { moxart_transfer_pio() 343 for (len = 0; len < remain && len < host->fifo_width;) { moxart_transfer_pio() 354 remain -= len; moxart_transfer_pio() 358 data->bytes_xfered += host->data_remain - remain; moxart_transfer_pio() 359 host->data_remain = remain; moxart_transfer_pio()
|
H A D | mmci.c | 919 u32 remain, success; mmci_data_irq() local 934 remain = readl(host->base + MMCIDATACNT); mmci_data_irq() 935 success = data->blksz * data->blocks - remain; mmci_data_irq() 1047 static int mmci_get_rx_fifocnt(struct mmci_host *host, u32 status, int remain) mmci_get_rx_fifocnt() argument 1049 return remain - (readl(host->base + MMCIFIFOCNT) << 2); mmci_get_rx_fifocnt() 1066 static int mmci_pio_read(struct mmci_host *host, char *buffer, unsigned int remain) mmci_pio_read() argument 1076 if (count > remain) mmci_pio_read() 1077 count = remain; mmci_pio_read() 1102 remain -= count; mmci_pio_read() 1105 if (remain == 0) mmci_pio_read() 1114 static int mmci_pio_write(struct mmci_host *host, char *buffer, unsigned int remain, u32 status) mmci_pio_write() argument 1125 count = min(remain, maxcnt); mmci_pio_write() 1138 remain -= count; mmci_pio_write() 1140 if (remain == 0) mmci_pio_write() 1168 unsigned int remain, len; mmci_pio_irq() local 1185 remain = sg_miter->length; mmci_pio_irq() 1189 len = mmci_pio_read(host, buffer, remain); mmci_pio_irq() 1191 len = mmci_pio_write(host, buffer, remain, status); mmci_pio_irq() 1196 remain -= len; mmci_pio_irq() 1198 if (remain) mmci_pio_irq()
|
H A D | mmci.h | 232 int (*get_rx_fifocnt)(struct mmci_host *h, u32 status, int remain);
|
H A D | wbsd.h | 159 unsigned int remain; /* Data left in curren entry */ member in struct:wbsd_host
|
H A D | dw_mmc.c | 2059 unsigned int remain, fcnt; dw_mci_read_data_pio() local 2067 remain = sg_miter->length; dw_mci_read_data_pio() 2073 len = min(remain, fcnt); dw_mci_read_data_pio() 2079 remain -= len; dw_mci_read_data_pio() 2080 } while (remain); dw_mci_read_data_pio() 2089 if (!remain) { dw_mci_read_data_pio() 2114 unsigned int remain, fcnt; dw_mci_write_data_pio() local 2122 remain = sg_miter->length; dw_mci_write_data_pio() 2129 len = min(remain, fcnt); dw_mci_write_data_pio() 2135 remain -= len; dw_mci_write_data_pio() 2136 } while (remain); dw_mci_write_data_pio() 2143 if (!remain) { dw_mci_write_data_pio()
|
H A D | wbsd.c | 249 host->remain = host->cur_sg->length; wbsd_init_sg() 265 host->remain = host->cur_sg->length; wbsd_next_sg() 451 host->remain--; wbsd_empty_fifo() 458 if (host->remain == 0) { wbsd_empty_fifo() 514 host->remain--; wbsd_fill_fifo() 521 if (host->remain == 0) { wbsd_fill_fifo()
|
/linux-4.1.27/arch/um/os-Linux/ |
H A D | time.c | 61 long long remain, max = UM_NSEC_PER_SEC / UM_HZ; disable_timer() local 67 remain = timeval_to_ns(&time.it_value); disable_timer() 68 if (remain > max) disable_timer() 69 remain = max; disable_timer() 71 return remain; disable_timer()
|
H A D | mem.c | 87 /* Make a copy since getenv results may not remain valid forever. */ choose_tempdir()
|
/linux-4.1.27/drivers/spi/ |
H A D | spi-sh.c | 166 int remain = t->len; spi_sh_send() local 175 while (remain > 0) { spi_sh_send() 176 cur_len = min(SPI_SH_FIFO_SIZE, remain); spi_sh_send() 193 remain -= cur_len; spi_sh_send() 196 if (remain > 0) { spi_sh_send() 231 int remain = t->len; spi_sh_receive() local 247 while (remain > 0) { spi_sh_receive() 248 if (remain >= SPI_SH_FIFO_SIZE) { spi_sh_receive() 261 cur_len = min(SPI_SH_FIFO_SIZE, remain); spi_sh_receive() 268 remain -= cur_len; spi_sh_receive()
|
H A D | spi-rockchip.c | 376 int remain = 0; rockchip_spi_pio_transfer() local 380 remain = rs->tx_end - rs->tx; rockchip_spi_pio_transfer() 385 remain = rs->rx_end - rs->rx; rockchip_spi_pio_transfer() 390 } while (remain); rockchip_spi_pio_transfer()
|
H A D | spi-pxa2xx-pxadma.c | 412 * there is not enough space), there must always remain enough empty pxa2xx_spi_set_dma_burst_and_threshold()
|
/linux-4.1.27/drivers/media/usb/stk1160/ |
H A D | stk1160-video.c | 119 int remain; stk1160_copy_video() local 135 remain = len; stk1160_copy_video() 147 if (remain < (bytesperline - lineoff)) stk1160_copy_video() 148 lencopy = remain; stk1160_copy_video() 158 remain = lencopy; stk1160_copy_video() 162 if (lencopy == 0 || remain == 0) stk1160_copy_video() 181 remain -= lencopy; stk1160_copy_video() 184 while (remain > 0) { stk1160_copy_video() 190 if (remain < bytesperline) stk1160_copy_video() 191 lencopy = remain; stk1160_copy_video() 201 remain = lencopy; stk1160_copy_video() 205 if (lencopy == 0 || remain == 0) stk1160_copy_video() 220 remain -= lencopy; stk1160_copy_video()
|
/linux-4.1.27/drivers/staging/gdm72xx/ |
H A D | gdm_sdio.c | 215 int n, blocks, ret, remain; send_sdio_pkt() local 231 remain = len - n; send_sdio_pkt() 232 remain = (remain + 3) & ~3; send_sdio_pkt() 234 if (remain) { send_sdio_pkt() 235 ret = sdio_memcpy_toio(func, 0, data + n, remain); send_sdio_pkt() 482 int ret, remain; gdm_sdio_irq() local 521 remain = len - TYPE_A_LOOKAHEAD_SIZE + TYPE_A_HEADER_SIZE; gdm_sdio_irq() 522 if (remain <= 0) gdm_sdio_irq() 525 blocks = remain / func->cur_blksize; gdm_sdio_irq() 536 remain -= n; gdm_sdio_irq() 539 if (remain) { gdm_sdio_irq() 540 ret = sdio_memcpy_fromio(func, buf, 0x0, remain); gdm_sdio_irq()
|
/linux-4.1.27/crypto/ |
H A D | gcm.c | 246 unsigned int remain, gcm_hash_remain() 253 sg_init_one(pctx->src, gcm_zeroes, remain); gcm_hash_remain() 254 ahash_request_set_crypt(ahreq, pctx->src, NULL, remain); gcm_hash_remain() 353 unsigned int remain; __gcm_hash_crypt_done() local 356 remain = gcm_remain(gctx->cryptlen); __gcm_hash_crypt_done() 357 BUG_ON(!remain); __gcm_hash_crypt_done() 358 err = gcm_hash_remain(req, pctx, remain, __gcm_hash_crypt_done() 379 unsigned int remain = 0; __gcm_hash_assoc_remain_done() local 382 remain = gcm_remain(gctx->cryptlen); __gcm_hash_assoc_remain_done() 383 compl = remain ? gcm_hash_crypt_done : __gcm_hash_assoc_remain_done() 391 if (remain) __gcm_hash_assoc_remain_done() 408 unsigned int remain; __gcm_hash_assoc_done() local 411 remain = gcm_remain(req->assoclen); __gcm_hash_assoc_done() 412 BUG_ON(!remain); __gcm_hash_assoc_done() 413 err = gcm_hash_remain(req, pctx, remain, __gcm_hash_assoc_done() 433 unsigned int remain = 0; __gcm_hash_init_done() local 436 remain = gcm_remain(req->assoclen); __gcm_hash_init_done() 437 compl = remain ? gcm_hash_assoc_done : __gcm_hash_init_done() 445 if (remain) __gcm_hash_init_done() 464 unsigned int remain; gcm_hash() local 475 remain = gcm_remain(req->assoclen); gcm_hash() 476 compl = remain ? gcm_hash_assoc_done : gcm_hash_assoc_remain_done; gcm_hash() 480 if (remain) { gcm_hash() 481 err = gcm_hash_remain(req, pctx, remain, gcm_hash() 486 remain = gcm_remain(gctx->cryptlen); gcm_hash() 487 compl = remain ? gcm_hash_crypt_done : gcm_hash_crypt_remain_done; gcm_hash() 491 if (remain) { gcm_hash() 492 err = gcm_hash_remain(req, pctx, remain, gcm_hash() 244 gcm_hash_remain(struct aead_request *req, struct crypto_gcm_req_priv_ctx *pctx, unsigned int remain, crypto_completion_t compl) gcm_hash_remain() argument
|
/linux-4.1.27/arch/x86/kernel/ |
H A D | kdebugfs.c | 34 unsigned long remain; setup_data_read() local 58 remain = copy_to_user(user_buf, p, count); setup_data_read() 63 if (remain) setup_data_read()
|
H A D | vmlinux.lds.S | 11 * value is should remain constant even if kernel image is relocated
|
/linux-4.1.27/arch/powerpc/kernel/ |
H A D | udbg.c | 106 int remain = n; udbg_write() local 113 while (((c = *s++) != '\0') && (remain-- > 0)) { udbg_write() 121 return n - remain; udbg_write()
|
H A D | sys_ppc32.c | 68 /* This should remain 12 even if PAGE_SIZE changes */ compat_sys_mmap2()
|
H A D | pci_32.c | 48 /* This will remain NULL for now, until isa-bridge.c is made common
|
/linux-4.1.27/Documentation/trace/ |
H A D | function-graph-fold.vim | 8 " functions will not include finish_task_switch(), so folding should remain
|
/linux-4.1.27/arch/alpha/lib/ |
H A 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
|
H A 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
|
/linux-4.1.27/include/linux/ |
H A D | fmc-sdb.h | 2 * This file is separate from sdb.h, because I want that one to remain
|
H A D | dtlk.h | 37 of data remain in DoubleTalk's
|
H A D | posix-clock.h | 145 * device subsystem. The posix_clock itself will remain (in an
|
H A D | ipack.h | 71 /* Dummy for counting the number of entries. Must remain the last
|
/linux-4.1.27/arch/parisc/lib/ |
H A D | memset.c | 54 /* Write 8 `op_t' per iteration until less than 8 `op_t' remain. */ memset() 71 /* Write 1 `op_t' per iteration until less than OPSIZ bytes remain. */ memset()
|
/linux-4.1.27/drivers/net/wireless/rtlwifi/rtl8723com/ |
H A D | fw_common.c | 102 u8 remain = (u8) (fwlen % 4); rtl8723_fill_dummy() local 104 remain = (remain == 0) ? 0 : (4 - remain); rtl8723_fill_dummy() 106 while (remain > 0) { rtl8723_fill_dummy() 109 remain--; rtl8723_fill_dummy()
|
/linux-4.1.27/drivers/staging/gdm724x/ |
H A D | gdm_tty.c | 182 int remain = len; gdm_tty_write() local 193 sending_len = remain > MUX_TX_MAX_SIZE ? MUX_TX_MAX_SIZE : gdm_tty_write() 194 remain; gdm_tty_write() 203 remain -= sending_len; gdm_tty_write() 204 if (remain <= 0) gdm_tty_write()
|
/linux-4.1.27/fs/omfs/ |
H A D | file.c | 230 int remain; omfs_get_block() local 253 offset = find_block(inode, entry, block, extent_count, &remain); omfs_get_block() 257 if (remain > max_blocks) omfs_get_block() 258 remain = max_blocks; omfs_get_block() 259 bh_result->b_size = (remain << inode->i_blkbits); omfs_get_block()
|
/linux-4.1.27/lib/zlib_inflate/ |
H A D | inflate.h | 42 DONE, /* finished check, done -- remain here until reset */ 43 BAD, /* got a data error -- remain here until reset */ 44 MEM, /* got an inflate() memory error -- remain here until reset */
|
/linux-4.1.27/lib/ |
H A D | genalloc.c | 82 * users set the same bit, one user will return remain bits, otherwise 117 * users clear the same bit, one user will return remain bits, 275 int nbits, start_bit = 0, end_bit, remain; gen_pool_alloc() local 296 remain = bitmap_set_ll(chunk->bits, start_bit, nbits); gen_pool_alloc() 297 if (remain) { gen_pool_alloc() 298 remain = bitmap_clear_ll(chunk->bits, start_bit, gen_pool_alloc() 299 nbits - remain); gen_pool_alloc() 300 BUG_ON(remain); gen_pool_alloc() 357 int start_bit, nbits, remain; gen_pool_free() local 369 remain = bitmap_clear_ll(chunk->bits, start_bit, nbits); gen_pool_free() 370 BUG_ON(remain); gen_pool_free()
|
H A D | syscall.c | 46 * Returns -%EAGAIN if @target does not remain blocked.
|
/linux-4.1.27/tools/testing/selftests/powerpc/pmu/ebb/ |
H A D | cpu_event_pinned_vs_ebb_test.c | 19 * should remain and the EBB event should fail to enable.
|
/linux-4.1.27/arch/arm/mach-tegra/ |
H A D | platsmp.c | 50 * Force the CPU into reset. The CPU must remain in reset when tegra20_boot_secondary() 62 * stop driving reset. The CPU will remain in reset because the tegra20_boot_secondary()
|
/linux-4.1.27/net/rxrpc/ |
H A D | ar-output.c | 594 sp->remain = chunk; rxrpc_send_data() 595 if (sp->remain > skb_tailroom(skb)) rxrpc_send_data() 596 sp->remain = skb_tailroom(skb); rxrpc_send_data() 602 sp->remain); rxrpc_send_data() 616 if (copy > sp->remain) rxrpc_send_data() 617 copy = sp->remain; rxrpc_send_data() 624 sp->remain -= copy; rxrpc_send_data() 635 if (sp->remain <= 0 || rxrpc_send_data()
|
/linux-4.1.27/drivers/infiniband/hw/amso1100/ |
H A D | c2_user.h | 42 * Make sure that all structs defined in this file remain laid out so
|
/linux-4.1.27/drivers/infiniband/hw/cxgb3/ |
H A D | iwch_user.h | 38 * Make sure that all structs defined in this file remain laid out so
|
/linux-4.1.27/drivers/infiniband/hw/cxgb4/ |
H A D | user.h | 38 * Make sure that all structs defined in this file remain laid out so
|
H A D | mem.c | 185 u32 remain = len; _c4iw_write_mem_dma() local 196 while (remain > inline_threshold) { _c4iw_write_mem_dma() 197 if (remain < T4_ULPTX_MAX_DMA) { _c4iw_write_mem_dma() 198 if (remain & ~T4_ULPTX_MIN_IO) _c4iw_write_mem_dma() 199 dmalen = remain & ~(T4_ULPTX_MIN_IO-1); _c4iw_write_mem_dma() 201 dmalen = remain; _c4iw_write_mem_dma() 204 remain -= dmalen; _c4iw_write_mem_dma() 206 !remain); _c4iw_write_mem_dma() 213 if (remain) _c4iw_write_mem_dma() 214 ret = _c4iw_write_mem_inline(rdev, addr, remain, data); _c4iw_write_mem_dma()
|
/linux-4.1.27/drivers/media/usb/au0828/ |
H A D | au0828-video.c | 330 int linesdone, currlinedone, offset, lencopy, remain; au0828_copy_video() local 340 remain = len; au0828_copy_video() 353 lencopy = lencopy > remain ? remain : lencopy; au0828_copy_video() 359 remain = (char *)outp + buf->length - (char *)startwrite; au0828_copy_video() 360 lencopy = remain; au0828_copy_video() 366 remain -= lencopy; au0828_copy_video() 368 while (remain > 0) { au0828_copy_video() 371 if (bytesperline > remain) au0828_copy_video() 372 lencopy = remain; au0828_copy_video() 381 lencopy = remain = (char *)outp + buf->length - au0828_copy_video() 389 remain -= lencopy; au0828_copy_video() 516 unsigned int remain, lencopy; au0828_isoc_copy() local 618 remain = vbi_field_size - dev->vbi_read; au0828_isoc_copy() 619 if (len < remain) au0828_isoc_copy() 622 lencopy = remain; au0828_isoc_copy()
|
/linux-4.1.27/drivers/gpu/host1x/ |
H A D | syncpt.c | 242 int remain = wait_event_interruptible_timeout(wq, host1x_syncpt_wait() local 245 if (remain > 0 || host1x_syncpt_is_expired(sp, thresh)) { host1x_syncpt_wait() 251 if (remain < 0) { host1x_syncpt_wait() 252 err = remain; host1x_syncpt_wait()
|
/linux-4.1.27/kernel/gcov/ |
H A D | gcov.h | 22 * remain compatible.
|
/linux-4.1.27/drivers/usb/dwc2/ |
H A D | hcd_ddma.c | 805 u16 remain = 0; dwc2_cmpl_host_isoc_dma_desc() local 814 remain = (dma_desc->status & HOST_DMA_ISOC_NBYTES_MASK) >> dwc2_cmpl_host_isoc_dma_desc() 824 frame_desc->actual_length = qh->n_bytes[idx] - remain; dwc2_cmpl_host_isoc_dma_desc() 828 frame_desc->actual_length = qh->n_bytes[idx] - remain; dwc2_cmpl_host_isoc_dma_desc() 940 u16 remain = 0; dwc2_update_non_isoc_urb_state_ddma() local 943 remain = (dma_desc->status & HOST_DMA_NBYTES_MASK) >> dwc2_update_non_isoc_urb_state_ddma() 946 dev_vdbg(hsotg->dev, "remain=%d dwc2_urb=%p\n", remain, urb); dwc2_update_non_isoc_urb_state_ddma() 986 urb->actual_length += n_bytes - remain; dwc2_update_non_isoc_urb_state_ddma() 987 if (remain || urb->actual_length >= urb->length) { dwc2_update_non_isoc_urb_state_ddma() 1002 urb->actual_length += n_bytes - remain; dwc2_update_non_isoc_urb_state_ddma() 1005 if (remain || urb->actual_length >= urb->length) { dwc2_update_non_isoc_urb_state_ddma()
|
/linux-4.1.27/drivers/mmc/card/ |
H A D | queue.c | 463 unsigned int len, remain, offset = 0; mmc_queue_packed_map_sg() local 466 remain = hdr_sz; mmc_queue_packed_map_sg() 468 len = min(remain, max_seg_sz); mmc_queue_packed_map_sg() 471 remain -= len; mmc_queue_packed_map_sg() 474 } while (remain); mmc_queue_packed_map_sg()
|
/linux-4.1.27/drivers/net/wireless/rtlwifi/rtl8188ee/ |
H A D | fw.c | 100 u8 remain = (u8) (fwlen % 4); _rtl88e_fill_dummy() local 102 remain = (remain == 0) ? 0 : (4 - remain); _rtl88e_fill_dummy() 104 while (remain > 0) { _rtl88e_fill_dummy() 107 remain--; _rtl88e_fill_dummy()
|
/linux-4.1.27/drivers/net/wireless/rtlwifi/rtl8192c/ |
H A D | fw_common.c | 115 u8 remain = (u8) (fwlen % 4); _rtl92c_fill_dummy() local 117 remain = (remain == 0) ? 0 : (4 - remain); _rtl92c_fill_dummy() 119 while (remain > 0) { _rtl92c_fill_dummy() 122 remain--; _rtl92c_fill_dummy()
|
/linux-4.1.27/drivers/net/wireless/rtlwifi/rtl8192de/ |
H A D | fw.c | 107 u8 remain = (u8) (fwlen % 4); _rtl92d_fill_dummy() local 109 remain = (remain == 0) ? 0 : (4 - remain); _rtl92d_fill_dummy() 110 while (remain > 0) { _rtl92d_fill_dummy() 113 remain--; _rtl92d_fill_dummy()
|
/linux-4.1.27/drivers/scsi/isci/ |
H A D | probe_roms.h | 125 * These timer values specifies how long a link will remain open with no 134 * These timer values specifies how long a link will remain open in increments 142 * This timer value specifies how long a link will remain open with no
|
H A D | unsolicited_frame_control.c | 188 * Frames remain in use until we advance the get pointer sci_unsolicited_frame_control_release_frame()
|
H A D | remote_device.h | 221 * It will remain in this state so long as there is one or more NCQ
|
/linux-4.1.27/drivers/usb/musb/ |
H A D | musb_virthub.c | 170 long remain = (unsigned long) musb->rh_timer - jiffies; musb_port_reset() local 172 if (musb->rh_timer > 0 && remain > 0) { musb_port_reset() 175 &musb->deassert_reset_work, remain); musb_port_reset()
|
/linux-4.1.27/drivers/net/wireless/iwlwifi/mvm/ |
H A D | time-event.h | 165 * iwl_mvm_start_p2p_roc - start remain on channel for p2p device functionality 171 * @type: the remain on channel request type 173 * This function can be used to issue a remain on channel session, 185 * iwl_mvm_stop_roc - stop remain on channel functionality
|
H A D | sf.c | 231 * will remain FULL_ON but SF parameters need to be reconsidered. iwl_mvm_sf_config()
|
/linux-4.1.27/drivers/infiniband/hw/mlx4/ |
H A D | user.h | 48 * Make sure that all structs defined in this file remain laid out so
|
/linux-4.1.27/drivers/infiniband/hw/mlx5/ |
H A D | user.h | 53 /* Make sure that all structs defined in this file remain laid out so
|
/linux-4.1.27/drivers/infiniband/hw/mthca/ |
H A D | mthca_user.h | 46 * Make sure that all structs defined in this file remain laid out so
|
H A D | mthca_srq.c | 510 /* flags field will always remain 0 */ mthca_tavor_post_srq_recv() 603 /* flags field will always remain 0 */ mthca_arbel_post_srq_recv()
|
/linux-4.1.27/drivers/infiniband/hw/nes/ |
H A D | nes_user.h | 46 * Make sure that all structs defined in this file remain laid out so
|
/linux-4.1.27/drivers/cpuidle/ |
H A D | cpuidle-cps.c | 34 * At least one core must remain powered up & clocked in order for the cps_nc_enter()
|
/linux-4.1.27/arch/tile/lib/ |
H A D | memset_32.c | 128 * words remain to be processed. memset()
|
H A D | memset_64.c | 127 * words remain to be processed. memset()
|
/linux-4.1.27/drivers/usb/misc/ |
H A D | chaoskey.c | 374 unsigned long remain; chaoskey_read() local 414 remain = copy_to_user(buffer, dev->buf + dev->used, this_time); chaoskey_read() 415 if (remain) { chaoskey_read() 421 dev->used += this_time - remain; chaoskey_read()
|
/linux-4.1.27/fs/ocfs2/ |
H A D | stackglue.c | 506 ssize_t ret = 0, total = 0, remain = PAGE_SIZE; ocfs2_loaded_cluster_plugins_show() local 511 ret = snprintf(buf, remain, "%s\n", ocfs2_loaded_cluster_plugins_show() 517 if (ret == remain) { ocfs2_loaded_cluster_plugins_show() 523 remain -= ret; ocfs2_loaded_cluster_plugins_show()
|
/linux-4.1.27/include/uapi/linux/ |
H A D | falloc.h | 40 * size to remain the same.
|
H A D | if_frad.h | 41 * These are related to the Sangoma SDLA and should remain in order.
|
/linux-4.1.27/arch/cris/include/arch-v32/arch/ |
H A D | irq.h | 60 * hardware breakpoints to remain active while we are in an exception handler.
|
/linux-4.1.27/arch/arm/include/asm/ |
H A D | mmu_context.h | 56 * on non-ASID CPUs, the old mm will remain valid until the check_and_switch_context()
|
H A D | div64.h | 91 /* instructions should remain. Better avoid any */ \
|
/linux-4.1.27/drivers/net/wireless/ath/ath6kl/ |
H A D | target.h | 141 * between the two, and is intended to remain constant (with additions only 150 * of items in this structure must remain constant.
|
/linux-4.1.27/drivers/staging/lustre/lustre/libcfs/ |
H A D | tracefile.c | 274 int remain; libcfs_debug_vmsg2() local 343 remain = max_nob - needed; libcfs_debug_vmsg2() 344 if (remain < 0) libcfs_debug_vmsg2() 345 remain = 0; libcfs_debug_vmsg2() 348 needed += vsnprintf(string_buf + needed, remain, libcfs_debug_vmsg2() 444 remain = CFS_TRACE_CONSOLE_BUFFER_SIZE - needed; libcfs_debug_vmsg2() 445 if (remain > 0) { libcfs_debug_vmsg2() 447 needed += vsnprintf(string_buf+needed, remain, libcfs_debug_vmsg2()
|
/linux-4.1.27/kernel/ |
H A D | auditfilter.c | 136 char *audit_unpack_string(void **bufp, size_t *remain, size_t len) audit_unpack_string() argument 140 if (!*bufp || (len == 0) || (len > *remain)) audit_unpack_string() 156 *remain -= len; audit_unpack_string() 419 size_t remain = datasz - sizeof(struct audit_rule_data); audit_data_to_entry() local 485 str = audit_unpack_string(&bufp, &remain, f->val); audit_data_to_entry() 506 str = audit_unpack_string(&bufp, &remain, f->val); audit_data_to_entry() 518 str = audit_unpack_string(&bufp, &remain, f->val); audit_data_to_entry() 536 str = audit_unpack_string(&bufp, &remain, f->val); audit_data_to_entry()
|
H A D | notifier.c | 220 * not yet working and interrupts must remain disabled. At blocking_notifier_chain_register() 273 * not yet working and interrupts must remain disabled. At blocking_notifier_chain_unregister() 428 * not yet working and interrupts must remain disabled. At srcu_notifier_chain_register() 458 * not yet working and interrupts must remain disabled. At srcu_notifier_chain_unregister()
|
/linux-4.1.27/arch/powerpc/net/ |
H A D | bpf_jit_asm.S | 99 * Allocate a new stack frame here to remain ABI-compliant in 152 * Allocate a new stack frame here to remain ABI-compliant in
|
/linux-4.1.27/scripts/ |
H A D | checkpatch.pl | 1009 my ($linenr, $remain, $off) = @_; 1029 #warn "CSB: blk<$blk> remain<$remain>\n"; 1033 for (; $remain > 0; $line++) { 1036 $remain--; 1127 $remain--; 1139 $line, $remain + 1, $off - $loff + 1, $level); 1186 my ($linenr, $remain, $off) = @_; 1192 ($statement, $condition, $linenr, $remain, $off, $level) = 1193 ctx_statement_block($linenr, $remain, $off); 1194 #print "F: c<$condition> s<$statement> remain<$remain>\n"; 1196 if (!($remain > 0 && $condition =~ /^\s*(?:\n[+-])?\s*(?:if|else|do)\b/s)) { 1203 ($statement, $condition, $linenr, $remain, $off, $level) = 1204 ctx_statement_block($linenr, $remain, $off); 1205 #print "C: c<$condition> s<$statement> remain<$remain>\n"; 1206 last if (!($remain > 0 && $condition =~ /^(?:\s*\n[+-])*\s*(?:else|do)\b/s)); 1215 my ($linenr, $remain, $outer, $open, $close, $off) = @_; 1225 for ($line = $start; $remain > 0; $line++) { 1227 $remain--; 1265 my ($linenr, $remain) = @_; 1267 my ($level, @r) = ctx_block_get($linenr, $remain, 1, '{', '}', 0); 1271 my ($linenr, $remain) = @_; 1273 my ($level, @r) = ctx_block_get($linenr, $remain, 0, '{', '}', 0); 1277 my ($linenr, $remain, $off) = @_; 1279 my ($level, @r) = ctx_block_get($linenr, $remain, 0, '(', ')', $off); 1283 my ($linenr, $remain) = @_; 1285 return ctx_block_get($linenr, $remain, 0, '{', '}', 0); 1288 my ($linenr, $remain, $off) = @_; 1290 return ctx_block_get($linenr, $remain, 0, '(', ')', $off);
|
/linux-4.1.27/drivers/staging/dgnc/ |
H A D | dgnc_tty.c | 445 int remain; dgnc_wmove() local 458 remain = WQUEUESIZE - head; dgnc_wmove() 460 if (n >= remain) { dgnc_wmove() 461 n -= remain; dgnc_wmove() 462 memcpy(ch->ch_wqueue + head, buf, remain); dgnc_wmove() 464 buf += remain; dgnc_wmove() 471 remain = n; dgnc_wmove() 472 memcpy(ch->ch_wqueue + head, buf, remain); dgnc_wmove() 473 head += remain; dgnc_wmove() 1707 uint remain; dgnc_tty_write() local 1827 remain = WQUEUESIZE - head; dgnc_tty_write() 1829 if (n >= remain) { dgnc_tty_write() 1830 n -= remain; dgnc_tty_write() 1831 memcpy(ch->ch_wqueue + head, buf, remain); dgnc_tty_write() 1833 buf += remain; dgnc_tty_write() 1840 remain = n; dgnc_tty_write() 1841 memcpy(ch->ch_wqueue + head, buf, remain); dgnc_tty_write() 1842 head += remain; dgnc_tty_write()
|
/linux-4.1.27/drivers/media/usb/em28xx/ |
H A D | em28xx-video.c | 456 int linesdone, currlinedone, offset, lencopy, remain; em28xx_copy_video() local 463 remain = len; em28xx_copy_video() 480 lencopy = lencopy > remain ? remain : lencopy; em28xx_copy_video() 486 remain = (char *)buf->vb_buf + buf->length - em28xx_copy_video() 488 lencopy = remain; em28xx_copy_video() 494 remain -= lencopy; em28xx_copy_video() 496 while (remain > 0) { em28xx_copy_video() 502 if (bytesperline > remain) em28xx_copy_video() 503 lencopy = remain; em28xx_copy_video() 513 lencopy = remain = (char *)buf->vb_buf + buf->length - em28xx_copy_video() 521 remain -= lencopy; em28xx_copy_video()
|
H A D | em28xx-i2c.c | 619 int remain = len, rsize, rsize_max, ret; em28xx_i2c_read_block() local 623 if (addr + remain > (addr_w16 * 0xff00 + 0xff + 1)) em28xx_i2c_read_block() 636 while (remain > 0) { em28xx_i2c_read_block() 637 if (remain > rsize_max) em28xx_i2c_read_block() 640 rsize = remain; em28xx_i2c_read_block() 646 remain -= rsize; em28xx_i2c_read_block()
|
/linux-4.1.27/tools/perf/scripts/python/ |
H A D | netdev-times.py | 219 print "xmit Qdisc:remain:%d overflow:%d" % \ 221 print "xmit netdevice:remain:%d overflow:%d" % \ 223 print "receive:remain:%d overflow:%d" % \
|
/linux-4.1.27/drivers/md/ |
H A D | dm-thin-metadata.h | 88 * to the last good transaction. Thin devices remain open.
|
/linux-4.1.27/drivers/net/ethernet/mellanox/mlx4/ |
H A D | sense.c | 84 * If sensed nothing, remain in current configuration. mlx4_do_sense_ports()
|
/linux-4.1.27/drivers/media/pci/cx18/ |
H A D | cx18-cards.h | 94 int msecs_asserted; /* time period reset must remain asserted */
|
H A D | cx18-queue.c | 151 * MDLs from the firmware will thus remain in order as cx18_queue_get_mdl()
|
/linux-4.1.27/drivers/message/fusion/lsi/ |
H A D | mpi_log_fc.h | 35 * codes remain consistent across firmware releases.
|
/linux-4.1.27/drivers/staging/comedi/drivers/ |
H A D | ssv_dnp.c | 37 /* 0..3 remain unchanged! For details about Port C Mode Register see */
|
H A D | amplc_dio200_pci.c | 205 * generate an interrupt. The interrupt will remain asserted until the
|
/linux-4.1.27/drivers/staging/lustre/lustre/include/ |
H A D | lu_ref.h | 84 * pending references remain. lu_ref_print() can be used to dump a list of
|
/linux-4.1.27/drivers/net/wireless/ti/wl1251/ |
H A D | event.c | 62 /* remain in active mode */ wl1251_event_ps_report()
|
/linux-4.1.27/drivers/phy/ |
H A D | phy-qcom-ufs-qmp-14nm.h | 98 * common_cfg MUST remain the first field in this structure
|
H A D | phy-qcom-ufs-qmp-20nm.h | 124 * common_cfg MUST remain the first field in this structure
|
/linux-4.1.27/drivers/cpuidle/governors/ |
H A D | ladder.c | 123 /* otherwise remain at the current state */ ladder_select_state()
|
/linux-4.1.27/arch/sparc/include/uapi/asm/ |
H A D | perfctr.h | 21 * counters remain enabled for fork/clone children.
|
/linux-4.1.27/fs/jffs2/ |
H A D | compr_zlib.c | 169 /* Let this remain D1 for now -- it should never happen */ jffs2_zlib_decompress()
|
/linux-4.1.27/drivers/power/ |
H A D | max8998_charger.c | 111 * remain value set from bootloader or default value */ max8998_battery_probe()
|
/linux-4.1.27/arch/powerpc/sysdev/ |
H A D | mpic_pasemi_msi.c | 125 * it to 0 to remain sane. pasemi_msi_setup_msi_irqs()
|
/linux-4.1.27/arch/sh/boards/mach-r2d/ |
H A D | setup.c | 293 * RA = 1 - Internal Memory Remain in Active State: Do not remain. rts7751r2d_setup()
|
/linux-4.1.27/arch/arm64/include/asm/ |
H A D | memory.h | 36 * Size of the PCI I/O space. This must remain a power of two so that
|
/linux-4.1.27/arch/ia64/include/asm/ |
H A D | page.h | 228 * - 0xa000000000000000+3*PERCPU_PAGE_SIZE remain unmapped (guard page)
|
/linux-4.1.27/arch/m68k/atari/ |
H A D | stdma.c | 167 * as long as they remain disabled.
|
/linux-4.1.27/arch/arm/mach-imx/ |
H A D | pm-imx5.c | 47 * uses this state and needs to take no action when registers remain confgiured
|
/linux-4.1.27/arch/arc/kernel/ |
H A D | process.c | 104 * stack layout nevertheless needs to remain the same. copy_thread()
|
/linux-4.1.27/fs/ceph/ |
H A D | ioctl.h | 95 * are not copied (user page must remain stable) and O_DIRECT writes
|
/linux-4.1.27/net/wireless/ |
H A D | mesh.c | 35 * before timing out. This way it will remain ACTIVE and no data frames
|
/linux-4.1.27/sound/drivers/pcsp/ |
H A D | pcsp.c | 38 MODULE_PARM_DESC(nopcm, "Disable PC-Speaker PCM sound. Only beeps remain.");
|
/linux-4.1.27/arch/alpha/kernel/ |
H A D | process.c | 94 flags |= 0x00040000UL; /* "remain halted" */ common_shutdown_1() 117 flags |= 0x00040000UL; /* "remain halted" */ common_shutdown_1()
|
H A D | osf_sys.c | 1216 struct timeval32 __user *, remain) SYSCALL_DEFINE2() 1228 if (remain) { SYSCALL_DEFINE2() 1230 if (put_tv32(remain, &tmp)) SYSCALL_DEFINE2()
|
/linux-4.1.27/drivers/net/wireless/rtlwifi/rtl8192ee/ |
H A D | fw.c | 96 u8 remain = (u8)(fwlen % 4); _rtl92ee_fill_dummy() local 98 remain = (remain == 0) ? 0 : (4 - remain); _rtl92ee_fill_dummy() 100 while (remain > 0) { _rtl92ee_fill_dummy() 103 remain--; _rtl92ee_fill_dummy()
|
/linux-4.1.27/drivers/bluetooth/ |
H A D | btusb.c | 1810 int remain = fw->size - (*fw_ptr - fw->data); btusb_setup_intel_patching() local 1815 * the size of remain buffer is smaller than HCI command header, btusb_setup_intel_patching() 1819 if (remain > HCI_COMMAND_HDR_SIZE && *fw_ptr[0] != 0x01) { btusb_setup_intel_patching() 1824 remain--; btusb_setup_intel_patching() 1828 remain -= sizeof(*cmd); btusb_setup_intel_patching() 1830 /* Ensure that the remain firmware data is long enough than the length btusb_setup_intel_patching() 1833 if (remain < cmd->plen) { btusb_setup_intel_patching() 1849 remain -= cmd->plen; btusb_setup_intel_patching() 1858 while (remain > HCI_EVENT_HDR_SIZE && *fw_ptr[0] == 0x02) { btusb_setup_intel_patching() 1860 remain--; btusb_setup_intel_patching() 1864 remain -= sizeof(*evt); btusb_setup_intel_patching() 1866 if (remain < evt->plen) { btusb_setup_intel_patching() 1874 remain -= evt->plen; btusb_setup_intel_patching() 1878 * If event is not found or remain is smaller than zero, the firmware btusb_setup_intel_patching() 1881 if (!evt || !evt_param || remain < 0) { btusb_setup_intel_patching()
|
/linux-4.1.27/drivers/isdn/hardware/mISDN/ |
H A D | hfcsusb.c | 1170 int k, tx_offset, num_isoc_packets, sink, remain, current_len, tx_iso_complete() local 1252 remain = tx_skb->len - *tx_idx; tx_iso_complete() 1254 remain = 15; /* > not complete */ tx_iso_complete() 1256 remain = 0; tx_iso_complete() 1258 if (remain > 0) { tx_iso_complete() 1265 if (remain < current_len) tx_iso_complete() 1266 current_len = remain; tx_iso_complete() 1272 if (current_len == remain) { tx_iso_complete()
|
/linux-4.1.27/drivers/net/wireless/ath/ath10k/ |
H A D | targaddrs.h | 29 * between the two, and is intended to remain constant (with additions only 41 * Diagnostic Window. The position of items in this structure must remain
|
/linux-4.1.27/arch/x86/mm/ |
H A D | kmmio.c | 211 * and they remain disabled throughout this function. 307 * and they remain disabled throughout this function.
|
/linux-4.1.27/include/uapi/rdma/ |
H A D | ib_user_verbs.h | 99 * Make sure that all structs defined in this file remain laid out so 523 * This struct needs to remain a multiple of 8 bytes to keep the
|
H A D | ib_user_mad.h | 47 * Make sure that all structs defined in this file remain laid out so
|
/linux-4.1.27/lib/xz/ |
H A D | xz_dec_bcj.c | 463 * we can do that too, since the last few bytes that remain xz_dec_bcj_run() 464 * unfiltered are meant to remain unfiltered. xz_dec_bcj_run()
|
/linux-4.1.27/drivers/gpu/drm/i915/ |
H A D | i915_gem.c | 618 ssize_t remain; i915_gem_shmem_pread() local 627 remain = args->size; i915_gem_shmem_pread() 641 if (remain <= 0) i915_gem_shmem_pread() 650 page_length = remain; i915_gem_shmem_pread() 666 ret = fault_in_multipages_writeable(user_data, remain); i915_gem_shmem_pread() 685 remain -= page_length; i915_gem_shmem_pread() 787 ssize_t remain; i915_gem_gtt_pwrite_fast() local 805 remain = args->size; i915_gem_gtt_pwrite_fast() 811 while (remain > 0) { i915_gem_gtt_pwrite_fast() 820 page_length = remain; i915_gem_gtt_pwrite_fast() 821 if ((page_offset + remain) > PAGE_SIZE) i915_gem_gtt_pwrite_fast() 834 remain -= page_length; i915_gem_gtt_pwrite_fast() 918 ssize_t remain; i915_gem_shmem_pwrite() local 929 remain = args->size; i915_gem_shmem_pwrite() 967 if (remain <= 0) i915_gem_shmem_pwrite() 977 page_length = remain; i915_gem_shmem_pwrite() 1011 remain -= page_length; i915_gem_shmem_pwrite()
|
H A D | i915_gem_execbuffer.c | 499 int remain, ret; i915_gem_execbuffer_relocate_vma() local 503 remain = entry->relocation_count; i915_gem_execbuffer_relocate_vma() 504 while (remain) { i915_gem_execbuffer_relocate_vma() 506 int count = remain; i915_gem_execbuffer_relocate_vma() 509 remain -= count; i915_gem_execbuffer_relocate_vma()
|
H A D | i915_gem_gtt.h | 287 * portion of the GTT which can be mapped by the CPU and remain both coherent
|
/linux-4.1.27/drivers/isdn/mISDN/ |
H A D | dsp_dtmf.c | 290 /* the tone (or no tone) must remain 3 times without change */ dsp_dtmf_goertzel_decode()
|
/linux-4.1.27/drivers/net/ethernet/stmicro/stmmac/ |
H A D | dwmac1000_dma.c | 89 * and those which are not supported would remain ineffective. dwmac1000_dma_init()
|
/linux-4.1.27/drivers/scsi/ |
H A D | scsi_ioctl.c | 5 * for the ones that remain
|
H A D | eata_generic.h | 387 * adjust the settings for this buffer only. This must remain at the end
|
/linux-4.1.27/drivers/remoteproc/ |
H A D | remoteproc_debugfs.c | 138 * disabled: When disabled, a remote processor will remain in a crashed
|
/linux-4.1.27/drivers/staging/skein/ |
H A D | skein_api.h | 77 * @c skein_init. All other functions calls remain the same.
|
/linux-4.1.27/drivers/staging/vt6656/ |
H A D | device.h | 189 #define DEVICE_INIT_RESET 0x1 /* reset init or Dx to D0 power remain */
|
/linux-4.1.27/drivers/net/wireless/ti/wl18xx/ |
H A D | scan.c | 93 * remain 0 for normal scan wl18xx_scan_send()
|
/linux-4.1.27/drivers/net/wireless/ath/wil6210/ |
H A D | wmi.c | 808 int remain; wmi_call() local 819 remain = wait_for_completion_timeout(&wil->wmi_call, wmi_call() 821 if (0 == remain) { wmi_call() 829 to_msec - jiffies_to_msecs(remain)); wmi_call()
|
/linux-4.1.27/drivers/net/wireless/brcm80211/brcmfmac/ |
H A D | p2p.h | 118 * @remain_on_channel_cookie: cookie counter for remain on channel cmd
|
/linux-4.1.27/drivers/net/wireless/cw1200/ |
H A D | cw1200_sdio.c | 356 /* Notify SDIO that CW1200 will remain powered during suspend */ cw1200_sdio_suspend()
|
H A D | bh.c | 221 * remain active. cw1200_device_wakeup()
|
/linux-4.1.27/drivers/clocksource/ |
H A D | asm9260_timer.c | 45 * next positive edge of PCLK. The counters remain reset until TCR[1] is
|
/linux-4.1.27/drivers/cpufreq/ |
H A D | sa1110-cpufreq.c | 312 /* sa1110_driver needs __refdata because it must remain after init registers
|
/linux-4.1.27/arch/sh/kernel/ |
H A D | hw_breakpoint.c | 394 * This also permits the UBC interface clock to remain off for hw_breakpoint_exceptions_notify()
|
/linux-4.1.27/arch/sparc/include/asm/ |
H A D | viking.h | 27 * remain cleared.
|
/linux-4.1.27/drivers/acpi/acpica/ |
H A D | utxfinit.c | 303 * Initialize the objects that remain uninitialized. This runs the ACPI_EXPORT_SYMBOL_INIT()
|
H A D | hwvalid.c | 56 * conditionally illegal. This table must remain ordered by port address.
|
/linux-4.1.27/drivers/base/power/ |
H A D | opp.c | 274 * returned will remain valid for use with opp_get_{voltage, freq} only while 323 * returned will remain valid for use with opp_get_{voltage, freq} only while 373 * returned will remain valid for use with opp_get_{voltage, freq} only while 811 * returned will remain valid for use with opp_get_{voltage, freq} only while
|
/linux-4.1.27/drivers/usb/gadget/function/ |
H A D | u_fs.h | 104 * remain in deactivated state until filesystem is umounted or
|
/linux-4.1.27/drivers/video/fbdev/core/ |
H A D | fb_defio.c | 118 * We want the page to remain locked from ->page_mkwrite until fb_deferred_io_mkwrite()
|
/linux-4.1.27/include/rdma/ |
H A D | ib_addr.h | 92 * addresses. The data location must remain valid until the callback has
|
/linux-4.1.27/arch/s390/kernel/ |
H A D | nmi.c | 67 * A warning may remain for a prolonged period on the bare iron. s390_handle_mcck()
|
/linux-4.1.27/arch/powerpc/oprofile/ |
H A D | common.c | 172 * expected, so they remain. For Freescale op_powerpc_create_files()
|
/linux-4.1.27/arch/arm64/lib/ |
H A D | memset.S | 186 * grantee the remain length to be ZVA is bigger than 64,
|
/linux-4.1.27/fs/dlm/ |
H A D | ast.c | 239 /* cbs remain, loop should have removed all, shouldn't happen */ dlm_callback_work()
|
/linux-4.1.27/mm/ |
H A D | mincore.c | 208 * remain in memory.
|
H A D | zpool.c | 57 * failure, the driver is in use and must remain available.
|
/linux-4.1.27/include/linux/byteorder/ |
H A D | generic.h | 30 * byteswap macros that remain, disseminated among drivers,
|
/linux-4.1.27/drivers/media/radio/si470x/ |
H A D | radio-si470x-common.c | 47 * - code order and prototypes still remain the same 48 * - spacing and bottom of band codes remain the same
|
/linux-4.1.27/fs/xfs/ |
H A D | xfs_mru_cache.c | 48 * elements that remain in the first list. It's therefore possible for elements 49 * to remain in the data store even after they've been inactive for up to
|
H A D | xfs_linux.h | 190 * The conversion here is type only, the value will remain the same since we
|
/linux-4.1.27/fs/logfs/ |
H A D | logfs_abi.h | 71 * will remain 64bit. 313 * Low bits should either remain in sync with the corresponding FS_*_FL or
|
/linux-4.1.27/include/xen/interface/ |
H A D | grant_table.h | 284 * mappings will remain in the device or host TLBs. 417 * mappings will remain in the device or host TLBs.
|
/linux-4.1.27/drivers/net/ethernet/mellanox/mlx5/core/ |
H A D | qp.c | 171 /* Page fault will remain unresolved. QP will hang until it is mlx5_eq_pagefault()
|
/linux-4.1.27/drivers/net/wireless/ath/ar5523/ |
H A D | ar5523_hw.h | 30 __be32 remain; member in struct:ar5523_fwblock
|
/linux-4.1.27/drivers/staging/android/ |
H A D | sync.h | 268 * @a and @b. @a and @b remain valid, independent fences.
|
/linux-4.1.27/drivers/net/wireless/zd1211rw/ |
H A D | zd_mac.h | 56 * codeing for the 1 and 2 MBit/s rate. We stay with the term here to remain
|
/linux-4.1.27/drivers/gpu/drm/gma500/ |
H A D | psb_intel_reg.h | 1078 * data on the display device. The frame memory contents remain unchanged. 1084 * the display device. The frame memory contents remain unchanged. 1095 on the display device. The frame memory contents remain unchanged. 1101 on the display device. The frame memory contents remain unchanged.
|
/linux-4.1.27/arch/x86/um/ |
H A D | tls_32.c | 166 * will remain as flushed as it was. clear_flushed_tls()
|
/linux-4.1.27/arch/xtensa/lib/ |
H A D | usercopy.S | 7 * It needs to remain separate and distinct. The hal files are part
|
/linux-4.1.27/drivers/base/ |
H A D | transport_class.c | 273 * reference count on dev, so dev too will remain for as long as the
|
/linux-4.1.27/drivers/media/dvb-frontends/ |
H A D | stb0899_algo.c | 804 u32 dec_ratio, dec_rate, decim, remain, intval, btr_nom_freq; stb0899_dvbs2_calc_srate() local 816 remain = (decim * (1 << (config->btr_nco_bits - 1))) % master_clk; stb0899_dvbs2_calc_srate() 819 remain = (decim * (1 << (config->btr_nco_bits - 1))) % master_clk; stb0899_dvbs2_calc_srate() 821 btr_nom_freq = (intval * srate) + ((remain * srate) / master_clk); stb0899_dvbs2_calc_srate()
|
/linux-4.1.27/drivers/media/i2c/ |
H A D | adv7175.c | 128 * a different sub-carrier freq to remain stable. */ set_subcarrier_freq()
|
/linux-4.1.27/include/uapi/scsi/ |
H A D | scsi_bsg_fc.h | 101 * remain logged in with the remote port.
|
/linux-4.1.27/arch/arm/mach-omap1/ |
H A D | clock.h | 68 * @find_companion must, unfortunately, remain.
|
/linux-4.1.27/fs/f2fs/ |
H A D | node.h | 227 /* should remain old flag bits such as COLD_BIT_SHIFT */ fill_node_footer()
|
/linux-4.1.27/net/netfilter/ipvs/ |
H A D | ip_vs_nfct.c | 107 * CIP->VIP will remain the same, so leave the tuple in ip_vs_update_conntrack()
|
/linux-4.1.27/net/unix/ |
H A D | garbage.c | 324 * only those remain, which form cyclic references. unix_gc()
|
/linux-4.1.27/drivers/net/hyperv/ |
H A D | netvsc.c | 705 u32 remain = packet->total_data_buflen % net_device->pkt_align; netvsc_copy_to_send_buf() local 710 if (packet->is_data_pkt && packet->xmit_more && remain && netvsc_copy_to_send_buf() 712 padding = net_device->pkt_align - remain; netvsc_copy_to_send_buf()
|
/linux-4.1.27/drivers/net/wireless/libertas/ |
H A D | if_cs.c | 626 int remain = fw->size - sent; if_cs_prog_helper() local 628 if (remain < count) if_cs_prog_helper() 629 count = remain; if_cs_prog_helper()
|
/linux-4.1.27/drivers/pci/ |
H A D | pci-driver.c | 1119 * always remain in D0 regardless of the runtime PM status pci_pm_runtime_suspend() 1162 * always remain in D0 regardless of the runtime PM status pci_pm_runtime_resume() 1190 * always remain in D0 regardless of the runtime PM status pci_pm_runtime_idle()
|
H A D | vc.c | 320 * For an FLR case, the VC config may remain. pci_vc_do_save_buffer()
|
/linux-4.1.27/drivers/infiniband/hw/qib/ |
H A D | qib_common.h | 77 * must remain as is; removed states can be reused for different 331 * fields must remain unchanged, for binary compatibility. It can 488 * qib_sendpkt to remain same size as before 32 bit changes, so...
|
/linux-4.1.27/drivers/net/wireless/rtlwifi/rtl8821ae/ |
H A D | fw.c | 98 u8 remain = (u8)(fwlen % 4); _rtl8821ae_fill_dummy() local 100 remain = (remain == 0) ? 0 : (4 - remain); _rtl8821ae_fill_dummy() 102 while (remain > 0) { _rtl8821ae_fill_dummy() 105 remain--; _rtl8821ae_fill_dummy()
|
/linux-4.1.27/sound/pci/hda/ |
H A D | hda_controller.c | 312 u32 remain = 0x1000 - (ofs & 0xfff); setup_bdle() local 313 if (chunk > remain) setup_bdle() 314 chunk = remain; setup_bdle()
|
/linux-4.1.27/drivers/hwmon/ |
H A D | ina2xx.c | 225 * power and current registers will also remain at 0. In case ina2xx_do_update()
|
/linux-4.1.27/drivers/infiniband/core/ |
H A D | fmr_pool.c | 509 * Unmap an FMR. The FMR mapping may remain valid until the FMR is
|
/linux-4.1.27/drivers/net/ethernet/altera/ |
H A D | altera_sgdma.c | 142 /* For SGDMA, interrupts remain enabled after initially enabling,
|
/linux-4.1.27/drivers/media/pci/tw68/ |
H A D | tw68-core.c | 88 * after this "all register content remain unchanged", so we also write
|
/linux-4.1.27/drivers/media/platform/soc_camera/ |
H A D | soc_scale_crop.c | 66 /* Client crop has changed, update our sub-rectangle to remain within the area */ update_subrect()
|
/linux-4.1.27/drivers/media/tuners/ |
H A D | tda9887.c | 561 SECAM-L, and port 2 should remain inactive (1) for SECAM-L'. tda9887_configure()
|
/linux-4.1.27/drivers/regulator/ |
H A D | mc13892-regulator.c | 424 * the HI bit must always remain 0. So do not do anything strange if mc13892_sw_regulator_get_voltage_sel()
|
/linux-4.1.27/drivers/sbus/char/ |
H A D | jsflash.c | 298 * XXX Small togo may remain if 1 byte is ordered. jsf_read()
|
/linux-4.1.27/drivers/staging/speakup/ |
H A D | speakup_decpc.c | 79 #define CTRL_buff_free 0x0800 /* buffer remain count */
|
/linux-4.1.27/drivers/staging/lustre/lustre/llite/ |
H A D | rw26.c | 68 * [0, offset] bytes of the page remain valid (this is for a case of not-page
|
/linux-4.1.27/drivers/staging/lustre/lustre/obdclass/ |
H A D | lu_object.c | 1870 unsigned long remain = sc->nr_to_scan, freed = 0; lu_cache_shrink_scan() local 1889 freed = lu_site_purge(&lu_shrink_env, s, remain); lu_cache_shrink_scan() 1890 remain -= freed; lu_cache_shrink_scan() 1900 return sc->nr_to_scan - remain; lu_cache_shrink_scan()
|
/linux-4.1.27/drivers/gpu/drm/atmel-hlcdc/ |
H A D | atmel_hlcdc_layer.h | 206 * The structure fields must remain in this specific order, because they're
|
/linux-4.1.27/drivers/gpu/drm/ |
H A D | drm_pci.c | 122 * on most archs and has to remain so for userspace interface drm_get_pci_domain()
|
/linux-4.1.27/block/ |
H A D | blk-mq-tag.c | 610 * Don't need (or can't) update reserved tags here, they remain blk_mq_tag_update_depth()
|