/Linux-v6.1/sound/usb/ |
D | Kconfig | 55 tristate "Native Instruments USB audio devices" 63 * Native Instruments RigKontrol2 64 * Native Instruments RigKontrol3 65 * Native Instruments Kore Controller 66 * Native Instruments Kore Controller 2 67 * Native Instruments Audio Kontrol 1 68 * Native Instruments Audio 2 DJ 69 * Native Instruments Audio 4 DJ 70 * Native Instruments Audio 8 DJ 71 * Native Instruments Traktor Audio 2 [all …]
|
/Linux-v6.1/drivers/rpmsg/ |
D | qcom_glink_smem.c | 37 struct qcom_glink_pipe native; member 47 #define to_smem_pipe(p) container_of(p, struct glink_smem_pipe, native) 67 pipe->native.length = len; in glink_smem_rx_avail() 74 return pipe->native.length - tail + head; in glink_smem_rx_avail() 88 if (tail >= pipe->native.length) in glink_smem_rx_peak() 89 tail -= pipe->native.length; in glink_smem_rx_peak() 91 len = min_t(size_t, count, pipe->native.length - tail); in glink_smem_rx_peak() 108 if (tail >= pipe->native.length) in glink_smem_rx_advance() 109 tail -= pipe->native.length; in glink_smem_rx_advance() 125 avail = pipe->native.length - head + tail; in glink_smem_tx_avail() [all …]
|
D | qcom_glink_rpm.c | 32 #define to_rpm_pipe(p) container_of(p, struct glink_rpm_pipe, native) 48 struct qcom_glink_pipe native; member 66 return pipe->native.length - tail + head; in glink_rpm_rx_avail() 80 if (tail >= pipe->native.length) in glink_rpm_rx_peak() 81 tail -= pipe->native.length; in glink_rpm_rx_peak() 83 len = min_t(size_t, count, pipe->native.length - tail); in glink_rpm_rx_peak() 104 if (tail >= pipe->native.length) in glink_rpm_rx_advance() 105 tail -= pipe->native.length; in glink_rpm_rx_advance() 120 return pipe->native.length - head + tail; in glink_rpm_tx_avail() 131 len = min_t(size_t, count, pipe->native.length - head); in glink_rpm_tx_write_one() [all …]
|
/Linux-v6.1/fs/nls/ |
D | Kconfig | 3 # Native language support configuration 7 tristate "Native language support" 9 The base Native Language Support. A number of filesystems 11 as the ability of some filesystems to use native languages 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 [all …]
|
/Linux-v6.1/drivers/misc/cxl/ |
D | native.c | 228 afu->native->spa_order = -1; in cxl_alloc_spa() 230 afu->native->spa_order++; in cxl_alloc_spa() 231 spa_size = (1 << afu->native->spa_order) * PAGE_SIZE; in cxl_alloc_spa() 235 afu->native->spa_max_procs, afu->native->spa_size); in cxl_alloc_spa() 237 afu->num_procs = afu->native->spa_max_procs; in cxl_alloc_spa() 241 afu->native->spa_size = spa_size; in cxl_alloc_spa() 242 afu->native->spa_max_procs = spa_max_procs(afu->native->spa_size); in cxl_alloc_spa() 243 } while (afu->native->spa_max_procs < afu->num_procs); in cxl_alloc_spa() 245 if (!(afu->native->spa = (struct cxl_process_element *) in cxl_alloc_spa() 246 __get_free_pages(GFP_KERNEL | __GFP_ZERO, afu->native->spa_order))) { in cxl_alloc_spa() [all …]
|
D | pci.c | 89 #define AFUD_READ(afu, off) in_be64(afu->native->afu_desc_mmio + off) 90 #define AFUD_READ_LE(afu, off) in_le64(afu->native->afu_desc_mmio + off) 544 adapter->native->no_data_cache = true; in init_implementation_adapter_regs_psl9() 627 if (adapter->native->sl_ops->write_timebase_ctrl) in cxl_setup_psl_timebase() 628 adapter->native->sl_ops->write_timebase_ctrl(adapter); in cxl_setup_psl_timebase() 790 afu->psn_phys = p2_base(dev) + (adapter->native->ps_off + (afu->slice * adapter->ps_size)); in pci_map_slice_regs() 791 …afu_desc = p2_base(dev) + adapter->native->afu_desc_off + (afu->slice * adapter->native->afu_desc_… in pci_map_slice_regs() 793 if (!(afu->native->p1n_mmio = ioremap(p1n_base, p1n_size))) in pci_map_slice_regs() 798 if (!(afu->native->afu_desc_mmio = ioremap(afu_desc, adapter->native->afu_desc_size))) in pci_map_slice_regs() 806 iounmap(afu->native->p1n_mmio); in pci_map_slice_regs() [all …]
|
/Linux-v6.1/tools/testing/selftests/seccomp/ |
D | seccomp_benchmark.c | 143 unsigned long long native, filter1, filter2, bitmap1, bitmap2; in main() local 163 /* Native call */ in main() 164 native = timing(CLOCK_PROCESS_CPUTIME_ID, samples) / samples; in main() 165 printf("getpid native: %llu ns\n", native); in main() 207 bitmap1 - native); in main() 209 bitmap2 - native); in main() 211 filter1 - native); in main() 213 filter2 - native); in main() 215 bitmap1 - native - (bitmap2 - bitmap1)); in main() 219 (filter2 - native - entry) / 4); in main() [all …]
|
/Linux-v6.1/scripts/ |
D | syscalltbl.sh | 8 # NR ABI NAME [NATIVE] [COMPAT] 13 # NATIVE native entry point (optional) 57 while read nr abi name native compat ; do 70 echo "__SYSCALL_WITH_COMPAT($nr, $native, $compat)" 71 elif [ -n "$native" ]; then 72 echo "__SYSCALL($nr, $native)"
|
D | syscallnr.sh | 8 # NR ABI NAME [NATIVE] [COMPAT] 13 # NATIVE native entry point (optional) 67 while read nr abi name native compat ; do
|
D | syscallhdr.sh | 8 # NR ABI NAME [NATIVE] [COMPAT] 13 # NATIVE native entry point (optional) 78 while read nr abi name native compat ; do
|
/Linux-v6.1/Documentation/devicetree/bindings/display/panel/ |
D | display-timings.yaml | 18 and to specify the timing that is native for the display. 24 native-mode: 27 The default display timing is the one specified as native-mode. 28 If no native-mode is specified then the first node is assumed 29 to be the native mode. 44 * timing1 is the native-mode. 47 native-mode = <&timing1>;
|
/Linux-v6.1/arch/sparc/kernel/ |
D | systbls_64.S | 3 * The native Linux system call table lives here also. 19 #define __SYSCALL_WITH_COMPAT(nr, native, compat) __SYSCALL(nr, compat) argument 28 #define __SYSCALL_WITH_COMPAT(nr, native, compat) __SYSCALL(nr, native) argument 29 #include <asm/syscall_table_64.h> /* 64-bit native syscalls */
|
D | systbls_32.S | 3 * The native Linux system call table lives here also. 12 #define __SYSCALL_WITH_COMPAT(nr, native, compat) __SYSCALL(nr, native) argument 18 #include <asm/syscall_table_32.h> /* 32-bit native syscalls */
|
/Linux-v6.1/Documentation/admin-guide/ |
D | syscall-user-dispatch.rst | 12 incompatible code - while being able to execute native syscalls without 13 a high performance penalty on the native part of the process. Seccomp 36 native Windows code are currently not known to be a performance problem, 40 non-native applications, it must function on syscalls whose invocation 63 includes the most common syscall dispatchers in the native code 80 quickly capture system calls issued by a non-native part of the 81 application, while not impacting the Linux native regions of the
|
/Linux-v6.1/tools/testing/selftests/bpf/prog_tests/ |
D | btf_endian.c | 25 /* Load BTF in native endianness */ in test_btf_endian() 34 /* Get raw BTF data in non-native endianness... */ in test_btf_endian() 51 /* both raw data should be identical (with non-native endianness) */ in test_btf_endian() 59 /* swap it back to native endianness */ in test_btf_endian() 65 /* now header should have native BTF_MAGIC */ in test_btf_endian() 90 /* the type should appear as if it was stored in native endianness */ in test_btf_endian()
|
/Linux-v6.1/arch/mips/boot/dts/brcm/ |
D | bcm7346.dtsi | 82 native-endian; 126 native-endian; 139 native-endian; 151 native-endian; 163 native-endian; 321 native-endian; 330 native-endian; 340 native-endian; 349 native-endian; 359 native-endian; [all …]
|
D | bcm7125.dtsi | 82 native-endian; 109 native-endian; 122 native-endian; 134 native-endian; 146 native-endian; 223 native-endian; 232 native-endian;
|
/Linux-v6.1/drivers/gpu/drm/msm/dp/ |
D | dp_aux.c | 32 bool native; member 95 if (!aux->native) { /* i2c */ in dp_aux_write() 215 if (aux->native || i2c_read || ((input_msg->address != edid_address) && in dp_aux_update_offset_and_segment() 289 * native AUX transfer function. in dp_aux_transfer_helper() 318 aux->native = msg->request & (DP_AUX_NATIVE_WRITE & DP_AUX_NATIVE_READ); in dp_aux_transfer() 322 msg->reply = aux->native ? in dp_aux_transfer() 328 if ((aux->native && msg->size > aux_cmd_native_max) || in dp_aux_transfer() 373 if (aux->native) { in dp_aux_transfer() 387 msg->reply = aux->native ? DP_AUX_NATIVE_REPLY_ACK : DP_AUX_I2C_REPLY_ACK; in dp_aux_transfer() 390 msg->reply = aux->native ? DP_AUX_NATIVE_REPLY_DEFER : DP_AUX_I2C_REPLY_DEFER; in dp_aux_transfer() [all …]
|
/Linux-v6.1/arch/loongarch/vdso/ |
D | Makefile | 63 # Build native VDSO. 66 native-abi := $(filter -mabi=%,$(KBUILD_CFLAGS)) 73 $(obj-vdso): KBUILD_CFLAGS := $(cflags-vdso) $(native-abi) 74 $(obj-vdso): KBUILD_AFLAGS := $(aflags-vdso) $(native-abi) 76 $(obj)/vdso.lds: KBUILD_CPPFLAGS := $(ccflags-vdso) $(native-abi)
|
/Linux-v6.1/lib/ |
D | percpu_test.c | 4 /* validate @native and @pcp counter values match @expected */ 5 #define CHECK(native, pcp, expected) \ argument 7 WARN((native) != (expected), \ 9 (native), (native), \
|
/Linux-v6.1/arch/x86/entry/ |
D | syscall_32.c | 11 #define __SYSCALL_WITH_COMPAT(nr, native, compat) __SYSCALL(nr, compat) argument 13 #define __SYSCALL_WITH_COMPAT(nr, native, compat) __SYSCALL(nr, native) argument
|
/Linux-v6.1/arch/powerpc/sysdev/ |
D | dcr.c | 40 return dcr_map_ok_native(host.host.native); in dcr_map_ok_generic() 66 if (!strcmp(prop, "native")) { in dcr_map_generic() 68 host.host.native = dcr_map_native(dev, dcr_n, dcr_c); in dcr_map_generic() 82 dcr_unmap_native(host.host.native, dcr_c); in dcr_unmap_generic() 93 return dcr_read_native(host.host.native, dcr_n); in dcr_read_generic() 105 dcr_write_native(host.host.native, dcr_n, value); in dcr_write_generic()
|
/Linux-v6.1/drivers/acpi/ |
D | video_detect.c | 50 if (!strcmp("native", acpi_video_backlight_string)) in acpi_video_parse_cmdline() 273 * native backlight causes a regression where backlight does not work 311 /* The native backlight controls do not work on some older machines */ 413 /* Non win8 machines which need native backlight nevertheless */ 694 static enum acpi_backlight_type __acpi_video_get_backlight_type(bool native) in __acpi_video_get_backlight_type() argument 713 if (native) in __acpi_video_get_backlight_type() 735 /* Chromebooks should always prefer native backlight control. */ in __acpi_video_get_backlight_type() 739 /* On systems with ACPI video use either native or ACPI video. */ in __acpi_video_get_backlight_type() 744 * for win8 and native brightness ctl is available, use that. in __acpi_video_get_backlight_type() 746 * The native check deliberately is inside the if acpi-video in __acpi_video_get_backlight_type() [all …]
|
/Linux-v6.1/include/linux/mlx4/ |
D | cmd.h | 270 u16 op, unsigned long timeout, int native); 275 int native) in mlx4_cmd() argument 278 op_modifier, op, timeout, native); in mlx4_cmd() 284 unsigned long timeout, int native) in mlx4_cmd_box() argument 287 op_modifier, op, timeout, native); in mlx4_cmd_box() 297 unsigned long timeout, int native) in mlx4_cmd_imm() argument 300 op_modifier, op, timeout, native); in mlx4_cmd_imm()
|
/Linux-v6.1/drivers/pci/pcie/ |
D | portdrv_pci.c | 22 /* If this switch is set, PCIe port native services should not be enabled. */ 26 * If the user specified "pcie_ports=native", use the PCIe services regardless 33 * If the user specified "pcie_ports=dpc-native", use the Linux DPC PCIe 42 else if (!strncmp(str, "native", 6)) in pcie_port_setup() 44 else if (!strncmp(str, "dpc-native", 10)) in pcie_port_setup()
|