/linux-4.1.27/net/ceph/ |
D | pagelist.c | 46 pl->room += PAGE_SIZE; in ceph_pagelist_addpage() 55 while (pl->room < len) { in ceph_pagelist_append() 56 size_t bit = pl->room; in ceph_pagelist_append() 62 pl->room -= bit; in ceph_pagelist_append() 72 pl->room -= len; in ceph_pagelist_append() 83 if (space <= pl->room) in ceph_pagelist_reserve() 85 space -= pl->room; in ceph_pagelist_reserve() 120 c->room = pl->room; in ceph_pagelist_set_cursor() 143 pl->room = c->room; in ceph_pagelist_truncate()
|
/linux-4.1.27/drivers/usb/serial/ |
D | keyspan_pda.c | 477 u8 *room; in keyspan_pda_write() local 479 room = kmalloc(1, GFP_KERNEL); in keyspan_pda_write() 480 if (!room) { in keyspan_pda_write() 492 room, in keyspan_pda_write() 496 dev_dbg(&port->dev, "roomquery says %d\n", *room); in keyspan_pda_write() 497 priv->tx_room = *room; in keyspan_pda_write() 499 kfree(room); in keyspan_pda_write() 609 u8 *room; in keyspan_pda_open() local 614 room = kmalloc(1, GFP_KERNEL); in keyspan_pda_open() 615 if (!room) in keyspan_pda_open() [all …]
|
D | omninet.c | 219 int room = 0; /* Default: no room */ in omninet_write_room() local 222 room = wport->bulk_out_size - OMNINET_HEADERLEN; in omninet_write_room() 224 dev_dbg(&port->dev, "%s - returns %d\n", __func__, room); in omninet_write_room() 226 return room; in omninet_write_room()
|
D | generic.c | 215 int room; in usb_serial_generic_write_room() local 221 room = kfifo_avail(&port->write_fifo); in usb_serial_generic_write_room() 224 dev_dbg(&port->dev, "%s - returns %d\n", __func__, room); in usb_serial_generic_write_room() 225 return room; in usb_serial_generic_write_room()
|
D | digi_acceleport.c | 1049 int room; in digi_write_room() local 1055 room = 0; in digi_write_room() 1057 room = port->bulk_out_size - 2 - priv->dp_out_buf_len; in digi_write_room() 1060 dev_dbg(&port->dev, "digi_write_room: port=%d, room=%d\n", priv->dp_port_num, room); in digi_write_room() 1061 return room; in digi_write_room()
|
D | oti6858.c | 371 int room = 0; in oti6858_write_room() local 375 room = kfifo_avail(&port->write_fifo); in oti6858_write_room() 378 return room; in oti6858_write_room()
|
D | cypress_m8.c | 804 int room = 0; in cypress_write_room() local 808 room = kfifo_avail(&priv->write_fifo); in cypress_write_room() 811 dev_dbg(&port->dev, "%s - returns %d\n", __func__, room); in cypress_write_room() 812 return room; in cypress_write_room()
|
D | mos7840.c | 1264 int room = 0; in mos7840_write_room() local 1278 room += URB_TRANSFER_BUFFER_SIZE; in mos7840_write_room() 1282 room = (room == 0) ? 0 : room - URB_TRANSFER_BUFFER_SIZE + 1; in mos7840_write_room() 1283 dev_dbg(&mos7840_port->port->dev, "%s - returns %d\n", __func__, room); in mos7840_write_room() 1284 return room; in mos7840_write_room()
|
D | ti_usb_3410_5052.c | 603 int room = 0; in ti_write_room() local 610 room = kfifo_avail(&port->write_fifo); in ti_write_room() 613 dev_dbg(&port->dev, "%s - returns %d\n", __func__, room); in ti_write_room() 614 return room; in ti_write_room()
|
D | mos7720.c | 1186 int room = 0; in mos7720_write_room() local 1197 room += URB_TRANSFER_BUFFER_SIZE; in mos7720_write_room() 1200 dev_dbg(&port->dev, "%s - returns %d\n", __func__, room); in mos7720_write_room() 1201 return room; in mos7720_write_room()
|
D | io_ti.c | 1969 int room = 0; in edge_write_room() local 1978 room = kfifo_avail(&port->write_fifo); in edge_write_room() 1981 dev_dbg(&port->dev, "%s - returns %d\n", __func__, room); in edge_write_room() 1982 return room; in edge_write_room()
|
D | io_edgeport.c | 1314 int room; in edge_write_room() local 1329 room = edge_port->txCredits - edge_port->txfifo.count; in edge_write_room() 1332 dev_dbg(&port->dev, "%s - returns %d\n", __func__, room); in edge_write_room() 1333 return room; in edge_write_room()
|
/linux-4.1.27/drivers/tty/ipwireless/ |
D | tty.c | 194 int room, ret; in ipw_write() local 205 room = IPWIRELESS_TX_QUEUE_SIZE - tty->tx_bytes_queued; in ipw_write() 206 if (room < 0) in ipw_write() 207 room = 0; in ipw_write() 209 if (count > room) in ipw_write() 210 count = room; in ipw_write() 234 int room; in ipw_write_room() local 243 room = IPWIRELESS_TX_QUEUE_SIZE - tty->tx_bytes_queued; in ipw_write_room() 244 if (room < 0) in ipw_write_room() 245 room = 0; in ipw_write_room() [all …]
|
/linux-4.1.27/include/linux/ceph/ |
D | pagelist.h | 13 size_t room; member 22 size_t room; /* room remaining to reset to */ member 30 pl->room = 0; in ceph_pagelist_init()
|
/linux-4.1.27/drivers/net/caif/ |
D | caif_serial.c | 221 int tty_wr, len, room; in handle_tx() local 235 room = tty_write_room(tty); in handle_tx() 236 if (!room) in handle_tx() 238 if (room > ser_write_chunk) in handle_tx() 239 room = ser_write_chunk; in handle_tx() 240 if (len > room) in handle_tx() 241 len = room; in handle_tx()
|
/linux-4.1.27/drivers/tty/serial/ |
D | men_z135_uart.c | 253 int room; in men_z135_handle_rx() local 266 room = tty_buffer_request_room(tport, size); in men_z135_handle_rx() 267 if (room != size) in men_z135_handle_rx() 270 room); in men_z135_handle_rx() 272 if (room == 0) in men_z135_handle_rx() 275 memcpy_fromio(uart->rxbuf, port->membase + MEN_Z135_RX_RAM, room); in men_z135_handle_rx() 278 iowrite32(room, port->membase + MEN_Z135_RX_CTRL); in men_z135_handle_rx() 280 copied = tty_insert_flip_string(tport, uart->rxbuf, room); in men_z135_handle_rx() 281 if (copied != room) in men_z135_handle_rx() 284 copied, room); in men_z135_handle_rx()
|
D | sh-sci.c | 1295 int i, active, room; in sci_dma_rx_push() local 1297 room = tty_buffer_request_room(tport, count); in sci_dma_rx_push() 1308 if (room < count) in sci_dma_rx_push() 1310 count - room); in sci_dma_rx_push() 1311 if (!room) in sci_dma_rx_push() 1312 return room; in sci_dma_rx_push() 1314 for (i = 0; i < room; i++) in sci_dma_rx_push() 1318 port->icount.rx += room; in sci_dma_rx_push() 1320 return room; in sci_dma_rx_push()
|
D | pch_uart.c | 672 int room; in dma_push_rx() local 676 room = tty_buffer_request_room(tport, size); in dma_push_rx() 678 if (room < size) in dma_push_rx() 680 size - room); in dma_push_rx() 681 if (!room) in dma_push_rx() 686 port->icount.rx += room; in dma_push_rx() 688 return room; in dma_push_rx()
|
/linux-4.1.27/drivers/staging/comedi/drivers/ |
D | amplc_pci224.c | 509 unsigned int room; in pci224_ao_handle_fifo() local 517 room = PCI224_FIFO_ROOM_EMPTY; in pci224_ao_handle_fifo() 527 room = PCI224_FIFO_ROOM_ONETOHALF; in pci224_ao_handle_fifo() 530 room = PCI224_FIFO_ROOM_HALFTOFULL; in pci224_ao_handle_fifo() 533 room = PCI224_FIFO_ROOM_FULL; in pci224_ao_handle_fifo() 536 if (room >= PCI224_FIFO_ROOM_ONETOHALF) { in pci224_ao_handle_fifo() 545 room /= cmd->chanlist_len; in pci224_ao_handle_fifo() 548 if (num_scans > room) in pci224_ao_handle_fifo() 549 num_scans = room; in pci224_ao_handle_fifo()
|
D | amplc_pci230.c | 1095 unsigned int room; in pci230_handle_ao_fifo() local 1126 room = PCI230P2_DAC_FIFOROOM_FULL; in pci230_handle_ao_fifo() 1128 room = PCI230P2_DAC_FIFOROOM_HALFTOFULL; in pci230_handle_ao_fifo() 1130 room = PCI230P2_DAC_FIFOROOM_EMPTY; in pci230_handle_ao_fifo() 1132 room = PCI230P2_DAC_FIFOROOM_ONETOHALF; in pci230_handle_ao_fifo() 1134 room /= cmd->chanlist_len; in pci230_handle_ao_fifo() 1136 if (num_scans > room) in pci230_handle_ao_fifo() 1137 num_scans = room; in pci230_handle_ao_fifo()
|
/linux-4.1.27/arch/powerpc/kernel/ |
D | prom_init.c | 1988 unsigned long room, chunk; in make_room() local 1992 room = alloc_top - alloc_bottom; in make_room() 1993 if (room > DEVTREE_CHUNK_SIZE) in make_room() 1994 room = DEVTREE_CHUNK_SIZE; in make_room() 1995 if (room < PAGE_SIZE) in make_room() 1998 chunk = alloc_up(room, 0); in make_room() 2002 *mem_end = chunk + room; in make_room() 2012 void *room = make_room(mem_start, mem_end, 4, 4); \ 2013 *(__be32 *)room = cpu_to_be32(token); \ 2092 int l, room, has_phandle = 0; in scan_dt_build_struct() local [all …]
|
/linux-4.1.27/arch/m68k/fpsp040/ |
D | fpsp.h | 100 .set FP_SCR1,LV+76 | room for a temporary float value 101 .set FP_SCR2,LV+92 | room for a temporary float value 102 .set L_SCR1,LV+108 | room for a temporary long value 103 .set L_SCR2,LV+112 | room for a temporary long value 112 .set L_SCR3,LV+124 | room for a temporary long value 113 .set FP_SCR3,LV+128 | room for a temporary float value 114 .set FP_SCR4,LV+144 | room for a temporary float value 115 .set FP_SCR5,LV+160 | room for a temporary float value
|
D | do_func.S | 81 lsll #3,%d0 |make room for STAG
|
/linux-4.1.27/arch/um/drivers/ |
D | line.c | 53 int room; in line_write_room() local 56 room = write_room(line); in line_write_room() 59 return room; in line_write_room() 87 int end, room; in buffer_data() local 100 room = write_room(line); in buffer_data() 101 len = (len > room) ? room : len; in buffer_data()
|
/linux-4.1.27/arch/alpha/ |
D | Kconfig.debug | 16 to 0x810000 to make room for the Wildfire's larger SRM console. 18 extra room.
|
/linux-4.1.27/net/ipv4/ |
D | icmp.c | 547 int room; in icmp_send() local 690 room = dst_mtu(&rt->dst); in icmp_send() 691 if (room > 576) in icmp_send() 692 room = 576; in icmp_send() 693 room -= sizeof(struct iphdr) + icmp_param->replyopts.opt.opt.optlen; in icmp_send() 694 room -= sizeof(struct icmphdr); in icmp_send() 697 if (icmp_param->data_len > room) in icmp_send() 698 icmp_param->data_len = room; in icmp_send()
|
/linux-4.1.27/drivers/bluetooth/ |
D | hci_ll.c | 350 int room = skb_tailroom(ll->rx_skb); in ll_check_data_len() local 352 BT_DBG("len %d room %d", len, room); in ll_check_data_len() 356 } else if (len > room) { in ll_check_data_len()
|
/linux-4.1.27/drivers/net/wimax/i2400m/ |
D | tx.c | 438 size_t room, tail_room, needed_size; in i2400m_tx_fifo_push() local 442 room = I2400M_TX_BUF_SIZE - (i2400m->tx_in - i2400m->tx_out); in i2400m_tx_fifo_push() 443 if (room < needed_size) { /* this takes care of Case B */ in i2400m_tx_fifo_push() 464 if (room - tail_room >= needed_size) { in i2400m_tx_fifo_push()
|
/linux-4.1.27/arch/ia64/kernel/ |
D | paravirt_patch.c | 253 unsigned long room = ebundle - sbundle; in __paravirt_patch_apply_bundle() local 258 if (room < need) { in __paravirt_patch_apply_bundle() 263 type, need, room); in __paravirt_patch_apply_bundle()
|
/linux-4.1.27/Documentation/ABI/stable/ |
D | sysfs-firmware-opal-elog | 15 Linux if there is no room for more log entries. 19 the service processor needs more room for log entries,
|
/linux-4.1.27/sound/core/seq/ |
D | seq_memory.h | 49 int room; /* watermark for sleep/wakeup */ member
|
D | seq_memory.c | 42 return snd_seq_pool_available(pool) >= pool->room; in snd_seq_output_ok() 408 pool->room = (pool->size + 1) / 2; in snd_seq_pool_init()
|
D | seq_clientmgr.c | 1887 info.output_room = cptr->pool->room; in snd_seq_ioctl_get_client_pool() 1944 client->pool->room = info.output_room; in snd_seq_ioctl_set_client_pool()
|
/linux-4.1.27/Documentation/virtual/kvm/ |
D | nested-vmx.txt | 97 u32 padding[7]; /* room for future expansion */ 120 u64 padding64[8]; /* room for future expansion */ 163 natural_width paddingl[8]; /* room for future expansion */ 210 u32 padding32[8]; /* room for future expansion */
|
/linux-4.1.27/scripts/kconfig/lxdialog/ |
D | util.c | 385 int prompt_len, room, wlen; in print_autowrap() local 411 room = width - cur_x; in print_autowrap() 413 if (wlen > room || in print_autowrap() 415 && wlen + 1 + strlen(sp) > room in print_autowrap() 417 || wlen + 1 + (sp2 - sp) > room))) { in print_autowrap()
|
/linux-4.1.27/drivers/tty/ |
D | metag_da.c | 531 int room; in dashtty_write_room() local 538 room = SERIAL_XMIT_SIZE - dport->xmit_cnt; in dashtty_write_room() 541 return room; in dashtty_write_room()
|
D | n_tty.c | 1710 int room, n, rcvd = 0, overflow; in n_tty_receive_buf_common() local 1730 room = N_TTY_BUF_SIZE - (ldata->read_head - tail); in n_tty_receive_buf_common() 1732 room = (room + 2) / 3; in n_tty_receive_buf_common() 1733 room--; in n_tty_receive_buf_common() 1734 if (room <= 0) { in n_tty_receive_buf_common() 1736 if (overflow && room < 0) in n_tty_receive_buf_common() 1738 room = overflow; in n_tty_receive_buf_common() 1739 ldata->no_room = flow && !room; in n_tty_receive_buf_common() 1743 n = min(count, room); in n_tty_receive_buf_common() 1758 tty->receive_room = room; in n_tty_receive_buf_common()
|
D | n_r3964.c | 441 int room = 0; in transmit_block() local 447 room = tty_write_room(tty); in transmit_block() 450 pBlock, room, pBlock->length); in transmit_block() 453 if (room < 2) in transmit_block() 462 room--; in transmit_block() 465 if ((pInfo->tx_position == pBlock->length) && (room >= 3)) { in transmit_block()
|
D | mips_ejtag_fdc.c | 849 int room; in mips_ejtag_fdc_tty_write_room() local 853 room = priv->xmit_size - dport->xmit_cnt; in mips_ejtag_fdc_tty_write_room() 856 return room; in mips_ejtag_fdc_tty_write_room()
|
D | nozomi.c | 1705 int room = 4096; in ntty_write_room() local 1709 room = kfifo_avail(&port->fifo_ul); in ntty_write_room() 1711 return room; in ntty_write_room()
|
/linux-4.1.27/drivers/misc/ti-st/ |
D | st_core.c | 167 int room = skb_tailroom(st_gdata->rx_skb); in st_check_data_len() local 169 pr_debug("len %d room %d", len, room); in st_check_data_len() 178 } else if (len > room) { in st_check_data_len() 183 room); in st_check_data_len()
|
D | st_kim.c | 106 register int room = skb_tailroom(kim_gdata->rx_skb); in kim_check_data_len() local 108 pr_debug("len %d room %d", len, room); in kim_check_data_len() 112 } else if (len > room) { in kim_check_data_len() 117 room); in kim_check_data_len()
|
/linux-4.1.27/drivers/net/usb/ |
D | rndis_host.c | 549 int room = skb_headroom(skb); in rndis_tx_fixup() local 552 if (unlikely((sizeof *hdr) <= room)) in rndis_tx_fixup() 556 room += skb_tailroom(skb); in rndis_tx_fixup() 557 if (likely((sizeof *hdr) <= room)) { in rndis_tx_fixup()
|
D | hso.c | 1387 int room; in hso_serial_write_room() local 1391 room = serial->tx_data_length - serial->tx_buffer_count; in hso_serial_write_room() 1395 return room; in hso_serial_write_room()
|
/linux-4.1.27/net/ipv6/ |
D | ip6_flowlabel.c | 445 int room = FL_MAX_SIZE - atomic_read(&fl_size); in mem_check() local 448 if (room > FL_MAX_SIZE - FL_MAX_PER_SOCK) in mem_check() 456 if (room <= 0 || in mem_check() 458 (count > 0 && room < FL_MAX_SIZE/2) || room < FL_MAX_SIZE/4) && in mem_check()
|
/linux-4.1.27/arch/arm/crypto/ |
D | sha256-core.S_shipped | 118 str r1,[sp,#17*4] @ make room for r1 135 str r1,[sp,#17*4] @ make room for r1 176 str r1,[sp,#17*4] @ make room for r1 193 str r1,[sp,#17*4] @ make room for r1 234 str r1,[sp,#17*4] @ make room for r1 251 str r1,[sp,#17*4] @ make room for r1 292 str r1,[sp,#17*4] @ make room for r1 309 str r1,[sp,#17*4] @ make room for r1 350 str r1,[sp,#17*4] @ make room for r1 367 str r1,[sp,#17*4] @ make room for r1 [all …]
|
/linux-4.1.27/fs/f2fs/ |
D | dir.c | 166 bool room = false; in find_in_level() local 182 room = true; in find_in_level() 191 room = true; in find_in_level() 195 if (!de && room && F2FS_I(dir)->chash != namehash) { in find_in_level()
|
/linux-4.1.27/drivers/isdn/capi/ |
D | capi.c | 1138 int room; in capinc_tty_write_room() local 1140 room = CAPINC_MAX_SENDQUEUE-skb_queue_len(&mp->outqueue); in capinc_tty_write_room() 1141 room *= CAPI_MAX_BLKSIZE; in capinc_tty_write_room() 1142 pr_debug("capinc_tty_write_room = %d\n", room); in capinc_tty_write_room() 1143 return room; in capinc_tty_write_room()
|
/linux-4.1.27/drivers/usb/gadget/function/ |
D | u_serial.c | 945 int room = 0; in gs_write_room() local 949 room = gs_buf_space_avail(&port->port_write_buf); in gs_write_room() 953 port->port_num, tty, room); in gs_write_room() 955 return room; in gs_write_room()
|
/linux-4.1.27/net/bluetooth/rfcomm/ |
D | tty.c | 815 int room = 0; in rfcomm_tty_write_room() local 818 room = rfcomm_room(dev); in rfcomm_tty_write_room() 820 BT_DBG("tty %p room %d", tty, room); in rfcomm_tty_write_room() 822 return room; in rfcomm_tty_write_room()
|
/linux-4.1.27/arch/cris/arch-v32/kernel/ |
D | entry.S | 344 subq 10*4, $sp ; Make room for R9. 391 subq 14*4, $sp ; Make room for R0-R13. 489 subq 14*4, $sp ; Make room for r0-r13.
|
/linux-4.1.27/arch/m68k/ifpsp060/ |
D | ilsp.doc | 86 subq.l &0x8,%sp # make room for result on stack 100 subq.l &0x8,%sp # make room for result on stack
|
/linux-4.1.27/Documentation/video4linux/cx2341x/ |
D | README.vbi | 20 If all lines are used, then there is no longer room for the bitmask. To solve this
|
/linux-4.1.27/drivers/uwb/ |
D | Kconfig | 11 optimized for in-room use (480Mbps at 2 meters, 110Mbps at
|
/linux-4.1.27/Documentation/networking/ |
D | driver.txt | 72 This error can deadlock sockets waiting for send buffer room
|
D | rds.txt | 130 there's room on the send queue (ie the number of bytes queued 188 more send room)
|
D | fib_trie.txt | 84 and there may be some room for experimentation here.
|
D | de4x5.txt | 142 linux/drivers/net/Space.c to make room for them. Hence, module loading
|
D | 3c509.txt | 172 0x08 Tx FIFO room available
|
D | spider_net.txt | 189 is full, the netdev is stopped. When there is room in the ring,
|
D | filter.txt | 813 has room for new instructions. Some of them may use 16/24/32 byte encoding. New
|
D | ip-sysctl.txt | 721 causes the oldest entry in the bucket to be removed to make room.
|
/linux-4.1.27/arch/m32r/include/asm/ |
D | assembler.h | 130 addi sp, #-4 ; room for implicit pt_regs parameter
|
/linux-4.1.27/arch/mn10300/mm/ |
D | Kconfig.cache | 15 make room. Only at that point is it written back.
|
/linux-4.1.27/Documentation/arm/nwfpe/ |
D | README | 9 possible, but there remains much room for improvement.
|
/linux-4.1.27/Documentation/mtd/ |
D | nand_ecc.txt | 5 I felt there was room for optimisation. I bashed the code for a few hours 8 Still I was not too happy as I felt there was additional room for improvement. 264 Fortunately there is plenty of room for improvement. 566 There is a little bit more room for improvement though. There are three 644 further there is still room to optimize the generation of the ecc codes.
|
/linux-4.1.27/arch/arc/include/asm/ |
D | entry.h | 313 st.a sp, [r9, -16] ; Make room for orig_r0, ECR, user_r25
|
/linux-4.1.27/Documentation/x86/x86_64/ |
D | kernel-stacks | 21 the split thread and interrupt stacks on i386, this gives more room
|
/linux-4.1.27/scripts/kconfig/ |
D | zconf.lex.c_shipped | 214 /* Size of input buffer in bytes, not including room for EOB 1522 { /* Not enough room in the buffer - grow it. */ 1540 /* Include room in for 2 EOB chars. */ 1646 { /* need to shift things up to make room */ 2023 /* They forgot to leave room for the EOB's. */
|
/linux-4.1.27/arch/cris/arch-v10/kernel/ |
D | entry.S | 435 move $brp,[$sp=$sp-16]; instruction pointer and room for a fake SBFS frame 563 subq 14*4, $sp ; Make room for r0-r13.
|
/linux-4.1.27/scripts/genksyms/ |
D | lex.lex.c_shipped | 195 /* Size of input buffer in bytes, not including room for EOB 1095 { /* Not enough room in the buffer - grow it. */ 1113 /* Include room in for 2 EOB chars. */ 1245 { /* need to shift things up to make room */ 1628 /* They forgot to leave room for the EOB's. */
|
/linux-4.1.27/Documentation/video4linux/ |
D | README.ivtv | 19 The primary goal of the IVTV project is to provide a "clean room" Linux
|
D | v4l2-framework.txt | 1059 a new event is raised and there is no more room. The replace() callback
|
/linux-4.1.27/Documentation/hwmon/ |
D | pc87360 | 146 room for per motherboard specificities, unfortunately. Even worse,
|
/linux-4.1.27/Documentation/input/ |
D | ff.txt | 117 This makes room for new effects in the device's memory. Note that this also
|
/linux-4.1.27/scripts/dtc/ |
D | dtc-lexer.lex.c_shipped | 205 /* Size of input buffer in bytes, not including room for EOB 1399 { /* Not enough room in the buffer - grow it. */ 1417 /* Include room in for 2 EOB chars. */ 1891 /* They forgot to leave room for the EOB's. */
|
/linux-4.1.27/arch/frv/ |
D | Kconfig | 166 make room. Only at that point is it written back.
|
/linux-4.1.27/firmware/keyspan_pda/ |
D | keyspan_pda.S | 441 ;; 06 is query room 890 ;; step 2: is there now room?
|
D | xircom_pgs.S | 479 ;; 06 is query room 951 ;; step 2: is there now room?
|
/linux-4.1.27/Documentation/ |
D | crc32.txt | 61 can be precomputed, and merging in the final 32 zero bits to make room
|
D | svga.txt | 175 video modes. Works only with some boot loaders which leave enough room for the
|
D | ManagementStyle | 271 room door, you _will_ get an immense feeling of personal accomplishment
|
D | xillybus.txt | 153 room in the buffers to store any of the data in the buffers.
|
D | CodingStyle | 490 multiple data declarations). This leaves you room for a small comment on each
|
D | kernel-parameters.txt | 3912 decrease the size and leave more room for directly
|
/linux-4.1.27/Documentation/filesystems/nfs/ |
D | rpc-cache.txt | 82 enough room or other problem.
|
/linux-4.1.27/Documentation/filesystems/ |
D | relay.txt | 333 the current sub-buffer, because there's no room left for it, the 402 whatever information the client wants. In the example above, room is
|
D | coda.txt | 466 exchange information. It has room for future extensions such as 1047 has room to deal with an execp input field, probably this field should
|
/linux-4.1.27/Documentation/serial/ |
D | tty.txt | 125 If there is no room in the queue, the character is
|
/linux-4.1.27/Documentation/block/ |
D | data-integrity.txt | 238 there is room in the bip bio_vec array (nr_pages).
|
D | biodoc.txt | 337 to the device. The cmd block in the request structure has room for filling
|
/linux-4.1.27/Documentation/timers/ |
D | highres.txt | 237 The implementation leaves room for further development like full tickless
|
/linux-4.1.27/arch/m68k/ |
D | Kconfig.machine | 384 a system with the RAM based at address 0, and leaving enough room
|
/linux-4.1.27/Documentation/ioctl/ |
D | ioctl-number.txt | 25 unused block with enough room for expansion: 32 to 256 ioctl commands.
|
/linux-4.1.27/Documentation/development-process/ |
D | 6.Followthrough | 11 room for improvement. The kernel development process recognizes this fact,
|
D | 4.Coding | 32 quickly understand any part of it. So there is no longer room for
|
/linux-4.1.27/Documentation/vm/ |
D | frontswap.txt | 168 have room, frontswap_store returns -1 and the kernel swaps the page
|
/linux-4.1.27/fs/xfs/libxfs/ |
D | xfs_bmap.c | 1260 xfs_extnum_t room; /* number of entries there's room for */ in xfs_bmap_read_extents() local 1299 room = ifp->if_bytes / (uint)sizeof(xfs_bmbt_rec_t); in xfs_bmap_read_extents() 1311 if (unlikely(i + num_recs > room)) { in xfs_bmap_read_extents() 1312 ASSERT(i + num_recs <= room); in xfs_bmap_read_extents()
|
/linux-4.1.27/arch/m68k/ifpsp060/src/ |
D | ilsp.S | 58 # leave room for future possible aditions.
|
D | pfpsp.S | 2999 subq.l &0x8,%sp # make room for new stack 3296 # on the system stack must be carefully moved "down" to make room # 4403 sub.l %d0,%sp # make room for fpregs
|
D | fpsp.S | 3000 subq.l &0x8,%sp # make room for new stack 3297 # on the system stack must be carefully moved "down" to make room # 18354 sub.l %d0,%sp # make room for fpregs
|
D | fplsp.S | 267 # leave room for future possible additions
|
/linux-4.1.27/Documentation/trace/ |
D | ftrace.txt | 153 If the last page allocated has room for more bytes
|