/linux-6.15/fs/nls/ ! |
D | Kconfig | 44 native language character sets. These character sets are stored 56 native language character sets. These character sets are stored 68 native language character sets. These character sets are stored 81 native language character sets. These character sets are stored in 97 native language character sets. These character sets are stored in 112 native language character sets. These character sets are stored in 123 native language character sets. These character sets are stored in 134 native language character sets. These character sets are stored in 145 native language character sets. These character sets are stored in 156 native language character sets. These character sets are stored in [all …]
|
/linux-6.15/arch/riscv/boot/dts/sophgo/ ! |
D | sg2042-cpus.dtsi | 267 i-cache-sets = <512>; 270 d-cache-sets = <512>; 292 i-cache-sets = <512>; 295 d-cache-sets = <512>; 317 i-cache-sets = <512>; 320 d-cache-sets = <512>; 342 i-cache-sets = <512>; 345 d-cache-sets = <512>; 367 i-cache-sets = <512>; 370 d-cache-sets = <512>; [all …]
|
/linux-6.15/arch/arm64/boot/dts/amazon/ ! |
D | alpine-v3.dtsi | 30 d-cache-sets = <256>; 33 i-cache-sets = <256>; 44 d-cache-sets = <256>; 47 i-cache-sets = <256>; 58 d-cache-sets = <256>; 61 i-cache-sets = <256>; 72 d-cache-sets = <256>; 75 i-cache-sets = <256>; 86 d-cache-sets = <256>; 89 i-cache-sets = <256>; [all …]
|
/linux-6.15/arch/arm64/boot/dts/amd/ ! |
D | amd-seattle-cpus.dtsi | 51 i-cache-sets = <256>; 54 d-cache-sets = <256>; 67 i-cache-sets = <256>; 70 d-cache-sets = <256>; 82 i-cache-sets = <256>; 85 d-cache-sets = <256>; 97 i-cache-sets = <256>; 100 d-cache-sets = <256>; 112 i-cache-sets = <256>; 115 d-cache-sets = <256>; [all …]
|
/linux-6.15/arch/arm64/boot/dts/ti/ ! |
D | k3-j784s4.dtsi | 65 i-cache-sets = <256>; 68 d-cache-sets = <256>; 79 i-cache-sets = <256>; 82 d-cache-sets = <256>; 93 i-cache-sets = <256>; 96 d-cache-sets = <256>; 107 i-cache-sets = <256>; 110 d-cache-sets = <256>; 121 i-cache-sets = <256>; 124 d-cache-sets = <256>; [all …]
|
D | k3-am654.dtsi | 43 i-cache-sets = <256>; 46 d-cache-sets = <128>; 57 i-cache-sets = <256>; 60 d-cache-sets = <128>; 71 i-cache-sets = <256>; 74 d-cache-sets = <128>; 85 i-cache-sets = <256>; 88 d-cache-sets = <128>; 99 cache-sets = <512>; 109 cache-sets = <512>;
|
D | k3-j742s2.dtsi | 47 i-cache-sets = <256>; 50 d-cache-sets = <256>; 61 i-cache-sets = <256>; 64 d-cache-sets = <256>; 75 i-cache-sets = <256>; 78 d-cache-sets = <256>; 89 i-cache-sets = <256>; 92 d-cache-sets = <256>;
|
D | k3-am62p5.dtsi | 45 i-cache-sets = <256>; 48 d-cache-sets = <128>; 61 i-cache-sets = <256>; 64 d-cache-sets = <128>; 77 i-cache-sets = <256>; 80 d-cache-sets = <128>; 93 i-cache-sets = <256>; 96 d-cache-sets = <128>; 152 cache-sets = <512>;
|
D | k3-am62a7.dtsi | 46 i-cache-sets = <256>; 49 d-cache-sets = <128>; 62 i-cache-sets = <256>; 65 d-cache-sets = <128>; 78 i-cache-sets = <256>; 81 d-cache-sets = <128>; 94 i-cache-sets = <256>; 97 d-cache-sets = <128>; 153 cache-sets = <512>;
|
/linux-6.15/Documentation/ABI/testing/ ! |
D | sysfs-kernel-mm-damon | 58 sets on the currently running kernel. 70 Note that only the operations sets that listed in 76 Description: Writing a value to this file sets the sampling interval of the 83 Description: Writing a value to this file sets the aggregation interval of 90 Description: Writing a value to this file sets the update interval of the 97 Description: Writing a value to this file sets the monitoring intervals 105 Description: Writing a value to this file sets the time interval to achieve 113 Description: Writing a value to this file sets the minimum value of 120 Description: Writing a value to this file sets the maximum value of 128 Description: Writing a value to this file sets the minimum number of [all …]
|
/linux-6.15/arch/mips/mm/ ! |
D | c-octeon.c | 183 c->icache.sets = 64 << ((config1 >> 22) & 7); in probe_octeon() 187 c->icache.sets * c->icache.ways * c->icache.linesz; in probe_octeon() 191 c->dcache.sets = 2; /* CN5XXX has two Dcache sets */ in probe_octeon() 193 c->dcache.sets = 1; /* CN3XXX has one Dcache set */ in probe_octeon() 196 c->dcache.sets * c->dcache.ways * c->dcache.linesz; in probe_octeon() 203 c->icache.sets = 8; in probe_octeon() 206 icache_size = c->icache.sets * c->icache.ways * c->icache.linesz; in probe_octeon() 210 c->dcache.sets = 8; in probe_octeon() 211 dcache_size = c->dcache.sets * c->dcache.ways * c->dcache.linesz; in probe_octeon() 217 c->icache.sets = 16; in probe_octeon() [all …]
|
D | sc-mips.c | 153 unsigned long sets, line_sz, assoc; in mips_sc_probe_cm3() local 158 sets = cfg & CM_GCR_L2_CONFIG_SET_SIZE; in mips_sc_probe_cm3() 159 sets >>= __ffs(CM_GCR_L2_CONFIG_SET_SIZE); in mips_sc_probe_cm3() 160 if (sets) in mips_sc_probe_cm3() 161 c->scache.sets = 64 << sets; in mips_sc_probe_cm3() 171 c->scache.waysize = c->scache.sets * c->scache.linesz; in mips_sc_probe_cm3() 214 c->scache.sets = 64 << tmp; in mips_sc_probe() 236 * According to config2 it would be 5-ways and 512-sets, in mips_sc_probe() 241 c->scache.sets = 256; in mips_sc_probe() 247 c->scache.waysize = c->scache.sets * c->scache.linesz; in mips_sc_probe()
|
/linux-6.15/Documentation/userspace-api/media/v4l/ ! |
D | ext-ctrls-fm-tx.rst | 30 Sets the RDS Programme Identification field for transmission. 33 Sets the RDS Programme Type field for transmission. This encodes up 37 Sets the Programme Service name (PS_NAME) for transmission. It is 49 Sets the Radio Text info for transmission. It is a textual 64 Sets the Mono/Stereo bit of the Decoder Identification code. If set, 68 Sets the 74 Sets the Compressed bit of the Decoder Identification code. If set, 78 Sets the Dynamic PTY bit of the Decoder Identification code. If set, 106 Sets the audio deviation limiter feature release time. Unit is in 120 Sets the gain for audio compression feature. It is a dB value. The [all …]
|
/linux-6.15/arch/arm64/boot/dts/marvell/ ! |
D | armada-ap806-quad.dtsi | 24 i-cache-sets = <256>; 27 d-cache-sets = <256>; 39 i-cache-sets = <256>; 42 d-cache-sets = <256>; 54 i-cache-sets = <256>; 57 d-cache-sets = <256>; 69 i-cache-sets = <256>; 72 d-cache-sets = <256>; 80 cache-sets = <512>; 89 cache-sets = <512>;
|
D | armada-ap807-quad.dtsi | 24 i-cache-sets = <256>; 27 d-cache-sets = <256>; 39 i-cache-sets = <256>; 42 d-cache-sets = <256>; 54 i-cache-sets = <256>; 57 d-cache-sets = <256>; 69 i-cache-sets = <256>; 72 d-cache-sets = <256>; 80 cache-sets = <512>; 89 cache-sets = <512>;
|
/linux-6.15/arch/arm64/boot/dts/exynos/ ! |
D | exynosautov920.dtsi | 94 i-cache-sets = <256>; 97 d-cache-sets = <256>; 108 i-cache-sets = <256>; 111 d-cache-sets = <256>; 122 i-cache-sets = <256>; 125 d-cache-sets = <256>; 136 i-cache-sets = <256>; 139 d-cache-sets = <256>; 150 i-cache-sets = <256>; 153 d-cache-sets = <256>; [all …]
|
/linux-6.15/arch/arm64/boot/dts/arm/ ! |
D | fvp-base-revc.dts | 54 i-cache-sets = <256>; 57 d-cache-sets = <256>; 67 i-cache-sets = <256>; 70 d-cache-sets = <256>; 80 i-cache-sets = <256>; 83 d-cache-sets = <256>; 93 i-cache-sets = <256>; 96 d-cache-sets = <256>; 106 i-cache-sets = <256>; 109 d-cache-sets = <256>; [all …]
|
D | juno.dts | 94 i-cache-sets = <256>; 97 d-cache-sets = <256>; 112 i-cache-sets = <256>; 115 d-cache-sets = <256>; 130 i-cache-sets = <256>; 133 d-cache-sets = <128>; 148 i-cache-sets = <256>; 151 d-cache-sets = <128>; 166 i-cache-sets = <256>; 169 d-cache-sets = <128>; [all …]
|
D | juno-r2.dts | 95 i-cache-sets = <256>; 98 d-cache-sets = <256>; 113 i-cache-sets = <256>; 116 d-cache-sets = <256>; 131 i-cache-sets = <256>; 134 d-cache-sets = <128>; 149 i-cache-sets = <256>; 152 d-cache-sets = <128>; 167 i-cache-sets = <256>; 170 d-cache-sets = <128>; [all …]
|
D | juno-r1.dts | 95 i-cache-sets = <256>; 98 d-cache-sets = <256>; 112 i-cache-sets = <256>; 115 d-cache-sets = <256>; 129 i-cache-sets = <256>; 132 d-cache-sets = <128>; 146 i-cache-sets = <256>; 149 d-cache-sets = <128>; 163 i-cache-sets = <256>; 166 d-cache-sets = <128>; [all …]
|
/linux-6.15/arch/riscv/boot/dts/sifive/ ! |
D | fu540-c000.dtsi | 29 i-cache-sets = <128>; 46 d-cache-sets = <64>; 48 d-tlb-sets = <1>; 52 i-cache-sets = <64>; 54 i-tlb-sets = <1>; 73 d-cache-sets = <64>; 75 d-tlb-sets = <1>; 79 i-cache-sets = <64>; 81 i-tlb-sets = <1>; 100 d-cache-sets = <64>; [all …]
|
D | fu740-c000.dtsi | 29 i-cache-sets = <128>; 47 d-cache-sets = <64>; 49 d-tlb-sets = <1>; 53 i-cache-sets = <128>; 55 i-tlb-sets = <1>; 74 d-cache-sets = <64>; 76 d-tlb-sets = <1>; 80 i-cache-sets = <128>; 82 i-tlb-sets = <1>; 101 d-cache-sets = <64>; [all …]
|
/linux-6.15/arch/arm/boot/dts/broadcom/ ! |
D | bcm2837.dtsi | 42 /* Source for d/i-cache-line-size and d/i-cache-sets 57 d-cache-sets = <128>; // 32KiB(size)/64(line-size)=512ways/4-way set 60 i-cache-sets = <256>; // 32KiB(size)/64(line-size)=512ways/2-way set 72 d-cache-sets = <128>; // 32KiB(size)/64(line-size)=512ways/4-way set 75 i-cache-sets = <256>; // 32KiB(size)/64(line-size)=512ways/2-way set 87 d-cache-sets = <128>; // 32KiB(size)/64(line-size)=512ways/4-way set 90 i-cache-sets = <256>; // 32KiB(size)/64(line-size)=512ways/2-way set 102 d-cache-sets = <128>; // 32KiB(size)/64(line-size)=512ways/4-way set 105 i-cache-sets = <256>; // 32KiB(size)/64(line-size)=512ways/2-way set 109 /* Source for cache-line-size + cache-sets [all …]
|
D | bcm2836.dtsi | 43 /* Source for d/i-cache-line-size and d/i-cache-sets 58 d-cache-sets = <128>; // 32KiB(size)/64(line-size)=512ways/4-way set 61 i-cache-sets = <512>; // 32KiB(size)/32(line-size)=1024ways/2-way set 72 d-cache-sets = <128>; // 32KiB(size)/64(line-size)=512ways/4-way set 75 i-cache-sets = <512>; // 32KiB(size)/32(line-size)=1024ways/2-way set 86 d-cache-sets = <128>; // 32KiB(size)/64(line-size)=512ways/4-way set 89 i-cache-sets = <512>; // 32KiB(size)/32(line-size)=1024ways/2-way set 100 d-cache-sets = <128>; // 32KiB(size)/64(line-size)=512ways/4-way set 103 i-cache-sets = <512>; // 32KiB(size)/32(line-size)=1024ways/2-way set 107 /* Source for cache-line-size + cache-sets [all …]
|
/linux-6.15/drivers/gpu/drm/i915/display/ ! |
D | intel_tv_regs.h | 41 /* Sets the colorburst to PAL mode. Required for non-M PAL modes. */ 104 /* Sets the DAC A sense value to high */ 106 /* Sets the DAC B sense value to high */ 108 /* Sets the DAC C sense value to high */ 112 /* Sets the slew rate. Must be preserved in software */ 340 /* Sets the subcarrier DDA to reset frequency every other field */ 342 /* Sets the subcarrier DDA to reset frequency every fourth field */ 344 /* Sets the subcarrier DDA to reset frequency every eighth field */ 346 /* Sets the subcarrier DDA to never reset the frequency */ 348 /* Sets the peak amplitude of the colorburst.*/ [all …]
|