/linux-6.1.9/rust/alloc/ |
D | raw_vec.rs | 276 pub fn reserve(&mut self, len: usize, additional: usize) { in reserve() 285 additional: usize, in reserve() 287 handle_reserve(slf.grow_amortized(len, additional)); in reserve() 290 if self.needs_to_grow(len, additional) { in reserve() 291 do_reserve_and_handle(self, len, additional); in reserve() 304 pub fn try_reserve(&mut self, len: usize, additional: usize) -> Result<(), TryReserveError> { in try_reserve() 305 if self.needs_to_grow(len, additional) { in try_reserve() 306 self.grow_amortized(len, additional) in try_reserve() 336 pub fn reserve_exact(&mut self, len: usize, additional: usize) { in reserve_exact() 337 handle_reserve(self.try_reserve_exact(len, additional)); in reserve_exact() [all …]
|
/linux-6.1.9/security/integrity/evm/ |
D | Kconfig | 27 additional info to the calculation, requires existing EVM 35 Include additional SMACK xattrs for HMAC calculation. 44 additional info to the calculation, requires existing EVM 48 bool "Add additional EVM extended attributes at runtime" 52 Allow userland to provide additional xattrs for HMAC calculation. 54 When this option is enabled, root can add additional xattrs to the
|
/linux-6.1.9/drivers/scsi/ |
D | constants.c | 307 static const struct error_info additional[] = variable 385 for (i = 0; i < ARRAY_SIZE(additional); i++) { in scsi_extd_sense_format() 386 if (additional[i].code12 == code) in scsi_extd_sense_format() 388 offset += additional[i].size; in scsi_extd_sense_format()
|
/linux-6.1.9/drivers/usb/storage/ |
D | Kconfig | 38 Say Y here to include additional code to support the power-saving function 84 Say Y here to include additional code to support storage devices 106 Say Y here to include additional code to support the Sandisk SDDR-09 115 Say Y here to include additional code to support the Sandisk SDDR-55 123 Say Y here to include additional code to support the Lexar Jumpshot 131 Say Y here to include additional code to support the Olympus MAUSB-10 143 Say Y here to include additional code to support the Maxtor OneTouch 156 Say Y here to include additional code to support the Rio Karma
|
/linux-6.1.9/Documentation/ABI/testing/ |
D | sysfs-class-led-multicolor | 11 For additional details please refer to 23 For additional details please refer to
|
D | evm | 102 validate the EVM signature, and allows additional attributes 104 additional attributes are added (and on files possessing those 105 additional attributes) will only be valid if the same 106 additional attributes are configured on system boot. Writing
|
D | sysfs-bus-iio-ina2xx-adc | 9 in-driver readout rate at the cost of an additional register read. 12 save the additional i2c transaction, which will improve the bandwidth
|
D | sysfs-bus-iio-gyro-bmg160 | 5 The BMG160 gyro kernel module provides an additional trigger,
|
/linux-6.1.9/drivers/gpu/drm/i915/ |
D | Kconfig.debug | 20 bool "Enable additional driver debugging" 97 Enable additional logging that may help track down the cause of 110 Enable additional and verbose debugging output that will spam 124 Enable additional and verbose debugging output that will spam 133 bool "Enable additional driver debugging for fence objects" 146 bool "Enable additional driver debugging for detecting dependency cycles" 158 bool "Enable additional driver debugging for GuC"
|
/linux-6.1.9/Documentation/core-api/irq/ |
D | concepts.rst | 21 Architectures can assign additional meaning to the IRQ numbers, and 24 assigning this kind of additional meaning.
|
/linux-6.1.9/Documentation/misc-devices/ |
D | eeprom.rst | 32 (additional data at 0x51, 0x53, 0x55, 0x57) 33 24C08 8K 0x50, 0x54 (additional data at 0x51, 0x52, 35 24C16 16K 0x50 (additional data at 0x51 - 0x57) 77 The Microchip 24AA52/24LCS52, ST M34C02, and others support an additional
|
/linux-6.1.9/Documentation/input/devices/ |
D | appletouch.rst | 20 Frank Arnold for further improvements, and Alex Harper for some additional 32 will give additional functionalities, like acceleration, scrolling, 2 finger 37 example). For additional configuration, see the synaptics driver documentation::
|
/linux-6.1.9/rust/alloc/vec/ |
D | mod.rs | 816 pub fn reserve(&mut self, additional: usize) { in reserve() 817 self.buf.reserve(self.len, additional); in reserve() 844 pub fn reserve_exact(&mut self, additional: usize) { in reserve_exact() 845 self.buf.reserve_exact(self.len, additional); in reserve_exact() 880 pub fn try_reserve(&mut self, additional: usize) -> Result<(), TryReserveError> { in try_reserve() 881 self.buf.try_reserve(self.len, additional) in try_reserve() 922 pub fn try_reserve_exact(&mut self, additional: usize) -> Result<(), TryReserveError> { in try_reserve_exact() 923 self.buf.try_reserve_exact(self.len, additional) in try_reserve_exact() 2717 fn extend_reserve(&mut self, additional: usize) { in extend_reserve() 2718 self.reserve(additional); in extend_reserve() [all …]
|
/linux-6.1.9/Documentation/timers/ |
D | hpet.rst | 11 additional hardware to support periodic interrupts. The comparators are 16 comparators are additional interrupt sources with no particular system
|
/linux-6.1.9/Documentation/mm/ |
D | remap_file_pages.rst | 11 require the kernel to create additional VMA (Virtual Memory Area) data 32 vm.max_map_count limit more easily due to additional VMAs. See comment for
|
/linux-6.1.9/Documentation/devicetree/bindings/iommu/ |
D | ti,omap-iommu.txt | 13 and needs no additional data in the pargs specifier. Please 24 syscon node that contains the additional control
|
/linux-6.1.9/Documentation/devicetree/bindings/powerpc/4xx/ |
D | cpm.txt | 36 If they are the same, the additional 39 refresh mode and any additional power
|
/linux-6.1.9/Documentation/devicetree/bindings/phy/ |
D | phy-bindings.txt | 30 In order to differentiate between these 2 PHYs, an additional specifier should be 71 device defined previously. Note that the phy handle has an additional specifier
|
/linux-6.1.9/Documentation/devicetree/bindings/net/ |
D | socfpga-dwmac.txt | 6 The device node has additional properties: 29 This device node has additional phandle dependency, the sgmii converter:
|
/linux-6.1.9/Documentation/devicetree/bindings/ata/ |
D | sata_highbank.yaml | 32 Indicates the number of additional clock cycles to transmit before 38 Indicates the number of additional clock cycles to transmit after
|
/linux-6.1.9/Documentation/driver-api/firmware/ |
D | fw_upload.rst | 12 documentation for firmware fallback. It also adds additional sysfs files 115 In addition to the *loading* and *data* sysfs files, there are additional 121 The additional sysfs files are:
|
/linux-6.1.9/Documentation/devicetree/bindings/interrupt-controller/ |
D | msi.txt | 10 potentially including additional information. 71 must be described with additional properties. 74 additional properties to describe the relationship between devices on the bus
|
/linux-6.1.9/Documentation/driver-api/ |
D | hsi.rst | 16 signals and an additional READY signal for flow control. An additional WAKE
|
/linux-6.1.9/Documentation/devicetree/bindings/power/ |
D | fsl,imx-gpc.yaml | 71 The following additional DOMAIN_INDEX value is valid for i.MX6SL: 73 The following additional DOMAIN_INDEX value is valid for i.MX6SX:
|
/linux-6.1.9/Documentation/trace/ |
D | sys-t.rst | 34 configfs gets a few additional attributes, which determine per-source 51 do_len switches on/off the additional "payload length" field in the
|