/Linux-v5.4/Documentation/ |
D | crc32.txt | 6 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-v5.4/sound/pci/ctxfi/ |
D | xfi.c | 24 static unsigned int multiple = 2; variable 27 MODULE_PARM_DESC(multiple, "Rate multiplier (default=2)"); 28 module_param(multiple, uint, 0444); 83 if ((multiple != 1) && (multiple != 2) && (multiple != 4)) { in ct_card_probe() 84 dev_err(card->dev, "Invalid multiple value %u!!!\n", in ct_card_probe() 85 multiple); in ct_card_probe() 87 "The valid values for multiple are 1, 2 and 4, Value 2 is assumed.\n"); in ct_card_probe() 88 multiple = 2; in ct_card_probe() 90 err = ct_atc_create(card, pci, reference_rate, multiple, in ct_card_probe()
|
/Linux-v5.4/Documentation/sound/ |
D | alsa-configuration.rst | 34 specify multiple values for the option separated by commas. 53 This option takes multiple strings. 135 This module supports multiple cards. It does not support autoprobe, so 169 This module supports multiple cards, autoprobe and PnP. 183 This module supports multiple cards. It does not support autoprobe 197 This module supports multiple cards. 219 This module supports multiple cards, autoprobe and PnP. 228 This module supports multiple cards. 241 This module supports multiple cards, autoprobe and PnP. 253 This module supports multiple cards. [all …]
|
/Linux-v5.4/Documentation/devicetree/bindings/iommu/ |
D | iommu.txt | 22 * 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). 116 Multiple-master IOMMU with fixed associations: 119 /* multiple-master IOMMU */ 144 Multiple-master IOMMU: 162 Multiple-master IOMMU with configurable DMA window:
|
/Linux-v5.4/include/linux/ |
D | ipmi-fru.h | 27 uint8_t internal_use_off; /* multiple of 8 bytes */ 28 uint8_t chassis_info_off; /* multiple of 8 bytes */ 29 uint8_t board_area_off; /* multiple of 8 bytes */ 30 uint8_t product_area_off; /* multiple of 8 bytes */ 31 uint8_t multirecord_off; /* multiple of 8 bytes */ 49 uint8_t area_len; /* multiple of 8 bytes */ 63 * 0x00 pad to a multiple of 8 bytes - 1
|
/Linux-v5.4/Documentation/filesystems/nfs/ |
D | pnfs.txt | 5 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-v5.4/Documentation/vm/ |
D | page_frags.rst | 8 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
|
D | numa.rst | 13 comprises multiple components or assemblies each of which may contain 0 25 cells at multiple distances from other cells. 37 can have cells at multiple remote distances from any given cell. 48 Linux divides the system's hardware resources into multiple software 65 the existing nodes--or the system memory for non-NUMA platforms--into multiple 81 Because some nodes contain multiple zones containing different types of
|
/Linux-v5.4/tools/perf/pmu-events/arch/x86/broadwellde/ |
D | floating-point.json | 27 …RT FM(N)ADD/SUB. FM(N)ADD/SUB instructions count twice as they perform multiple calculations per … 36 …RT FM(N)ADD/SUB. FM(N)ADD/SUB instructions count twice as they perform multiple calculations per … 45 …QRT FM(N)ADD/SUB. FM(N)ADD/SUB instructions count twice as they perform multiple calculations per … 54 …ADD/SUB. DPP and FM(N)ADD/SUB instructions count twice as they perform multiple calculations per … 63 …ADD/SUB. DPP and FM(N)ADD/SUB instructions count twice as they perform multiple calculations per … 72 …ADD/SUB. DPP and FM(N)ADD/SUB instructions count twice as they perform multiple calculations per … 81 …ADD/SUB. DPP and FM(N)ADD/SUB instructions count twice as they perform multiple calculations per … 90 …ADD/SUB. DPP and FM(N)ADD/SUB instructions count twice as they perform multiple calculations per … 99 …ADD/SUB. DPP and FM(N)ADD/SUB instructions count twice as they perform multiple calculations per … 108 …ADD/SUB. DPP and FM(N)ADD/SUB instructions count twice as they perform multiple calculations per …
|
/Linux-v5.4/tools/perf/pmu-events/arch/x86/broadwellx/ |
D | floating-point.json | 27 …RT FM(N)ADD/SUB. FM(N)ADD/SUB instructions count twice as they perform multiple calculations per … 36 …RT FM(N)ADD/SUB. FM(N)ADD/SUB instructions count twice as they perform multiple calculations per … 45 …QRT FM(N)ADD/SUB. FM(N)ADD/SUB instructions count twice as they perform multiple calculations per … 54 …ADD/SUB. DPP and FM(N)ADD/SUB instructions count twice as they perform multiple calculations per … 63 …ADD/SUB. DPP and FM(N)ADD/SUB instructions count twice as they perform multiple calculations per … 72 …ADD/SUB. DPP and FM(N)ADD/SUB instructions count twice as they perform multiple calculations per … 81 …ADD/SUB. DPP and FM(N)ADD/SUB instructions count twice as they perform multiple calculations per … 90 …ADD/SUB. DPP and FM(N)ADD/SUB instructions count twice as they perform multiple calculations per … 99 …ADD/SUB. DPP and FM(N)ADD/SUB instructions count twice as they perform multiple calculations per … 108 …ADD/SUB. DPP and FM(N)ADD/SUB instructions count twice as they perform multiple calculations per …
|
/Linux-v5.4/Documentation/power/ |
D | charger-manager.rst | 9 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-v5.4/tools/perf/pmu-events/arch/x86/broadwell/ |
D | floating-point.json | 32 …RT FM(N)ADD/SUB. FM(N)ADD/SUB instructions count twice as they perform multiple calculations per … 41 …RT FM(N)ADD/SUB. FM(N)ADD/SUB instructions count twice as they perform multiple calculations per … 50 …QRT FM(N)ADD/SUB. FM(N)ADD/SUB instructions count twice as they perform multiple calculations per … 59 …ADD/SUB. DPP and FM(N)ADD/SUB instructions count twice as they perform multiple calculations per … 68 …ADD/SUB. DPP and FM(N)ADD/SUB instructions count twice as they perform multiple calculations per … 77 …ADD/SUB. DPP and FM(N)ADD/SUB instructions count twice as they perform multiple calculations per … 86 …ADD/SUB. DPP and FM(N)ADD/SUB instructions count twice as they perform multiple calculations per … 95 …ADD/SUB. DPP and FM(N)ADD/SUB instructions count twice as they perform multiple calculations per … 104 …ADD/SUB. DPP and FM(N)ADD/SUB instructions count twice as they perform multiple calculations per … 113 …ADD/SUB. DPP and FM(N)ADD/SUB instructions count twice as they perform multiple calculations per …
|
/Linux-v5.4/tools/perf/Documentation/ |
D | perf-ftrace.txt | 46 Only trace for the list of CPUs provided. Multiple CPUs can 53 Only trace functions given by the argument. Multiple functions 61 this can be used more than once to specify multiple functions 70 This can be used more than once to specify multiple functions. 78 This can be used more than once to specify multiple functions.
|
/Linux-v5.4/tools/perf/pmu-events/arch/x86/skylake/ |
D | floating-point.json | 8 …RT FM(N)ADD/SUB. FM(N)ADD/SUB instructions count twice as they perform multiple calculations per … 17 …RT FM(N)ADD/SUB. FM(N)ADD/SUB instructions count twice as they perform multiple calculations per … 26 …ADD/SUB. DPP and FM(N)ADD/SUB instructions count twice as they perform multiple calculations per … 35 …ADD/SUB. DPP and FM(N)ADD/SUB instructions count twice as they perform multiple calculations per … 44 …ADD/SUB. DPP and FM(N)ADD/SUB instructions count twice as they perform multiple calculations per … 53 …ADD/SUB. DPP and FM(N)ADD/SUB instructions count twice as they perform multiple calculations per …
|
/Linux-v5.4/drivers/staging/greybus/ |
D | fw-core.c | 83 /* 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-v5.4/tools/perf/pmu-events/arch/x86/skylakex/ |
D | floating-point.json | 5 …RT FM(N)ADD/SUB. FM(N)ADD/SUB instructions count twice as they perform multiple calculations per … 14 …RT FM(N)ADD/SUB. FM(N)ADD/SUB instructions count twice as they perform multiple calculations per … 23 …ADD/SUB. DPP and FM(N)ADD/SUB instructions count twice as they perform multiple calculations per … 32 …ADD/SUB. DPP and FM(N)ADD/SUB instructions count twice as they perform multiple calculations per … 41 …ADD/SUB. DPP and FM(N)ADD/SUB instructions count twice as they perform multiple calculations per … 50 …ADD/SUB. DPP and FM(N)ADD/SUB instructions count twice as they perform multiple calculations per …
|
/Linux-v5.4/drivers/crypto/nx/ |
D | nx-842.c | 18 * 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 …]
|
D | nx-842.h | 20 * 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-v5.4/Documentation/networking/ |
D | bonding.txt | 22 multiple network interfaces into a single logical "bonded" interface. 45 3.1.2 Configuring Multiple Bonds with Sysconfig 48 3.2.2 Configuring Multiple Bonds with Initscripts 50 3.3.1 Configuring Multiple Bonds Manually 66 7.2 Configuring Multiple ARP Targets 80 11.2 High Availability in a Multiple Switch Topology 81 11.2.1 HA Bonding Mode Selection for Multiple Switch Topology 82 11.2.2 HA Link Monitoring for Multiple Switch Topology 88 12.2 Maximum Throughput in a Multiple Switch Topology 89 12.2.1 MT Bonding Mode Selection for Multiple Switch Topology [all …]
|
/Linux-v5.4/Documentation/devicetree/bindings/memory-controllers/ |
D | ingenic,jz4780-nemc.txt | 27 Multiple registers can be specified across multiple banks. This is needed, 28 for example, for packaged NAND devices with multiple dies. Such devices 39 If a child node references multiple banks in its "reg" property, the same value
|
/Linux-v5.4/drivers/gpu/drm/nouveau/nvkm/subdev/secboot/ |
D | acr_r361.h | 35 * located. The offset must be multiple of 256 to help perf 38 * located. The offset must be multiple of 256 to help perf 40 * located. The offset must be multiple of 256 to help perf 45 * @data_size: size of data block. Should be multiple of 256B
|
/Linux-v5.4/lib/842/ |
D | 842.h | 6 /* 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-v5.4/drivers/net/ethernet/mellanox/mlx5/core/en/ |
D | params.c | 46 /* XDP in mlx5e doesn't support multiple packets per page. AF_XDP is a in mlx5e_rx_get_linear_frag_sz() 51 * the fact there are no multiple packets per "page" (which is a frame). in mlx5e_rx_get_linear_frag_sz() 53 * and we will have trouble assemblying a real page of multiple frames. in mlx5e_rx_get_linear_frag_sz() 59 * multiple packets into a single frame. in mlx5e_rx_get_linear_frag_sz()
|
/Linux-v5.4/drivers/gpu/drm/amd/display/dc/dml/ |
D | dml_inline_defs.h | 114 unsigned int multiple, in dml_round_to_multiple() argument 119 if (multiple == 0) in dml_round_to_multiple() 122 remainder = num % multiple; in dml_round_to_multiple() 128 return (num + multiple - remainder); in dml_round_to_multiple()
|
/Linux-v5.4/sound/soc/rockchip/ |
D | Kconfig | 57 tristate "ASoC support multiple codecs for Rockchip RK3288 boards" 69 tristate "ASoC support multiple codecs for Rockchip RK3399 GRU boards" 79 Say Y or M here if you want to add support multiple codecs for SoC
|