Home
last modified time | relevance | path

Searched refs:multiple (Results 1 – 200 of 642) sorted by relevance

1234

/linux-4.4.14/sound/pci/ctxfi/
Dxfi.c27 static unsigned int multiple = 2; variable
30 MODULE_PARM_DESC(multiple, "Rate multiplier (default=2)");
31 module_param(multiple, uint, S_IRUGO);
86 if ((multiple != 1) && (multiple != 2) && (multiple != 4)) { in ct_card_probe()
88 multiple); in ct_card_probe()
91 multiple = 2; in ct_card_probe()
93 err = ct_atc_create(card, pci, reference_rate, multiple, in ct_card_probe()
/linux-4.4.14/Documentation/
Dcrc32.txt4 and the whole thing (message+CRC) is a multiple of the given
34 appropriate multiple of the divisor to subtract to being the remainder
39 throw the quotient bit away, but subtract the appropriate multiple of
45 multiple = remainder & 0x80000000 ? CRCPOLY : 0;
46 remainder = (remainder << 1 | next_input_bit()) ^ multiple;
66 multiple = (remainder & 0x80000000) ? CRCPOLY : 0;
67 remainder = (remainder << 1) ^ multiple;
73 multiple = (remainder & 1) ? CRCPOLY : 0;
74 remainder = (remainder >> 1) ^ multiple;
88 multiple = (remainder & 0x80000000) ? CRCPOLY : 0;
[all …]
Dhsi.txt9 implemented by multiple vendors since then.
11 The HSI interface supports full duplex communication over multiple channels
Dpercpu-rw-semaphore.txt7 The problem with traditional read-write semaphores is that when multiple
Dpi-futex.txt31 Firstly, sharing locks between multiple tasks is a common programming
44 design with multiple tasks (with multiple priority levels) sharing
DSubmitChecklist23 3: Builds on multiple CPU architectures by using local cross-compile tools
103 then test multiple builds with the related kconfig symbols disabled
Dserial-console.txt8 It is possible to specify multiple devices for console output. You can
29 You can specify multiple console= options on the kernel command line.
Dcircular-buffers.txt19 producer and just one consumer. It is possible to handle multiple producers by
20 serialising them, and to handle multiple consumers by serialising them.
58 than 1 if multiple items or variable-sized items are to be included in the
Dkernel-doc-nano-HOWTO.txt58 * One can provide multiple line descriptions
66 * The longer description can have multiple paragraphs.
71 The short description following the subject can span multiple lines
222 All "description" text can span multiple lines, although the
Dsgi-ioc4.txt4 First, even though the IOC4 performs multiple functions, such as an
/linux-4.4.14/drivers/crypto/nx/
Dnx-842.c186 if (slen % c->multiple) in compress()
187 adj_slen = round_up(slen, c->multiple); in compress()
211 if (dlen % c->multiple) in compress()
212 dlen = round_down(dlen, c->multiple); in compress()
217 dlen = round_down(dlen, c->multiple); in compress()
288 add_header = (p.iremain % c.multiple || in nx842_crypto_compress()
292 p.oremain % c.multiple || in nx842_crypto_compress()
370 if (slen % c->multiple) in decompress()
371 adj_slen = round_up(slen, c->multiple); in decompress()
390 if (dlen % c->multiple) in decompress()
[all …]
Dnx-842.h129 int multiple; member
Dnx-842-pseries.c37 .multiple = DDE_BUFFER_LAST_MULT,
50 if (*len % nx842_pseries_constraints.multiple) { in check_constraints()
53 nx842_pseries_constraints.multiple); in check_constraints()
56 *len = round_down(*len, nx842_pseries_constraints.multiple); in check_constraints()
/linux-4.4.14/Documentation/sound/alsa/
DALSA-Configuration.txt43 specify multiple values for the option separated by commas.
61 This option takes multiple strings.
133 This module supports multiple cards. It does not support autoprobe, so
161 This module supports multiple cards, autoprobe and PnP.
172 This module supports multiple cards. It does not support autoprobe
185 This module supports multiple cards.
205 This module supports multiple cards, autoprobe and PnP.
214 This module supports multiple cards.
226 This module supports multiple cards, autoprobe and PnP.
237 This module supports multiple cards.
[all …]
Dserial-u16550.txt11 4 - Generic device with multiple input support (4)
16 In Roland Soundcanvas mode, multiple ALSA raw MIDI substreams are supported
72 but does not allow sending the same byte simultaneously to multiple MIDI Outs.
84 The Generic driver supports multiple input and output substreams over a single
DAudigy-mixer.txt23 is mentioned in multiple controls, the signal is accumulated and can be wrapped
313 WO 9901813 (A1) Audio Effects Processor with multiple asynchronous (Jan. 14, 1999)
328 with a multiport memory onto which multiple asynchronous
342 … US 6195715 Interrupt control for multiple programs communicating with (Feb. 27, 2001)
DSB-Live-mixer.txt37 is mentioned in multiple controls, the signal is accumulated and can be wrapped
324 WO 9901813 (A1) Audio Effects Processor with multiple asynchronous (Jan. 14, 1999)
339 with a multiport memory onto which multiple asynchronous
353 … US 6195715 Interrupt control for multiple programs communicating with (Feb. 27, 2001)
/linux-4.4.14/drivers/media/rc/img-ir/
Dimg-ir-raw.c26 int multiple; in img_ir_refresh_raw() local
30 multiple = ((irq_status & IMG_IR_IRQ_EDGE) == IMG_IR_IRQ_EDGE); in img_ir_refresh_raw()
37 if (multiple && ir_status == raw->last_status) in img_ir_refresh_raw()
/linux-4.4.14/drivers/mmc/host/
Dtmio_mmc_dma.c54 bool aligned = true, multiple = true; in tmio_mmc_start_dma_rx() local
61 multiple = false; in tmio_mmc_start_dma_rx()
67 (align & PAGE_MASK))) || !multiple) { in tmio_mmc_start_dma_rx()
130 bool aligned = true, multiple = true; in tmio_mmc_start_dma_tx() local
137 multiple = false; in tmio_mmc_start_dma_tx()
143 (align & PAGE_MASK))) || !multiple) { in tmio_mmc_start_dma_tx()
Dmmc_spi.c573 int multiple, in mmc_spi_setup_data_message() argument
591 if (multiple) in mmc_spi_setup_data_message()
642 if (multiple || direction == DMA_TO_DEVICE) { in mmc_spi_setup_data_message()
887 int multiple = (data->blocks > 1); in mmc_spi_data_do() local
895 mmc_spi_setup_data_message(host, multiple, direction); in mmc_spi_data_do()
962 if (!multiple) in mmc_spi_data_do()
989 if (direction == DMA_TO_DEVICE && multiple) { in mmc_spi_data_do()
/linux-4.4.14/Documentation/filesystems/nfs/
Dpnfs.txt5 reference multiple devices, each of which can reference multiple data servers.
6 Each data server can be referenced by multiple devices. Each device
7 can be referenced by multiple layouts. To keep all of this straight,
37 justification, but seems reasonable given that we can have multiple
38 deviceid's per filesystem, and multiple filesystems per nfs_client.
/linux-4.4.14/Documentation/power/
Dcharger-manager.txt6 and where each battery may have multiple chargers attached and the userland
7 wants to look at the aggregated information of the multiple chargers.
11 represents an independent battery with chargers. If there are multiple
13 the system may need multiple instances of Charger Manager.
20 * Support for multiple chargers (e.g., a device with USB, AC, and solar panels)
21 A system may have multiple chargers (or power sources) and some of
25 aggregates charger-related information from multiple sources and
64 if there are multiple batteries. If there are multiple batteries, the
65 multiple instances of Charger Manager share the same charger_global_desc
/linux-4.4.14/Documentation/cpuidle/
Dcore.txt2 Supporting multiple CPU idle levels in kernel
8 Various CPUs today support multiple idle levels that are differentiated
Dgovernor.txt4 Supporting multiple CPU idle levels in kernel
Ddriver.txt3 Supporting multiple CPU idle levels in kernel
/linux-4.4.14/Documentation/block/
Dstat.txt9 Q. Why are there multiple statistics in a single file? Doesn't sysfs
13 statistics were exported as multiple files containing one statistic
58 waited on this block device. If there are multiple I/O requests waiting,
80 on this block device. If there are multiple I/O requests waiting, this
Dcfq-iosched.txt28 devices like multiple SATA/SAS disks in hardware RAID configuration. The down
35 there are multiple spindles behind single LUN (Host based hardware RAID
79 multiple queues in the group at the same time and achieve higher throughput
209 it would be better to dispatch multiple requests from multiple cfq queues in
214 single queue and also allow dispatch from multiple cfq queue at the same time.
254 media which can support higher queue depth (multiple requests at in
274 multiple sequential readers.
282 badly in presence of multiple sequential readers.
285 provides isolation from multiple sequential readers and at the same
/linux-4.4.14/Documentation/devicetree/bindings/powerpc/fsl/cpm_qe/
Dcpm.txt22 * Properties common to multiple CPM/QE devices
44 - If multiple range entries are used, the difference between the parent
48 multiple range entries not be used.
/linux-4.4.14/drivers/gpu/vga/
DKconfig7 hard-decoded addresses as they did on ISA. When multiple PCI devices
18 multiple GPUS. The overhead for each GPU is very small.
/linux-4.4.14/Documentation/devicetree/bindings/iommu/
Diommu.txt22 * Provide address space isolation between multiple contexts.
29 IOMMUs can be single-master or multiple-master. Single-master IOMMU devices
30 typically have a fixed association to the master device, whereas multiple-
48 This may also apply to multiple master IOMMU devices that do not allow the
71 have multiple master interfaces (to one or more IOMMU devices).
119 /* multiple-master IOMMU */
Darm,smmu.txt35 combined interrupt, it must be listed multiple times.
/linux-4.4.14/Documentation/devicetree/bindings/dma/
Drenesas,rcar-dmac.txt3 Renesas R-Car Generation 2 SoCs have multiple multi-channel DMA
4 controller instances named DMAC capable of serving multiple clients. Channels
11 number of clients to be served, channels must be shared between multiple DMA
Dshdma.txt3 Sh-/r-mobile and r-car systems often have multiple identical DMA controller
/linux-4.4.14/Documentation/devicetree/bindings/memory-controllers/
Dingenic,jz4780-nemc.txt26 Multiple registers can be specified across multiple banks. This is needed,
27 for example, for packaged NAND devices with multiple dies. Such devices
38 If a child node references multiple banks in its "reg" property, the same value
/linux-4.4.14/Documentation/networking/
Dalias.txt5 IP-aliases are an obsolete way to manage multiple IP-addresses/masks
6 per interface. Newer tools such as iproute2 support multiple
Dcops.txt32 To load multiple COPS driver Localtalk cards you can do one of the following.
55 * For multiple cards, Ethernet and LocalTalk.
59 * For multiple LocalTalk cards, and an Ethernet card.
Ds2io.txt37 The corresponding adapter's LED will blink multiple times.
46 c. Multi-buffer receive mode. Scattering of packet across multiple
59 with multiple steering options.
Dbonding.txt22 multiple network interfaces into a single logical "bonded" interface.
367 Validation is useful in network configurations in which multiple
371 generated by the multiple bonding instances will fool the standard
421 value should be a multiple of the miimon value; if not, it
422 will be rounded down to the nearest multiple. The default
482 when multiple ports are programmed with the same MAC
809 should be a multiple of the miimon value; if not, it will be
810 rounded down to the nearest multiple. The default value is 0.
885 traffic to a particular network peer to span multiple
887 multiple slaves.
[all …]
Dsctp.txt8 transparent multi-homing, and multiple ordered streams of messages.
Dnetconsole.txt51 It also supports logging to multiple remote agents by specifying
52 parameters for the multiple agents separated by semicolons and the
157 the message is split into multiple fragments by netconsole. These
Dtimestamping.txt21 multiple timestamp sources, including hardware. Supports generating
44 Supports multiple types of timestamp requests. As a result, this
91 through multiple devices and, hence, multiple packet schedulers,
130 have multiple concurrent timestamping requests outstanding. Packets
200 byte range can coexist in multiple segments for protocols that
376 space is responsible to ensure that multiple processes don't interfere
Dskfp.txt101 multiple IP subnetworks (using multiple adapters), but
Dvxge.txt65 multiple steering options (transmit multiqueue enabled by default).
Dnetlink_mmap.txt104 - nm_block_size must be a multiple of the architectures memory page size.
112 - nm_frame_size must be a multiple of NL_MMAP_MSG_ALIGNMENT
303 A single message is constructed and transmitted, to send multiple messages
Dnetdev-features.txt13 verbatim. Today's devices add multiple features and bugs (read: offloads)
79 stateless). It can be called multiple times between successive
/linux-4.4.14/Documentation/devicetree/bindings/soc/rockchip/
Dpower_domain.txt3 Rockchip processors include support for multiple power domains which can be
10 Should be 1 for multiple PM domains.
/linux-4.4.14/arch/mips/sgi-ip27/
DKconfig37 Say Y here to enable replicating the kernel text across multiple
45 across multiple nodes in a NUMA cluster. This trades memory for
/linux-4.4.14/Documentation/devicetree/bindings/clock/ti/
Dcomposite.txt6 register-mapped composite clock with multiple different sub-types;
8 a multiplexer clock with multiple input clock signals or parents, one
Dmux.txt6 register-mapped multiplexer with multiple input clock signals or
/linux-4.4.14/security/integrity/
DKconfig19 bool "Digital signature verification using multiple keyrings"
25 using multiple keyrings. It defines separate keyrings for each
/linux-4.4.14/Documentation/devicetree/bindings/hwlock/
Dhwlock.txt28 or multiple hwlocks, with each hwlock represented by
49 2. Example of a node using multiple specific hwlocks:
/linux-4.4.14/Documentation/hwmon/
Dmax1606534 monitor and sequence multiple system voltages. The MAX16065/MAX16066 can also
39 The MAX16067 flash-configurable system manager monitors and sequences multiple
45 The MAX16070/MAX16071 flash-configurable system monitors supervise multiple
Demc6w20123 multiple DC fans using three Pulse Width Modulator (PWM) outputs. Note
Dw83791d93 method of a single sysfs beep_mask file to a newer method using multiple
98 of triggered alarms. The newer method uses multiple sysfs *_alarm files
/linux-4.4.14/Documentation/ABI/testing/
Dpstore39 multiple) files based on the record size of the underlying
43 Pstore only supports one backend at a time. If multiple
Dsysfs-bus-umc8 multiple capabilities; the UWB Multi-interface
Dsysfs-firmware-sgi_uv14 SGI UV systems can be partitioned into multiple physical
Dsysfs-class-extcon11 port. An external connector may have multiple cables
63 multiple cable states of an extcon device simultaneously.
Dsysfs-bus-coresight-devices-etb105 Description: (RW) Add/remove a sink from a trace path. There can be multiple
Dsysfs-firmware-ofw9 It is possible for multiple device-tree directories to exist.
/linux-4.4.14/Documentation/acpi/
Dmethod-customizing.txt65 Note: We can use a kernel with multiple custom ACPI method running,
67 method override. i.e. if we want to insert/override multiple
68 ACPI methods, we need to redo step c) ~ g) for multiple times.
/linux-4.4.14/Documentation/devicetree/bindings/
Dgraph.txt14 have multiple specifiable ports, each of which can be linked to one or more
24 the connecting data buses. A single port with multiple connections can
25 correspond to multiple devices being connected to the same physical bus.
Dresource-names.txt2 normally accessed by index. However, some devices will have multiple
/linux-4.4.14/Documentation/devicetree/bindings/interrupt-controller/
Dsamsung,exynos4210-combiner.txt8 The interrupt combiner controller consists of multiple combiners. Up to eight
14 controller module (which includes multiple combiners). A combiner in the
Dinterrupts.txt26 to reference multiple interrupt parents. Each entry in this property contains
28 should only be used when a device has multiple interrupt parents.
Darm,vic.txt4 system for interrupt routing. For multiple controllers they can either be
Dbrcm,bcm7038-l1-intc.txt36 If multiple reg ranges and interrupt-parent entries are present on an SMP
Dst,spear3xx-shirq.txt7 There can be multiple groups available on SPEAr3xx variants but not
Dbrcm,bcm7120-l2-intc.txt9 - outputs multiple interrupts signals towards its interrupt controller parent
/linux-4.4.14/Documentation/devicetree/bindings/display/panel/
Ddisplay-timing.txt11 - native-mode: The native mode for the display, in case multiple modes are
46 for displays. If a display supports multiple signal timings, the native-mode
/linux-4.4.14/Documentation/infiniband/
Dcore_locking.txt54 if multiple function calls using the same object are run
62 example, a consumer may safely call ib_poll_cq() on multiple CPUs
75 The low-level driver is responsible for ensuring that multiple
/linux-4.4.14/Documentation/devicetree/bindings/arm/
Dversatile-sysreg.txt4 This is a system control registers block, providing multiple low level
/linux-4.4.14/Documentation/vm/
Dnuma9 comprises multiple components or assemblies each of which may contain 0
21 cells at multiple distances from other cells.
33 can have cells at multiple remote distances from any given cell.
44 Linux divides the system's hardware resources into multiple software
61 the existing nodes--or the system memory for non-NUMA platforms--into multiple
77 Because some nodes contain multiple zones containing different types of
Dhugetlbpage.txt3 the Linux kernel. This support is built on top of multiple page size support
6 architecture supports multiple page sizes 4K, 8K, 64K, 256K, 1M, 4M, 16M,
74 Some platforms support multiple huge page sizes. To allocate huge pages
80 When multiple huge page sizes are supported, /proc/sys/vm/nr_hugepages
143 With support for multiple huge page pools at run-time available, much of
278 By default the value 0755 is picked. If the paltform supports multiple huge
Dcleancache.txt55 that may run multiple kernels (such as hard partitioned or virtualized
120 multiplex physical resources across the varying demands of multiple
127 "fallow" hypervisor-owned RAM to not only be "time-shared" between multiple
137 the proposed "RAMster" driver shares RAM across multiple physical
/linux-4.4.14/arch/um/
DKconfig.net81 choose the Multicast transport (to network multiple UMLs on
82 multiple hosts), Ethertap (to network with the host and the
83 outside world), and/or the Daemon transport (to network multiple
104 say Y. If you need a network between UMLs on multiple physical
137 This Multicast User-Mode Linux network transport allows multiple
151 If you need UMLs on multiple physical hosts to communicate as if
/linux-4.4.14/Documentation/devicetree/bindings/arm/freescale/
Dfsl,vf610-mscm-cpucfg.txt3 The MSCM IP contains multiple sub modules, this binding describes the first
Dfsl,vf610-mscm-ir.txt3 The MSCM IP contains multiple sub modules, this binding describes the second
/linux-4.4.14/arch/mips/sgi-ip32/
DPlatform6 # a multiple of the kernel stack size or the handling of the current variable
/linux-4.4.14/Documentation/devicetree/bindings/arm/tegra/
Dnvidia,tegra20-mc.txt7 GART registers, and hence must be represented as multiple ranges.
Dnvidia,tegra30-mc.txt7 SMMU registers, and hence must be represented as multiple ranges.
/linux-4.4.14/Documentation/trace/
Dstm.txt6 protocol multiplexing data from multiple trace sources, each one of
16 involves multiple trace sources, it needs to be able to map those
64 mmu) will usually contain multiple channels' mmios, so the user will
Dtracepoints.txt87 - if you use the header in multiple source files, #define CREATE_TRACE_POINTS
100 The tracepoint mechanism supports inserting multiple instances of the
/linux-4.4.14/drivers/lguest/
DKconfig7 multiple instances of the same Linux kernel, using the
/linux-4.4.14/Documentation/features/vm/TLB/
Darch-support.txt4 # description: arch supports deferral of TLB flush until multiple pages are unmapped
/linux-4.4.14/Documentation/fb/
Dtgafb.txt20 * Support for multiple resolutions
39 `video=tgafb:option1,option2:value2,option3' (multiple options should be
Dapi.txt60 per macropixel is not a multiple of 8, whether macropixels are padded to the
61 next multiple of 8 bits or packed together into bytes depends on the visual.
68 Macropixels are split across multiple planes. The number of planes is equal to
76 Macropixels are split across multiple planes. The number of planes is equal to
273 bits per pixel is not a multiple of 8, pixel values are padded to the next
274 multiple of 8 bits.
Dpvr2fb.txt24 `video=pvr2fb:option1,option2:value2,option3' (multiple options should be
Daty128fb.txt51 `video=aty128fb:option1,option2:value2,option3' (multiple options should
/linux-4.4.14/Documentation/sound/oss/
DSoundblaster24 multiple=0 Set to disable detection of multiple Soundblaster cards.
DIntroduction29 added info on multiple sound cards of similar types,]
88 multiple sounds at the same time via a single card, eliminating
89 some of the requirements for multiple sound card systems. For
241 The sound drivers will support multiple sound cards and there
247 multiple PCI sound cards of the same type.
284 supports multiple cards with one module by default.
/linux-4.4.14/fs/exofs/
DKconfig.ore3 # Note ORE needs to "select ASYNC_XOR". So Not to force multiple selects
/linux-4.4.14/Documentation/devicetree/bindings/opp/
Dopp.txt10 This document contain multiple versions of OPP binding and only one of them
58 - operating-points-names: Names of OPP tables (required if multiple OPP
100 Entries for multiple regulators must be present in the same order as
110 Entries for multiple regulators must be present in the same order as
364 Example 4: Handling multiple regulators
/linux-4.4.14/arch/powerpc/include/asm/
Demulated_ops.h42 struct ppc_emulated_entry multiple; member
/linux-4.4.14/Documentation/devicetree/bindings/phy/
Dst-spear-miphy.txt14 - phy-id: Instance id of the phy. Only required when there are multiple phys
/linux-4.4.14/fs/notify/inotify/
DKconfig12 new features including multiple file events, one-shot support, and
/linux-4.4.14/tools/testing/selftests/futex/
DREADME48 # there may be multiple ERROR or FAIL messages
55 problem as we intend to write multiple tests which collide in this namespace.
/linux-4.4.14/Documentation/devicetree/bindings/powerpc/fsl/
Dmpc5121-psc.txt25 - fsl,rx-fifo-size : the size of the RX fifo slice (a multiple of 4)
26 - fsl,tx-fifo-size : the size of the TX fifo slice (a multiple of 4)
/linux-4.4.14/Documentation/devicetree/bindings/net/
Dmarvell-orion-net.txt11 the multiple levels is that the port registers are interleaved within a single
16 only one port associated. Multiple ports are implemented as multiple single-port
/linux-4.4.14/Documentation/devicetree/bindings/power/
Dpower_domain.txt3 System on chip designs are often divided into multiple PM domains that can be
19 providing multiple PM domains (e.g. power controllers), but can be any value
Dpd-samsung.txt3 Exynos processors include support for multiple power domains which are used
/linux-4.4.14/Documentation/filesystems/pohmelfs/
Ddesign_notes.txt29 * Read request (data read, directory listing, lookup requests) balancing between multiple servers.
30 * Write requests are replicated to multiple servers and completed only when all of them are acked.
44 caller sleeps waiting for it. Thus, it is possible to issue multiple read commands to different
/linux-4.4.14/Documentation/devicetree/bindings/pwm/
Dpwm-bcm2835.txt7 system, the period and the duty_cycle of the PWM signal is a multiple of
/linux-4.4.14/Documentation/arm/stm32/
Doverview.txt21 All the files for multiple machine families are located in the platform code
/linux-4.4.14/fs/cramfs/
DREADME23 null-padded to a multiple of 4 bytes.
44 padding to multiple of 4 bytes
135 PAGE_CACHE_SIZE: just make cramfs_readpage read multiple blocks.
167 by filename, so the expansion doesn't even have to be a multiple of 4
/linux-4.4.14/Documentation/PCI/
DPCIEBUS-HOWTO.txt37 Express Port is a PCI-PCI Bridge device with multiple distinct
44 Port. In other words, it is impossible to have multiple service
48 To enable multiple service drivers running simultaneously requires
54 - Allow multiple service drivers to run simultaneously on
60 - Allow one service driver to run on multiple PCI-PCI Bridge
Dpci-iov-howto.txt14 capability which makes one physical device appear as multiple virtual
41 valid to reduce duplication in multiple drivers for the same
/linux-4.4.14/Documentation/devicetree/bindings/spi/
Dspi-orion.txt12 - cell-index : Which of multiple SPI controllers is this.
/linux-4.4.14/Documentation/devicetree/bindings/mtd/
Dmtd-physmap.txt10 It's possible to (optionally) define multiple "reg" tuples so that
67 Here an example with multiple "reg" tuples:
/linux-4.4.14/net/sctp/
DKconfig24 -- sequenced delivery of user messages within multiple streams,
27 -- optional bundling of multiple user messages into a single SCTP
/linux-4.4.14/fs/udf/
DKconfig6 file system is supported by multiple operating systems and is more
/linux-4.4.14/Documentation/devicetree/bindings/media/i2c/
Dov2659.txt5 multiple resolutions output, such as UXGA, SVGA, 720p. It also can support
Dov2640.txt3 The Omnivision OV2640 sensor support multiple resolutions output, such as
/linux-4.4.14/Documentation/devicetree/bindings/arm/ux500/
Dpower_domain.txt3 UX500 supports multiple PM domains which are used to gate power to one or
/linux-4.4.14/Documentation/devicetree/bindings/arm/bcm/
Dbrcm,nsp.txt7 several peripheral interfaces including multiple Gigabit Ethernet PHYs,
/linux-4.4.14/scripts/
Dconfig32 commands can be repeated multiple times
/linux-4.4.14/fs/squashfs/
DKconfig74 bool "Use multiple decompressors for parallel I/O"
77 poor performance on parallel I/O workloads when using multiple CPU
88 bool "Use percpu multiple decompressors for parallel I/O"
91 poor performance on parallel I/O workloads when using multiple CPU
/linux-4.4.14/Documentation/arm/sti/
Doverview.txt22 All the files for multiple machine families (STiH415, STiH416, and STiG125)
/linux-4.4.14/drivers/iio/common/hid-sensors/
DKconfig13 There are many attributes which can be shared among multiple
/linux-4.4.14/Documentation/device-mapper/
Dswitch.txt21 is created it is spread across multiple members. The details of the
34 is possible to set up multiple iSCSI sessions to use multiple network
Ddm-io.txt19 to multiple regions are specified by an array of io_region structures.
64 In the case of an write-I/O to multiple regions, this bitset allows dm-io to
Dpersistent-data.txt78 of nested btrees, and take multiple keys. For example, the
84 64bits, although nesting allows you to use multiple keys.
Dstriped.txt19 be a multiple of the chunk size multiplied by the number of underlying devices.
/linux-4.4.14/Documentation/devicetree/bindings/input/
Domap-keypad.txt4 keypad device. The keypad controller supports multiple row and column lines.
Dtwl4030-keypad.txt4 keypad device. The keypad controller supports multiple row and column lines.
Dimx-keypad.txt6 and decoding one or multiple keys pressed simultaneously on a keypad.
Dgpio-matrix-keypad.txt4 The matrix keypad supports multiple row and column lines, a key can be
Dsamsung-keypad.txt4 keypad device. The keypad controller supports multiple row and column lines.
/linux-4.4.14/Documentation/devicetree/bindings/reset/
Dreset.txt21 in hardware for a reset signal to affect multiple logically separate HW blocks
36 with a single reset output and 1 for nodes with multiple
/linux-4.4.14/Documentation/sound/alsa/soc/
Djack.txt9 user visible jack. In embedded systems it is common for multiple
62 Each jack may have multiple reporting mechanisms, though it will need at
/linux-4.4.14/arch/arm64/kvm/
DKconfig41 We don't support KVM with 16K page tables yet, due to the multiple
/linux-4.4.14/drivers/powercap/
DKconfig10 of multiple control types that determine which settings may be exposed and
/linux-4.4.14/drivers/staging/iio/Documentation/
Dtrigger.txt21 trig->alloc_list which is useful for drivers that allocate multiple
/linux-4.4.14/Documentation/usb/
Dbulk-streams.txt5 device driver to overload a bulk endpoint so that multiple transfers can be
10 Protocol, which uses streams to queue multiple SCSI commands, can be found on
Dmisc_usbsevseg.txt42 To set multiple decimals points sum up each power.
Dlinux-cdc-acm.inf86 ; Note: One INF file can be used for multiple devices with different
Danchors.txt10 multiple URBs.
Dproc_usb_info.txt84 In /proc/bus/usb/devices, each device's output has multiple
216 USB devices may have multiple configurations, each of which act
229 Interface descriptor info (can be multiple per Config):
253 Endpoint descriptor info (can be multiple per Interface):
/linux-4.4.14/Documentation/devicetree/bindings/net/dsa/
Ddsa.txt17 A DSA node can contain multiple switch chips which are therefore child nodes of
35 A switch may have multiple "port" children nodes
/linux-4.4.14/Documentation/devicetree/bindings/clock/
Dlpc1850-cgu.txt3 The CGU generates multiple independent clocks for the core and the
9 The CGU selects the inputs to the clock generators from multiple
Dclock-bindings.txt18 with a single clock output and 1 for nodes with multiple
166 conflicting parent or rate configuration in multiple consumer nodes for
169 Configuration of common clocks, which affect multiple consumer devices can
Drenesas,cpg-div6-clocks.txt20 clocks must be specified. For clocks with multiple parents, invalid
Drockchip.txt27 Example using multiple gate clocks:
/linux-4.4.14/Documentation/input/
Dntrig.txt12 This driver has been reported to work properly with multiple N-Trig devices
87 the probability of multiple simultaneous ghosts is expected to drop off
125 As of yet, all tested N-Trig firmwares do not track fingers. When multiple
/linux-4.4.14/Documentation/devicetree/bindings/arm/omap/
Dprcm.txt4 a DT hierarchy. Each TI SoC can have multiple PRCM entities listed for it,
/linux-4.4.14/Documentation/video4linux/cx2341x/
Dfw-dma.txt14 transfer multiple buffers in one operation. Instead of allocating one large
75 The transfer count must be a multiple of 256. Therefore, the driver will need
DREADME.hm1235 If the height is not a multiple of 32 lines, then the captured video is
37 multiple of 32.
/linux-4.4.14/drivers/extcon/
DKconfig7 multiple states; i.e., an extcon that may have multiple
/linux-4.4.14/Documentation/filesystems/
Dbtrfs.txt28 * Checksums on data and metadata (multiple algorithms available)
30 * Integrated multiple device support, with several raid algorithms
99 setup as root. May be specified multiple times for multiple devices.
Dexofs.txt71 An exofs lives inside a single OSD partition. You can create multiple exofs
72 filesystems on the same device using multiple pids.
132 possible to extend the file over multiple objects, though this has not been
Dsysfs-tagging.txt8 namespace active multiple devices with the same name can show up in
Ddevpts.txt2 To support containers, we now allow multiple instances of devpts filesystem,
6 To preserve backward compatibility, this support for multiple instances is
/linux-4.4.14/arch/mips/sgi-ip22/
DPlatform6 # be aligned to a multiple of the kernel stack size or the handling of the
/linux-4.4.14/drivers/staging/gdm72xx/
DKconfig30 Enable support for transmitting multiple packets (packet
/linux-4.4.14/drivers/staging/fsl-mc/
DTODO1 * Decide if multiple root fsl-mc buses will be supported per Linux instance,
/linux-4.4.14/Documentation/spi/
Dspi-sc18is60231 similar large accesses have to be split into multiple chunks of no more than
/linux-4.4.14/Documentation/prctl/
Dseccomp_filter.txt84 A seccomp filter may return any of the following values. If multiple
144 If multiple filters exist, the return value for the evaluation of a
148 multiple filters return values of the same precedence, only the
157 architecture that supports multiple system call invocation conventions,
/linux-4.4.14/Documentation/hid/
Duhid.txt38 payloads are sent. You must not split a single event across multiple read()'s or
39 multiple write()'s. A single event must always be sent as a whole. Furthermore,
41 If you want to handle multiple events in a single syscall, then use vectored
55 reference-counting in user-space. That is, you will never receive multiple
/linux-4.4.14/tools/perf/Documentation/
Dperf-top.txt123 Specify output field - multiple keys can be specified in CSV format.
228 levels are subject to permissions. When sampling on multiple events, branch stack sampling
243 Event to display when multiple counters are active.
/linux-4.4.14/Documentation/video4linux/
Dsoc-camera.txt31 The subsystem has been designed to support multiple camera host interfaces and
32 multiple cameras per interface, although most applications have only one camera
40 omap1_camera.c, pxa_camera.c, sh_mobile_ceu_camera.c, and multiple sensor
/linux-4.4.14/Documentation/ABI/stable/
Dsysfs-class-backlight48 In the general case, when multiple backlight
/linux-4.4.14/Documentation/devicetree/bindings/display/tilcdc/
Dpanel.txt16 can be listed if the panel supports multiple timings, but the 'native-mode'
/linux-4.4.14/Documentation/devicetree/bindings/pinctrl/
Dpinctrl-st.txt5 and multiple alternate functions(ALT1 - ALTx) that directly connect
16 First type is via irqmux, single interrupt is used by multiple gpio banks. This
Dpinctrl-bindings.txt27 in a single place, rather than splitting it across multiple client device
50 entries may exist in this list so that multiple pin
52 from multiple nodes for a single pin controller, each
/linux-4.4.14/Documentation/fpga/
Dfpga-mgr.txt157 2. .write (may be called once or multiple times)
164 case, this function is called multiple times for successive chunks.
/linux-4.4.14/Documentation/x86/i386/
DIO-APIC.txt3 hardware interrupts to multiple CPUs, or to CPU groups. Without an
8 multiple IO-APICs. Multiple IO-APICs are used in high-end servers to
/linux-4.4.14/Documentation/arm/SPEAr/
Doverview.txt45 The common files for multiple machine families (SPEAr3xx, SPEAr6xx and
/linux-4.4.14/arch/powerpc/boot/dts/
Dps3.dts49 * Seems the only way currently to indicate a processor has multiple
/linux-4.4.14/Documentation/devicetree/bindings/bus/
Drenesas,bsc.txt6 It provides an external bus for connecting multiple external devices to the
/linux-4.4.14/Documentation/devicetree/bindings/clock/st/
Dst,flexgen.txt64 - #clock-cells : from common clock binding; shall be set to 1 (multiple clock
/linux-4.4.14/Documentation/security/
DLSM.txt9 "security=..." kernel command line argument, in the case where multiple
Dtomoyo.txt49 multiple LSM modules at the same time. We feel sorry that you have to give up
/linux-4.4.14/Documentation/devicetree/bindings/gpio/
Dspear_spics.txt7 desired by some of the device protocols above spi which expect (multiple)
Dbrcm,brcmstb-gpio.txt38 multiple parents. This takes precedence over 'interrupts' and
/linux-4.4.14/Documentation/devicetree/bindings/arm/hisilicon/
Dhisilicon.txt141 Hisilicon's SoCs use sram for multiple purpose; on Hi6220 there have several
143 managing the common sram which can be shared by multiple modules.
/linux-4.4.14/Documentation/devicetree/bindings/c6x/
Ddscr.txt41 offset and bitmask of RMII reset field. May have multiple tuples if more
45 possibly multiple tuples describing registers which are write protected by
/linux-4.4.14/Documentation/networking/caif/
DLinux-CAIF.txt103 - CFMUX CAIF Mux layer. Handles multiplexing between multiple
104 physical bearers and multiple channels such as VEI, Datagram, etc.
/linux-4.4.14/Documentation/kbuild/
Dkconfig-language.txt37 Every line starts with a key word and can be followed by multiple
41 values. A config option can be defined multiple times with the same
68 A config option can have any number of default values. If multiple
86 This defines a dependency for this menu entry. If multiple
102 minimal value <symbol> can be set to. If <symbol> is selected multiple
291 can be used if multiple drivers for a single hardware exists and only a
296 If no [symbol] is associated with a choice, then you can not have multiple
/linux-4.4.14/drivers/staging/android/
DKconfig47 This option enables the framework for synchronization between multiple
/linux-4.4.14/Documentation/devicetree/bindings/mfd/
Dqcom-pm8xxx.txt53 The PMIC contains multiple independent functions, each described in a subnode.
Dqcom,spmi-pmic.txt12 Support for multiple independent functions are implemented by splitting the
Das3711.txt1 AS3711 is an I2C PMIC from Austria MicroSystems with multiple DCDC and LDO power
/linux-4.4.14/Documentation/devicetree/bindings/ata/
Dahci-platform.txt7 It allows to enable each port independently when dealing with multiple
/linux-4.4.14/Documentation/netlabel/
Dintroduction.txt41 LSM independent which should allow multiple LSMs to leverage the same code
Dlsm_interface.txt17 Since NetLabel supports multiple different packet labeling protocols and LSMs
/linux-4.4.14/Documentation/devicetree/bindings/spmi/
Dqcom,spmi-pmic-arb.txt4 controller with wrapping arbitration logic to allow for multiple on-chip
/linux-4.4.14/net/openvswitch/
DKconfig21 need to maintain logical abstractions for multiple tenants.
/linux-4.4.14/Documentation/devicetree/bindings/mailbox/
Domap-mailbox.txt23 instance. DRA7xx has multiple instances with different number of h/w fifo queues
74 multiple interrupt lines connected to the MPU processor.
/linux-4.4.14/drivers/md/
DKconfig10 Support multiple physical spindles through a single logical device.
52 If you say Y here, then your multiple devices driver will be able to
65 If you say Y here, then your multiple devices driver will be able to
88 an error free MD (multiple device) to the higher levels of the
187 synchronization across multiple systems on the cluster, so all
/linux-4.4.14/drivers/cpuidle/
DKconfig.arm25 multiple CPU idle drivers infrastructure.
/linux-4.4.14/drivers/net/team/
DKconfig5 multiple ethernet devices.
/linux-4.4.14/Documentation/power/powercap/
Dpowercap.txt22 bigger part consists of multiple smaller parts that each have their own power
24 parent power zone containing multiple subzones and so on to reflect the power
/linux-4.4.14/Documentation/timers/
Dtimer_stats.txt44 is kept until a new sample period is started. This allows multiple readouts.
/linux-4.4.14/net/batman-adv/
DKconfig45 increase the overall network throughput by fusing multiple
/linux-4.4.14/drivers/hwtracing/intel_th/
DKconfig5 produce, switch and output trace data from multiple hardware and
/linux-4.4.14/arch/c6x/lib/
Dstrasgi.S24 ;; 4, and the size a multiple of 4 greater than or equal to 28.
/linux-4.4.14/drivers/staging/lustre/
DREADME.txt43 on multiple nodes).
/linux-4.4.14/Documentation/devicetree/bindings/iio/
Diio-bindings.txt18 with a single IIO output and 1 for nodes with multiple
/linux-4.4.14/Documentation/devicetree/bindings/serial/
Dqcom,msm-uartdm.txt6 that it supports reading and writing multiple characters at a time.
/linux-4.4.14/Documentation/scsi/
Dg_NCR5380.txt13 the same time. It should be able to handle multiple different cards in the

1234