Searched refs:in (Results 1 - 25 of 2404) sorted by relevance

1234567891011>>

/linux-master/drivers/net/ethernet/mellanox/mlx5/core/sf/
H A Dcmd.c10 u32 in[MLX5_ST_SZ_DW(alloc_sf_in)] = {}; local
12 MLX5_SET(alloc_sf_in, in, opcode, MLX5_CMD_OP_ALLOC_SF);
13 MLX5_SET(alloc_sf_in, in, function_id, function_id);
15 return mlx5_cmd_exec(dev, in, sizeof(in), out, sizeof(out));
21 u32 in[MLX5_ST_SZ_DW(dealloc_sf_in)] = {}; local
23 MLX5_SET(dealloc_sf_in, in, opcode, MLX5_CMD_OP_DEALLOC_SF);
24 MLX5_SET(dealloc_sf_in, in, function_id, function_id);
26 return mlx5_cmd_exec(dev, in, sizeof(in), ou
32 u32 in[MLX5_ST_SZ_DW(enable_hca_in)] = {}; local
43 u32 in[MLX5_ST_SZ_DW(disable_hca_in)] = {}; local
[all...]
/linux-master/fs/udf/
H A Dudfend.h8 static inline struct kernel_lb_addr lelb_to_cpu(struct lb_addr in) argument
12 out.logicalBlockNum = le32_to_cpu(in.logicalBlockNum);
13 out.partitionReferenceNum = le16_to_cpu(in.partitionReferenceNum);
18 static inline struct lb_addr cpu_to_lelb(struct kernel_lb_addr in) argument
22 out.logicalBlockNum = cpu_to_le32(in.logicalBlockNum);
23 out.partitionReferenceNum = cpu_to_le16(in.partitionReferenceNum);
28 static inline struct short_ad lesa_to_cpu(struct short_ad in) argument
32 out.extLength = le32_to_cpu(in.extLength);
33 out.extPosition = le32_to_cpu(in.extPosition);
38 static inline struct short_ad cpu_to_lesa(struct short_ad in) argument
48 lela_to_cpu(struct long_ad in) argument
58 cpu_to_lela(struct kernel_long_ad in) argument
68 leea_to_cpu(struct extent_ad in) argument
[all...]
/linux-master/scripts/
H A Dxen-hypercalls.sh5 in="$@"
7 for i in $in; do
12 for (i in v) if (!(v[i] in v))
/linux-master/include/media/drv-intf/
H A Dmsp3400.h16 combinations. The details are all in the datasheets but I will try
45 specify in the 'input' arg of the s_routing function:
51 And in the 'output' arg of the s_routing function you specify:
77 #define MSP_SCART_TO_DSP(in) (in)
81 #define MSP_TUNER_TO_DSP(in) ((in) << 3)
108 #define MSP_DSP_TO_MAIN(in) ((in) << 4)
109 #define MSP_DSP_TO_AUX(in) ((i
[all...]
/linux-master/tools/testing/selftests/ptp/
H A Dptpchmaskfmt.sh11 for int in $(cat "$DEBUGFS_MASKFILE") ; do
/linux-master/include/linux/
H A Dascii85.h23 ascii85_encode(u32 in, char *out) argument
27 if (in == 0)
32 out[i] = '!' + in % 85;
33 in /= 85;
/linux-master/tools/testing/selftests/bpf/progs/
H A Dtest_core_autosize.c41 unsigned int ptr; /* can't use `void *`, it is always 8 byte in BPF target */
89 struct test_struct___samesize *in = (void *)&input; local
92 ptr_samesized = (unsigned long long)in->ptr;
93 val1_samesized = in->val1;
94 val2_samesized = in->val2;
95 val3_samesized = in->val3;
96 val4_samesized = in->val4;
98 out->ptr = in->ptr;
99 out->val1 = in->val1;
100 out->val2 = in
110 struct test_struct___downsize *in = (void *)&input; local
141 struct test_struct___downsize *in = (void *)&input; local
170 struct test_struct___signed *in = (void *)&input; local
[all...]
H A Dtest_core_reloc_existence.c12 char in[256]; member in struct:__anon4471
44 struct core_reloc_existence *in = (void *)&data.in; local
47 out->a_exists = bpf_core_field_exists(in->a);
49 out->a_value = BPF_CORE_READ(in, a);
53 out->b_exists = bpf_core_field_exists(in->b);
55 out->b_value = BPF_CORE_READ(in, b);
59 out->c_exists = bpf_core_field_exists(in->c);
61 out->c_value = BPF_CORE_READ(in, c);
65 out->arr_exists = bpf_core_field_exists(in
[all...]
H A Dtest_core_reloc_primitives.c12 char in[256]; member in struct:__anon2600
34 struct core_reloc_primitives *in = (void *)&data.in; local
37 if (CORE_READ(&out->a, &in->a) ||
38 CORE_READ(&out->b, &in->b) ||
39 CORE_READ(&out->c, &in->c) ||
40 CORE_READ(&out->d, &in->d) ||
41 CORE_READ(&out->f, &in->f))
H A Dtest_core_reloc_arrays.c12 char in[256]; member in struct:__anon2583
42 struct core_reloc_arrays *in = (void *)&data.in; local
45 if (CORE_READ(&out->a2, &in->a[2]))
47 if (CORE_READ(&out->b123, &in->b[1][2][3]))
49 if (CORE_READ(&out->c1c, &in->c[1].c))
51 if (CORE_READ(&out->d00d, &in->d[0][0].d))
53 if (CORE_READ(&out->f01c, &in->f[0][1].c))
H A Dtest_core_reloc_ptr_as_arr.c12 char in[256]; member in struct:__anon2601
25 struct core_reloc_ptr_as_arr *in = (void *)&data.in; local
28 if (CORE_READ(&out->a, &in[2].a))
H A Dtest_link_pinning.c8 int in = 0; variable
14 out = in;
21 out = in;
H A Dtest_core_reloc_ints.c12 char in[256]; member in struct:__anon2592
32 struct core_reloc_ints *in = (void *)&data.in; local
35 if (CORE_READ(&out->u8_field, &in->u8_field) ||
36 CORE_READ(&out->s8_field, &in->s8_field) ||
37 CORE_READ(&out->u16_field, &in->u16_field) ||
38 CORE_READ(&out->s16_field, &in->s16_field) ||
39 CORE_READ(&out->u32_field, &in->u32_field) ||
40 CORE_READ(&out->s32_field, &in->s32_field) ||
41 CORE_READ(&out->u64_field, &in
[all...]
H A Dtest_core_reloc_mods.c12 char in[256]; member in struct:__anon3644
59 struct core_reloc_mods *in = (void *)&data.in; local
62 if (CORE_READ(&out->a, &in->a) ||
63 CORE_READ(&out->b, &in->b) ||
64 CORE_READ(&out->c, &in->c) ||
65 CORE_READ(&out->d, &in->d) ||
66 CORE_READ(&out->e, &in->e[2]) ||
67 CORE_READ(&out->f, &in->f[1]) ||
68 CORE_READ(&out->g, &in
[all...]
/linux-master/drivers/infiniband/hw/mlx5/
H A Dcmd.c11 u32 in[MLX5_ST_SZ_DW(query_special_contexts_in)] = {}; local
23 MLX5_SET(query_special_contexts_in, in, opcode,
25 err = mlx5_cmd_exec_inout(dev->mdev, query_special_contexts, in, out);
48 u32 in[MLX5_ST_SZ_DW(query_cong_params_in)] = {}; local
50 MLX5_SET(query_cong_params_in, in, opcode,
52 MLX5_SET(query_cong_params_in, in, cong_protocol, cong_point);
54 return mlx5_cmd_exec_inout(dev, query_cong_params, in, out);
59 u32 in[MLX5_ST_SZ_DW(destroy_tir_in)] = {}; local
61 MLX5_SET(destroy_tir_in, in, opcode, MLX5_CMD_OP_DESTROY_TIR);
62 MLX5_SET(destroy_tir_in, in, tir
69 u32 in[MLX5_ST_SZ_DW(destroy_tis_in)] = {}; local
79 u32 in[MLX5_ST_SZ_DW(destroy_rqt_in)] = {}; local
90 u32 in[MLX5_ST_SZ_DW(alloc_transport_domain_in)] = {}; local
109 u32 in[MLX5_ST_SZ_DW(dealloc_transport_domain_in)] = {}; local
120 u32 in[MLX5_ST_SZ_DW(dealloc_pd_in)] = {}; local
131 u32 in[MLX5_ST_SZ_DW(attach_to_mcg_in)] = {}; local
145 u32 in[MLX5_ST_SZ_DW(detach_from_mcg_in)] = {}; local
159 u32 in[MLX5_ST_SZ_DW(alloc_xrcd_in)] = {}; local
172 u32 in[MLX5_ST_SZ_DW(dealloc_xrcd_in)] = {}; local
189 u32 *in; local
220 u32 in[MLX5_ST_SZ_DW(alloc_uar_in)] = {}; local
235 u32 in[MLX5_ST_SZ_DW(dealloc_uar_in)] = {}; local
[all...]
H A Dsrq_cmd.c12 static int get_pas_size(struct mlx5_srq_attr *in) argument
14 u32 log_page_size = in->log_page_size + 12;
15 u32 log_srq_size = in->log_size;
16 u32 log_rq_stride = in->wqe_shift;
17 u32 page_offset = in->page_offset;
27 static void set_wq(void *wq, struct mlx5_srq_attr *in) argument
29 MLX5_SET(wq, wq, wq_signature, !!(in->flags
31 MLX5_SET(wq, wq, log_wq_pg_sz, in->log_page_size);
32 MLX5_SET(wq, wq, log_wq_stride, in->wqe_shift + 4);
33 MLX5_SET(wq, wq, log_wq_sz, in
40 set_srqc(void *srqc, struct mlx5_srq_attr *in) argument
55 get_wq(void *wq, struct mlx5_srq_attr *in) argument
68 get_srqc(void *srqc, struct mlx5_srq_attr *in) argument
95 __set_srq_page_size(struct mlx5_srq_attr *in, unsigned long page_size) argument
114 create_srq_cmd(struct mlx5_ib_dev *dev, struct mlx5_core_srq *srq, struct mlx5_srq_attr *in) argument
166 u32 in[MLX5_ST_SZ_DW(destroy_srq_in)] = {}; local
178 u32 in[MLX5_ST_SZ_DW(arm_rq_in)] = {}; local
192 u32 in[MLX5_ST_SZ_DW(query_srq_in)] = {}; local
216 create_xrc_srq_cmd(struct mlx5_ib_dev *dev, struct mlx5_core_srq *srq, struct mlx5_srq_attr *in) argument
273 u32 in[MLX5_ST_SZ_DW(destroy_xrc_srq_in)] = {}; local
285 u32 in[MLX5_ST_SZ_DW(arm_xrc_srq_in)] = {}; local
301 u32 in[MLX5_ST_SZ_DW(query_xrc_srq_in)] = {}; local
328 create_rmp_cmd(struct mlx5_ib_dev *dev, struct mlx5_core_srq *srq, struct mlx5_srq_attr *in) argument
388 u32 in[MLX5_ST_SZ_DW(destroy_rmp_in)] = {}; local
400 void *in = NULL; local
475 create_xrq_cmd(struct mlx5_ib_dev *dev, struct mlx5_core_srq *srq, struct mlx5_srq_attr *in) argument
537 u32 in[MLX5_ST_SZ_DW(destroy_xrq_in)] = {}; local
550 u32 in[MLX5_ST_SZ_DW(arm_rq_in)] = {}; local
564 u32 in[MLX5_ST_SZ_DW(query_xrq_in)] = {}; local
600 create_srq_split(struct mlx5_ib_dev *dev, struct mlx5_core_srq *srq, struct mlx5_srq_attr *in) argument
629 mlx5_cmd_create_srq(struct mlx5_ib_dev *dev, struct mlx5_core_srq *srq, struct mlx5_srq_attr *in) argument
[all...]
/linux-master/tools/testing/selftests/ftrace/test.d/00basic/
H A Dbasic2.tc6 for t in `cat available_tracers`; do
/linux-master/arch/powerpc/platforms/ps3/
H A Dexports.c9 #define LV1_CALL(name, in, out, num) \
10 extern s64 _lv1_##name(LV1_##in##_IN_##out##_OUT_ARG_DECL); \
/linux-master/drivers/video/fbdev/omap2/omapfb/displays/
H A Dconnector-hdmi.c39 struct omap_dss_device *in; member in struct:panel_drv_data
53 struct omap_dss_device *in = ddata->in; local
60 return in->ops.hdmi->connect(in, dssdev);
66 struct omap_dss_device *in = ddata->in; local
73 in->ops.hdmi->disconnect(in, dssdev);
79 struct omap_dss_device *in local
104 struct omap_dss_device *in = ddata->in; local
120 struct omap_dss_device *in = ddata->in; local
140 struct omap_dss_device *in = ddata->in; local
149 struct omap_dss_device *in = ddata->in; local
157 struct omap_dss_device *in = ddata->in; local
168 struct omap_dss_device *in = ddata->in; local
177 struct omap_dss_device *in = ddata->in; local
256 struct omap_dss_device *in = ddata->in; local
[all...]
H A Dconnector-analog-tv.c18 struct omap_dss_device *in; member in struct:panel_drv_data
48 struct omap_dss_device *in = ddata->in; local
55 return in->ops.atv->connect(in, dssdev);
61 struct omap_dss_device *in = ddata->in; local
68 in->ops.atv->disconnect(in, dssdev);
74 struct omap_dss_device *in local
106 struct omap_dss_device *in = ddata->in; local
122 struct omap_dss_device *in = ddata->in; local
142 struct omap_dss_device *in = ddata->in; local
150 struct omap_dss_device *in = ddata->in; local
158 struct omap_dss_device *in = ddata->in; local
228 struct omap_dss_device *in = ddata->in; local
[all...]
/linux-master/tools/testing/selftests/bpf/benchs/
H A Drun_bench_bpf_loop.sh8 for t in 1 4 8 12 16; do
9 for i in 10 100 500 1000 5000 10000 50000 100000 500000 1000000; do
H A Drun_bench_strncmp.sh8 for s in 1 8 64 512 2048 4095; do
9 for b in no-helper helper; do
/linux-master/drivers/gpu/drm/nouveau/dispnv50/
H A Dlut.c6 * to deal in the Software without restriction, including without limitation
11 * The above copyright notice and this permission notice shall be included in
35 struct drm_color_lut *in = blob ? blob->data : NULL; local
40 if (!in) {
41 in = kvmalloc_array(1024, sizeof(*in), GFP_KERNEL);
42 if (!WARN_ON(!in)) {
44 in[i].red =
45 in[i].green =
46 in[
[all...]
/linux-master/drivers/net/ethernet/mellanox/mlx5/core/
H A Dpd.c7 * COPYING in the main directory of this source tree, or the
10 * Redistribution and use in source and binary forms, with or
18 * - Redistributions in binary form must reproduce the above
20 * disclaimer in the documentation and/or other materials
40 u32 in[MLX5_ST_SZ_DW(alloc_pd_in)] = {}; local
43 MLX5_SET(alloc_pd_in, in, opcode, MLX5_CMD_OP_ALLOC_PD);
44 err = mlx5_cmd_exec_inout(dev, alloc_pd, in, out);
53 u32 in[MLX5_ST_SZ_DW(dealloc_pd_in)] = {}; local
55 MLX5_SET(dealloc_pd_in, in, opcode, MLX5_CMD_OP_DEALLOC_PD);
56 MLX5_SET(dealloc_pd_in, in, p
[all...]
/linux-master/arch/arm/kernel/
H A Dhead-inflate-data.c20 * the .data segment stored compressed in ROM. Therefore none of the global
24 * in the .bss area. The linker script makes sure the .bss is big enough
27 * We mimic the code in lib/decompress_inflate.c to use the smallest work
36 char *in = __data_loc; local
40 if (in[0] != 0x1f || in[1] != 0x8b || in[2] != 0x08 || in[3] & ~3)
42 in += 10;
45 strm->next_in = in;
[all...]

Completed in 407 milliseconds

1234567891011>>