Home
last modified time | relevance | path

Searched full:multiple (Results 1 – 25 of 4554) sorted by relevance

12345678910>>...183

/Linux-v6.1/Documentation/staging/
Dcrc32.rst6 and the whole thing (message+CRC) is a multiple of the given
37 appropriate multiple of the divisor to subtract to being the remainder
42 throw the quotient bit away, but subtract the appropriate multiple of
49 multiple = remainder & 0x80000000 ? CRCPOLY : 0;
50 remainder = (remainder << 1 | next_input_bit()) ^ multiple;
70 multiple = (remainder & 0x80000000) ? CRCPOLY : 0;
71 remainder = (remainder << 1) ^ multiple;
78 multiple = (remainder & 1) ? CRCPOLY : 0;
79 remainder = (remainder >> 1) ^ multiple;
94 multiple = (remainder & 0x80000000) ? CRCPOLY : 0;
[all …]
/Linux-v6.1/sound/pci/ctxfi/
Dxfi.c23 static unsigned int multiple = 2; variable
26 MODULE_PARM_DESC(multiple, "Rate multiplier (default=2)");
27 module_param(multiple, uint, 0444);
82 if ((multiple != 1) && (multiple != 2) && (multiple != 4)) { in ct_card_probe()
83 dev_err(card->dev, "Invalid multiple value %u!!!\n", in ct_card_probe()
84 multiple); in ct_card_probe()
86 "The valid values for multiple are 1, 2 and 4, Value 2 is assumed.\n"); in ct_card_probe()
87 multiple = 2; in ct_card_probe()
89 err = ct_atc_create(card, pci, reference_rate, multiple, in ct_card_probe()
/Linux-v6.1/Documentation/sound/
Dalsa-configuration.rst34 specify multiple values for the option separated by commas.
53 This option takes multiple strings.
144 This module supports multiple cards. It does not support autoprobe, so
178 This module supports multiple cards, autoprobe and PnP.
192 This module supports multiple cards. It does not support autoprobe
206 This module supports multiple cards.
228 This module supports multiple cards, autoprobe and PnP.
237 This module supports multiple cards.
250 This module supports multiple cards, autoprobe and PnP.
262 This module supports multiple cards.
[all …]
/Linux-v6.1/tools/perf/pmu-events/arch/x86/jaketown/
Duncore-memory.json191multiple ranks are in CKE ON mode at one time, the counter will ONLY increment by one rather than …
201multiple ranks are in CKE ON mode at one time, the counter will ONLY increment by one rather than …
211multiple ranks are in CKE ON mode at one time, the counter will ONLY increment by one rather than …
221multiple ranks are in CKE ON mode at one time, the counter will ONLY increment by one rather than …
231multiple ranks are in CKE ON mode at one time, the counter will ONLY increment by one rather than …
241multiple ranks are in CKE ON mode at one time, the counter will ONLY increment by one rather than …
251multiple ranks are in CKE ON mode at one time, the counter will ONLY increment by one rather than …
261multiple ranks are in CKE ON mode at one time, the counter will ONLY increment by one rather than …
289 …ible to distinguish between the two. This can be filtered by rank. If multiple ranks are selecte…
299 …ible to distinguish between the two. This can be filtered by rank. If multiple ranks are selecte…
[all …]
Duncore-other.json28 …received and ownership is released. Note that a single tickle can result in multiple decrements.",
38 …received and ownership is released. Note that a single tickle can result in multiple decrements.",
577 …r to calculate average queue occupancy. Multiple ingress buffers can be tracked at a given time u…
587 …r to calculate average queue occupancy. Multiple ingress buffers can be tracked at a given time u…
597 …r to calculate average queue occupancy. Multiple ingress buffers can be tracked at a given time u…
930 …r to calculate average queue occupancy. Multiple ingress buffers can be tracked at a given time u…
940 …r to calculate average queue occupancy. Multiple ingress buffers can be tracked at a given time u…
950 …r to calculate average queue occupancy. Multiple ingress buffers can be tracked at a given time u…
960 …r to calculate average queue occupancy. Multiple ingress buffers can be tracked at a given time u…
970 …r to calculate average queue occupancy. Multiple ingress buffers can be tracked at a given time u…
[all …]
/Linux-v6.1/include/linux/
Dmath.h20 * @y: multiple to round up to (must be a power of 2)
22 * Rounds @x up to next multiple of @y (which must be a power of 2).
30 * @y: multiple to round down to (must be a power of 2)
32 * Rounds @x down to next multiple of @y (which must be a power of 2).
52 * roundup - round up to the next specified multiple
54 * @y: multiple to round up to
56 * Rounds @x up to next multiple of @y. If @y will always be a power
66 * rounddown - round down to next specified multiple
68 * @y: multiple to round down to
70 * Rounds @x down to next multiple of @y. If @y will always be a power
/Linux-v6.1/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
52 - #iommu-cells = <1>: Multiple master IOMMU devices may need to be configured
71 have multiple master interfaces (to one or more IOMMU devices).
91 - pasid-num-bits: Some masters support multiple address spaces for DMA, by
140 Multiple-master IOMMU with fixed associations:
143 /* multiple-master IOMMU */
168 Multiple-master IOMMU:
[all …]
/Linux-v6.1/Documentation/filesystems/nfs/
Dpnfs.rst6 reference multiple devices, each of which can reference multiple data servers.
7 Each data server can be referenced by multiple devices. Each device
8 can be referenced by multiple layouts. To keep all of this straight,
40 justification, but seems reasonable given that we can have multiple
41 deviceid's per filesystem, and multiple filesystems per nfs_client.
/Linux-v6.1/Documentation/mm/
Dpage_frags.rst8 which resides within a 0 or higher order compound page. Multiple
20 and tracks allows multiple calls to make use of a cached page. The
21 advantage to doing this is that multiple calls to get_page can be avoided
40 was implemented. It allows for freeing multiple references from a single
42 cleaning up the multiple references that were added to a page in order to
/Linux-v6.1/Documentation/power/
Dcharger-manager.rst9 and where each battery may have multiple chargers attached and the userland
10 wants to look at the aggregated information of the multiple chargers.
14 represents an independent battery with chargers. If there are multiple
16 the system may need multiple instances of Charger Manager.
23 * Support for multiple chargers (e.g., a device with USB, AC, and solar panels)
24 A system may have multiple chargers (or power sources) and some of
28 aggregates charger-related information from multiple sources and
67 if there are multiple batteries. If there are multiple batteries, the
68 multiple instances of Charger Manager share the same charger_global_desc
/Linux-v6.1/tools/perf/pmu-events/arch/x86/broadwellde/
Dfloating-point.json3 …ADD/SUB. DPP and FM(N)ADD/SUB instructions count twice as they perform multiple calculations per …
12 …ADD/SUB. DPP and FM(N)ADD/SUB instructions count twice as they perform multiple calculations per …
21 …ADD/SUB. DPP and FM(N)ADD/SUB instructions count twice as they perform multiple calculations per …
30 …ADD/SUB. DPP and FM(N)ADD/SUB instructions count twice as they perform multiple calculations per …
39 …ADD/SUB. DPP and FM(N)ADD/SUB instructions count twice as they perform multiple calculations per …
48 …ADD/SUB. DPP and FM(N)ADD/SUB instructions count twice as they perform multiple calculations per …
57 …QRT FM(N)ADD/SUB. FM(N)ADD/SUB instructions count twice as they perform multiple calculations per …
66 …RT FM(N)ADD/SUB. FM(N)ADD/SUB instructions count twice as they perform multiple calculations per …
75 …RT FM(N)ADD/SUB. FM(N)ADD/SUB instructions count twice as they perform multiple calculations per …
84 …ADD/SUB. DPP and FM(N)ADD/SUB instructions count twice as they perform multiple calculations per …
/Linux-v6.1/drivers/staging/greybus/
Dfw-core.c83 /* Disallow multiple Firmware Management CPorts */ in gb_fw_core_probe()
86 "multiple management CPorts found\n"); in gb_fw_core_probe()
104 /* Disallow multiple Firmware Download CPorts */ in gb_fw_core_probe()
107 "multiple download CPorts found\n"); in gb_fw_core_probe()
123 /* Disallow multiple SPI CPorts */ in gb_fw_core_probe()
126 "multiple SPI CPorts found\n"); in gb_fw_core_probe()
142 /* Disallow multiple CAP CPorts */ in gb_fw_core_probe()
144 dev_err(&bundle->dev, "multiple Authentication CPorts found\n"); in gb_fw_core_probe()
/Linux-v6.1/arch/x86/include/uapi/asm/
Dsgx.h53 * @length: length of the data (multiple of the page size)
56 * @count: number of bytes added (multiple of the page size)
90 * @length: length of memory (multiple of the page size)
94 * @count: (output) bytes successfully changed (multiple of page size)
109 * @length: length of memory (multiple of the page size)
112 * @count: (output) bytes successfully changed (multiple of page size)
126 * @length: length of memory (multiple of the page size)
127 * @count: (output) bytes successfully changed (multiple of page size)
/Linux-v6.1/drivers/crypto/nx/
Dnx-842.c18 * to be specifically aligned, to be a specific multiple in length, and within
43 * hardware decompressor if the original input buffer length is not a multiple
177 if (slen % c->multiple) in compress()
178 adj_slen = round_up(slen, c->multiple); in compress()
202 if (dlen % c->multiple) in compress()
203 dlen = round_down(dlen, c->multiple); in compress()
208 dlen = round_down(dlen, c->multiple); in compress()
279 add_header = (p.iremain % c.multiple || in nx842_crypto_compress()
283 p.oremain % c.multiple || in nx842_crypto_compress()
310 pr_err("Internal error: No header but multiple groups\n"); in nx842_crypto_compress()
[all …]
Dnx-842.h20 * Each DDE buffer size is a multiple of 32 bytes (except the last)
21 * The last DDE buffer size is a multiple of 8 bytes
116 * @multiple: All buffer lengths should be a multiple of this
124 * assumed that compressed data will always adhere to the multiple
133 int multiple; member
/Linux-v6.1/Documentation/networking/
Dbonding.rst28 multiple network interfaces into a single logical "bonded" interface.
50 3.1.2 Configuring Multiple Bonds with Sysconfig
53 3.2.2 Configuring Multiple Bonds with Initscripts
55 3.3.1 Configuring Multiple Bonds Manually
71 7.2 Configuring Multiple ARP Targets
85 11.2 High Availability in a Multiple Switch Topology
86 11.2.1 HA Bonding Mode Selection for Multiple Switch Topology
87 11.2.2 HA Link Monitoring for Multiple Switch Topology
93 12.2 Maximum Throughput in a Multiple Switch Topology
94 12.2.1 MT Bonding Mode Selection for Multiple Switch Topology
[all …]
/Linux-v6.1/Documentation/devicetree/bindings/net/
Dmediatek-dwmac.yaml79 For MT2712 RGMII interface, Allowed value need to be a multiple of 170,
81 For MT2712 RMII/MII interface, Allowed value need to be a multiple of 550,
83 For MT8188/MT8195 RGMII/RMII/MII interface, Allowed value need to be a multiple of 290,
89 For MT2712 RGMII interface, Allowed value need to be a multiple of 170,
91 For MT2712 RMII/MII interface, Allowed value need to be a multiple of 550,
93 For MT8188/MT8195 RGMII/RMII/MII interface, Allowed value need to be a multiple
/Linux-v6.1/lib/842/
D842.h6 /* The 842 compressed format is made up of multiple blocks, each of
57 * length to a specific byte multiple (usually a multiple of 8, 16, or 32
65 * buffers that are not an exact multiple of 8 bytes long. However, those
70 * reject any input buffer that is not a multiple of 8 bytes long.
92 * a multiple of 8.
/Linux-v6.1/tools/perf/Documentation/
Dperf-ftrace.txt47 Only trace for the list of CPUs provided. Multiple CPUs can
85 function (or a glob pattern). Multiple functions can be given
94 specify multiple functions (or glob patterns). It will be
107 than once to specify multiple functions. It will be passed to
116 specify multiple functions. It will be passed to 'set_graph_notrace'
/Linux-v6.1/tools/perf/pmu-events/arch/x86/ivytown/
Duncore-other.json28multiple decrements.; Tracks only those requests that come from the port specified in the IRP_Pmon…
38 …ved and ownership is released. Note that a single tickle can result in multiple decrements.; Trac…
58 …allows one to select one specific queue. It is not possible to monitor multiple queues at a time.…
78 …allows one to select one specific queue. It is not possible to monitor multiple queues at a time.…
98 …allows one to select one specific queue. It is not possible to monitor multiple queues at a time.…
118 …allows one to select one specific queue. It is not possible to monitor multiple queues at a time.…
785 …r to calculate average queue occupancy. Multiple ingress buffers can be tracked at a given time u…
795 …r to calculate average queue occupancy. Multiple ingress buffers can be tracked at a given time u…
805 …der to calculate average queue latency. Multiple ingress buffers can be tracked at a given time u…
815 …der to calculate average queue latency. Multiple ingress buffers can be tracked at a given time u…
[all …]
Duncore-memory.json258multiple ranks are in CKE ON mode at one time, the counter will ONLY increment by one rather than …
268multiple ranks are in CKE ON mode at one time, the counter will ONLY increment by one rather than …
278multiple ranks are in CKE ON mode at one time, the counter will ONLY increment by one rather than …
288multiple ranks are in CKE ON mode at one time, the counter will ONLY increment by one rather than …
298multiple ranks are in CKE ON mode at one time, the counter will ONLY increment by one rather than …
308multiple ranks are in CKE ON mode at one time, the counter will ONLY increment by one rather than …
318multiple ranks are in CKE ON mode at one time, the counter will ONLY increment by one rather than …
328multiple ranks are in CKE ON mode at one time, the counter will ONLY increment by one rather than …
356 …ible to distinguish between the two. This can be filtered by rank. If multiple ranks are selecte…
366 …ible to distinguish between the two. This can be filtered by rank. If multiple ranks are selecte…
[all …]
/Linux-v6.1/Documentation/devicetree/bindings/opp/
Dopp-v2-base.yaml53 Entries for multiple clocks shall be provided in the same field, as
71 Entries for multiple regulators shall be provided in the same field separated
95 Entries for multiple regulators shall be provided in the same field
110 Entries for multiple regulators shall be provided in the same field
160 Marks the OPP to be used during device suspend. If multiple OPPs in
199 of a different device. It should not contain multiple phandles to the
212 opp-microvolt property, but allows multiple voltage ranges to be
/Linux-v6.1/Documentation/filesystems/
Dbtrfs.rst21 * Checksums on data and metadata (multiple algorithms available)
22 * Compression (multiple algorithms available)
26 * Integrated multiple device support, with several raid algorithms
/Linux-v6.1/Documentation/gpu/amdgpu/display/
Ddc-debug.rst18 Multiple Planes Debug
21 If you want to enable or debug multiple planes in a specific user-space
45 * Multiple plane **may** be briefly disabled during window transitions or
65 DC (DCN) provides an extensive log that dumps multiple details from our
/Linux-v6.1/drivers/net/ethernet/freescale/fman/
DKconfig24 read or write transactions into multiple smaller transactions
35 buffer in the SG list has data size that is not a multiple
39 stress with multiple ports injecting line-rate traffic.

12345678910>>...183