Searched refs:native (Results 1 - 25 of 56) sorted by relevance

123

/linux-master/arch/sparc/kernel/
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)
18 #include <asm/syscall_table_32.h> /* 32-bit native syscalls */
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)
28 #define __SYSCALL_WITH_COMPAT(nr, native, compat) __SYSCALL(nr, native)
29 #include <asm/syscall_table_64.h> /* 64-bit native syscalls */
/linux-master/scripts/
H A Dsyscalltbl.sh13 # 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)"
H A Dsyscallnr.sh13 # NATIVE native entry point (optional)
67 while read nr abi name native compat ; do
H A Dsyscallhdr.sh13 # NATIVE native entry point (optional)
78 while read nr abi name native compat ; do
/linux-master/arch/powerpc/sysdev/xive/
H A DMakefile4 obj-$(CONFIG_PPC_XIVE_NATIVE) += native.o
/linux-master/arch/powerpc/sysdev/xics/
H A DMakefile4 obj-$(CONFIG_PPC_ICP_NATIVE) += icp-native.o
7 obj-$(CONFIG_PPC_ICS_NATIVE) += ics-native.o
/linux-master/arch/x86/entry/
H A Dsyscall_32.c11 #define __SYSCALL_WITH_COMPAT(nr, native, compat) __SYSCALL(nr, compat)
13 #define __SYSCALL_WITH_COMPAT(nr, native, compat) __SYSCALL(nr, native)
/linux-master/arch/x86/um/
H A Dsys_call_table_32.c24 #define __SYSCALL_WITH_COMPAT(nr, native, compat) __SYSCALL(nr, native)
/linux-master/tools/testing/selftests/seccomp/
H A Dseccomp_benchmark.c187 unsigned long long native, filter1, filter2, bitmap1, bitmap2; local
217 native = timing(CLOCK_PROCESS_CPUTIME_ID, samples) / samples;
218 ksft_print_msg("getpid native: %llu ns\n", native);
262 bitmap1 - native);
264 bitmap2 - native);
266 filter1 - native);
268 filter2 - native);
270 bitmap1 - native - (bitmap2 - bitmap1));
274 (filter2 - native
[all...]
/linux-master/drivers/rpmsg/
H A Dqcom_glink_smem.c51 struct qcom_glink_pipe native; member in struct:glink_smem_pipe
61 #define to_smem_pipe(p) container_of(p, struct glink_smem_pipe, native)
82 pipe->native.length = len;
89 return pipe->native.length - tail + head;
103 if (tail >= pipe->native.length)
104 tail -= pipe->native.length;
106 len = min_t(size_t, count, pipe->native.length - tail);
123 if (tail >= pipe->native.length)
124 tail -= pipe->native.length;
140 avail = pipe->native
[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 in struct:glink_rpm_pipe
79 return pipe->native.length - tail + head;
93 if (tail >= pipe->native.length)
94 tail -= pipe->native.length;
96 len = min_t(size_t, count, pipe->native.length - tail);
117 if (tail >= pipe->native.length)
118 tail -= pipe->native.length;
133 return pipe->native.length - head + tail;
144 len = min_t(size_t, count, pipe->native
[all...]
/linux-master/drivers/misc/cxl/
H A Dnative.c228 afu->native->spa_order = -1;
230 afu->native->spa_order++;
231 spa_size = (1 << afu->native->spa_order) * PAGE_SIZE;
235 afu->native->spa_max_procs, afu->native->spa_size);
237 afu->num_procs = afu->native->spa_max_procs;
241 afu->native->spa_size = spa_size;
242 afu->native->spa_max_procs = spa_max_procs(afu->native->spa_size);
243 } while (afu->native
[all...]
H A Dpci.c89 #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)
536 adapter->native->no_data_cache = true;
619 if (adapter->native->sl_ops->write_timebase_ctrl)
620 adapter->native->sl_ops->write_timebase_ctrl(adapter);
782 afu->psn_phys = p2_base(dev) + (adapter->native->ps_off + (afu->slice * adapter->ps_size));
783 afu_desc = p2_base(dev) + adapter->native->afu_desc_off + (afu->slice * adapter->native->afu_desc_size);
785 if (!(afu->native->p1n_mmio = ioremap(p1n_base, p1n_size)))
790 if (!(afu->native
[all...]
H A DMakefile5 cxl-y += main.o file.o irq.o fault.o native.o
H A Ddebugfs.c71 if (adapter->native->sl_ops->debugfs_add_adapter_regs)
72 adapter->native->sl_ops->debugfs_add_adapter_regs(adapter, dir);
114 if (afu->adapter->native->sl_ops->debugfs_add_afu_regs)
115 afu->adapter->native->sl_ops->debugfs_add_afu_regs(afu, dir);
/linux-master/arch/powerpc/include/asm/
H A Ddcr-generic.h18 dcr_host_native_t native; member in union:__anon62::__anon63
H A Ddcr.h14 #include <asm/dcr-native.h>
/linux-master/lib/
H A Dpercpu_test.c4 /* validate @native and @pcp counter values match @expected */
5 #define CHECK(native, pcp, expected) \
7 WARN((native) != (expected), \
9 (native), (native), \
/linux-master/arch/powerpc/kernel/
H A Dsystbl.c42 #define __SYSCALL_WITH_COMPAT(nr, native, compat) __SYSCALL(nr, compat)
/linux-master/include/linux/mlx4/
H A Dcmd.h270 u16 op, unsigned long timeout, int native);
275 int native)
278 op_modifier, op, timeout, native);
284 unsigned long timeout, int native)
287 op_modifier, op, timeout, native);
297 unsigned long timeout, int native)
300 op_modifier, op, timeout, native);
273 mlx4_cmd(struct mlx4_dev *dev, u64 in_param, u32 in_modifier, u8 op_modifier, u16 op, unsigned long timeout, int native) argument
282 mlx4_cmd_box(struct mlx4_dev *dev, u64 in_param, u64 out_param, u32 in_modifier, u8 op_modifier, u16 op, unsigned long timeout, int native) argument
295 mlx4_cmd_imm(struct mlx4_dev *dev, u64 in_param, u64 *out_param, u32 in_modifier, u8 op_modifier, u16 op, unsigned long timeout, int native) argument
/linux-master/drivers/gpu/drm/msm/dp/
H A Ddp_aux.c35 bool native; member in struct:dp_aux_private
98 if (!aux->native) { /* i2c */
175 if (aux->native || i2c_read || ((input_msg->address != edid_address) &&
249 * native AUX transfer function.
278 aux->native = msg->request & (DP_AUX_NATIVE_WRITE & DP_AUX_NATIVE_READ);
282 msg->reply = aux->native ?
288 if ((aux->native && msg->size > aux_cmd_native_max) ||
332 if (aux->native) {
346 msg->reply = aux->native ? DP_AUX_NATIVE_REPLY_ACK : DP_AUX_I2C_REPLY_ACK;
349 msg->reply = aux->native
[all...]
/linux-master/arch/loongarch/vdso/
H A DMakefile56 # Build native VDSO.
59 native-abi := $(filter -mabi=%,$(KBUILD_CFLAGS))
66 $(obj-vdso): KBUILD_CFLAGS := $(cflags-vdso) $(native-abi)
67 $(obj-vdso): KBUILD_AFLAGS := $(aflags-vdso) $(native-abi)
69 $(obj)/vdso.lds: KBUILD_CPPFLAGS := $(ccflags-vdso) $(native-abi)
/linux-master/arch/powerpc/sysdev/
H A Ddcr.c40 return dcr_map_ok_native(host.host.native);
66 if (!strcmp(prop, "native")) {
68 host.host.native = dcr_map_native(dev, dcr_n, dcr_c);
82 dcr_unmap_native(host.host.native, dcr_c);
93 return dcr_read_native(host.host.native, dcr_n);
105 dcr_write_native(host.host.native, dcr_n, value);
/linux-master/include/acpi/
H A Dvideo.h70 extern enum acpi_backlight_type __acpi_video_get_backlight_type(bool native,
81 * if a GPU native backlight device should be registered it *also* tells
82 * the ACPI video-detect code that native GPU backlight control is available.
84 * To check if GPU native backlight control is used in other places instead use:

Completed in 406 milliseconds

123