Home
last modified time | relevance | path

Searched full:native (Results 1 – 25 of 884) sorted by relevance

12345678910>>...36

/linux/sound/usb/
H A DKconfig66 tristate "Native Instruments USB audio devices"
74 * Native Instruments RigKontrol2
75 * Native Instruments RigKontrol3
76 * Native Instruments Kore Controller
77 * Native Instruments Kore Controller 2
78 * Native Instruments Audio Kontrol 1
79 * Native Instruments Audio 2 DJ
80 * Native Instruments Audio 4 DJ
81 * Native Instruments Audio 8 DJ
82 * Native Instruments Traktor Audio 2
[all …]
/linux/fs/nls/
H A DKconfig3 # 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/drivers/misc/cxl/
H A Dnative.c228 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 …]
/linux/drivers/rpmsg/
H A Dqcom_glink_smem.c51 struct qcom_glink_pipe native; member
61 #define to_smem_pipe(p) container_of(p, struct glink_smem_pipe, native)
82 pipe->native.length = len; in glink_smem_rx_avail()
89 return pipe->native.length - tail + head; in glink_smem_rx_avail()
103 if (tail >= pipe->native.length) in glink_smem_rx_peek()
104 tail -= pipe->native.length; in glink_smem_rx_peek()
106 len = min_t(size_t, count, pipe->native.length - tail); in glink_smem_rx_peek()
123 if (tail >= pipe->native.length) in glink_smem_rx_advance()
124 tail -= pipe->native.length; in glink_smem_rx_advance()
140 avail = pipe->native.length - head + tail; in glink_smem_tx_avail()
[all …]
H A Dqcom_glink_rpm.c33 #define to_rpm_pipe(p) container_of(p, struct glink_rpm_pipe, native)
49 struct qcom_glink_pipe native; member
79 return pipe->native.length - tail + head; in glink_rpm_rx_avail()
93 if (tail >= pipe->native.length) in glink_rpm_rx_peek()
94 tail -= pipe->native.length; in glink_rpm_rx_peek()
96 len = min_t(size_t, count, pipe->native.length - tail); in glink_rpm_rx_peek()
117 if (tail >= pipe->native.length) in glink_rpm_rx_advance()
118 tail -= pipe->native.length; in glink_rpm_rx_advance()
133 return pipe->native.length - head + tail; in glink_rpm_tx_avail()
144 len = min_t(size_t, count, pipe->native.length - head); in glink_rpm_tx_write_one()
[all …]
/linux/tools/testing/selftests/seccomp/
H A Dseccomp_benchmark.c187 unsigned long long native, filter1, filter2, bitmap1, bitmap2; in main() local
216 /* Native call */ in main()
217 native = timing(CLOCK_PROCESS_CPUTIME_ID, samples) / samples; in main()
218 ksft_print_msg("getpid native: %llu ns\n", native); in main()
262 bitmap1 - native); in main()
264 bitmap2 - native); in main()
266 filter1 - native); in main()
268 filter2 - native); in main()
270 bitmap1 - native in main()
[all...]
/linux/scripts/
H A Dsyscalltbl.sh8 # NR ABI NAME [NATIVE] [COMPAT]
13 # NATIVE native entry point (optional)
57 while read nr abi name native compat noreturn; do
79 echo "__SYSCALL_COMPAT_NORETURN($nr, $native, $compat)"
81 echo "__SYSCALL_NORETURN($nr, $native)"
84 echo "__SYSCALL_WITH_COMPAT($nr, $native, $compat)"
85 elif [ -n "$native" ]; then
86 echo "__SYSCALL($nr, $native)"
H A Dsyscallnr.sh8 # NR ABI NAME [NATIVE] [COMPAT]
13 # NATIVE native entry point (optional)
67 while read nr abi name native compat ; do
H A Dsyscallhdr.sh8 # NR ABI NAME [NATIVE] [COMPAT]
13 # NATIVE native entry point (optional)
78 while read nr abi name native compat ; do
/linux/Documentation/devicetree/bindings/display/panel/
H A Ddisplay-timings.yaml18 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/arch/sparc/kernel/
H A Dsystbls_64.S3 * 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 */
H A Dsystbls_32.S3 * 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/Documentation/admin-guide/
H A Dsyscall-user-dispatch.rst12 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
84 quickly capture system calls issued by a non-native part of the
85 application, while not impacting the Linux native regions of the
/linux/tools/testing/selftests/bpf/prog_tests/
H A Dbtf_endian.c25 /* 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/Documentation/devicetree/bindings/pci/
H A Dsnps,dw-pcie-common.yaml31 them in a contiguous memory space if pure Native or AXI Bridge DBI access
117 - description: See native 'dbi' clock for details
119 - description: See native 'mstr/slv' clock for details
121 - description: See native 'pipe' clock for details
123 - description: See native 'aux' clock for details
125 - description: See native 'ref' clock for details.
174 - description: See native 'app' reset for details
176 - description: See native 'phy' reset for details
178 - description: See native 'pwr' reset for details
/linux/arch/mips/boot/dts/brcm/
H A Dbcm7346.dtsi82 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 …]
H A Dbcm7125.dtsi82 native-endian;
109 native-endian;
122 native-endian;
134 native-endian;
146 native-endian;
223 native-endian;
232 native-endian;
/linux/drivers/gpu/drm/msm/dp/
H A Ddp_aux.c35 bool native; member
98 if (!aux->native) { /* i2c */ in dp_aux_write()
175 if (aux->native || i2c_read || ((input_msg->address != edid_address) && in dp_aux_update_offset_and_segment()
249 * native AUX transfer function. in dp_aux_transfer_helper()
278 aux->native = msg->request & (DP_AUX_NATIVE_WRITE & DP_AUX_NATIVE_READ); in dp_aux_transfer()
282 msg->reply = aux->native ? in dp_aux_transfer()
288 if ((aux->native && msg->size > aux_cmd_native_max) || in dp_aux_transfer()
332 if (aux->native) { in dp_aux_transfer()
346 msg->reply = aux->native ? DP_AUX_NATIVE_REPLY_ACK : DP_AUX_I2C_REPLY_ACK; in dp_aux_transfer()
349 msg->reply = aux->native ? DP_AUX_NATIVE_REPLY_DEFER : DP_AUX_I2C_REPLY_DEFER; in dp_aux_transfer()
[all …]
/linux/lib/
H A Dpercpu_test.c4 /* validate @native and @pcp counter values match @expected */
5 #define CHECK(native, pcp, expected) \ argument
7 WARN((native) != (expected), \
9 (native), (native), \
/linux/arch/powerpc/sysdev/
H A Ddcr.c40 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/include/linux/mlx4/
H A Dcmd.h270 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/include/acpi/
H A Dvideo.h71 extern enum acpi_backlight_type __acpi_video_get_backlight_type(bool native,
82 * if a GPU native backlight device should be registered it *also* tells
83 * the ACPI video-detect code that native GPU backlight control is available.
85 * To check if GPU native backlight control is used in other places instead use:
/linux/include/drm/display/
H A Ddrm_dsc.h247 * @native_422: True if Native 4:2:2 supported, else false
251 * @native_420: True if Native 4:2:0 supported else false.
256 * Additional bits/grp for seconnd line of slice for native 4:2:0
267 * Offset adjustment for second line in Native 4:2:0 mode
508 * PPS88[0] - 0 = Native 4:2:2 not used
509 * 1 = Native 4:2:2 used
510 * PPS88[1] - 0 = Native 4:2:0 not use
511 * 1 = Native 4:2:0 used
518 * second line of a slice in Native 4:2:0 mode.
532 * line in Native 4:2:0 mode.
/linux/arch/x86/entry/
H A Dsyscall_32.c11 #define __SYSCALL_WITH_COMPAT(nr, native, compat) __SYSCALL(nr, compat) argument
13 #define __SYSCALL_WITH_COMPAT(nr, native, compat) __SYSCALL(nr, native) argument
/linux/Documentation/devicetree/bindings/memory-controllers/
H A Dintel,ixp4xx-expansion-bus-controller.yaml35 native-endian:
40 registers must always be accessed using native endianness.
65 - native-endian
79 native-endian;

12345678910>>...36