Searched refs:out (Results 1 - 25 of 7758) sorted by relevance

1234567891011>>

/linux-master/drivers/net/ethernet/microchip/lan966x/
H A Dlan966x_vcap_debugfs.c10 struct vcap_output_print *out)
15 out->prf(out->dst, " port[%d] (%s): ", port->chip_port,
19 out->prf(out->dst, "\n state: ");
21 out->prf(out->dst, "on");
23 out->prf(out->dst, "off");
26 out
8 lan966x_vcap_is1_port_keys(struct lan966x_port *port, struct vcap_admin *admin, struct vcap_output_print *out) argument
125 lan966x_vcap_is2_port_keys(struct lan966x_port *port, struct vcap_admin *admin, struct vcap_output_print *out) argument
195 lan966x_vcap_es0_port_keys(struct lan966x_port *port, struct vcap_admin *admin, struct vcap_output_print *out) argument
215 lan966x_vcap_port_info(struct net_device *dev, struct vcap_admin *admin, struct vcap_output_print *out) argument
[all...]
/linux-master/drivers/net/ethernet/microchip/sparx5/
H A Dsparx5_vcap_debugfs.c79 struct vcap_output_print *out)
84 out->prf(out->dst, " port[%02d] (%s): ", port->portno,
87 out->prf(out->dst, "\n Lookup %d: ", lookup);
92 out->prf(out->dst, "\n state: ");
94 out->prf(out->dst, "on");
96 out
76 sparx5_vcap_is0_port_keys(struct sparx5 *sparx5, struct vcap_admin *admin, struct sparx5_port *port, struct vcap_output_print *out) argument
119 sparx5_vcap_is2_port_keys(struct sparx5 *sparx5, struct vcap_admin *admin, struct sparx5_port *port, struct vcap_output_print *out) argument
232 sparx5_vcap_is2_port_stickies(struct sparx5 *sparx5, struct vcap_admin *admin, struct vcap_output_print *out) argument
287 sparx5_vcap_es0_port_keys(struct sparx5 *sparx5, struct vcap_admin *admin, struct sparx5_port *port, struct vcap_output_print *out) argument
325 sparx5_vcap_es2_port_keys(struct sparx5 *sparx5, struct vcap_admin *admin, struct sparx5_port *port, struct vcap_output_print *out) argument
405 sparx5_vcap_es2_port_stickies(struct sparx5 *sparx5, struct vcap_admin *admin, struct vcap_output_print *out) argument
439 sparx5_port_info(struct net_device *ndev, struct vcap_admin *admin, struct vcap_output_print *out) argument
[all...]
/linux-master/fs/udf/
H A Dudfend.h10 struct kernel_lb_addr out; local
12 out.logicalBlockNum = le32_to_cpu(in.logicalBlockNum);
13 out.partitionReferenceNum = le16_to_cpu(in.partitionReferenceNum);
15 return out;
20 struct lb_addr out; local
22 out.logicalBlockNum = cpu_to_le32(in.logicalBlockNum);
23 out.partitionReferenceNum = cpu_to_le16(in.partitionReferenceNum);
25 return out;
30 struct short_ad out; local
32 out
40 struct short_ad out; local
50 struct kernel_long_ad out; local
60 struct long_ad out; local
70 struct kernel_extent_ad out; local
[all...]
/linux-master/drivers/md/bcache/
H A Dfeatures.c35 out += snprintf(out, buf + size - out, \
38 out += snprintf(out, buf + size - out, \
42 out += snprintf(out, buf + size - out, " "); \
45 out
58 char *out = buf; local
65 char *out = buf; local
72 char *out = buf; local
[all...]
/linux-master/tools/testing/selftests/bpf/progs/
H A Dtest_core_reloc_existence.c13 char out[256]; member in struct:__anon4471
45 struct core_reloc_existence_output *out = (void *)&data.out; local
47 out->a_exists = bpf_core_field_exists(in->a);
49 out->a_value = BPF_CORE_READ(in, a);
51 out->a_value = 0xff000001u;
53 out->b_exists = bpf_core_field_exists(in->b);
55 out->b_value = BPF_CORE_READ(in, b);
57 out->b_value = 0xff000002u;
59 out
[all...]
H A Dtest_core_reloc_type_id.c14 char out[256]; member in struct:__anon3427
86 struct core_reloc_type_id_output *out = (void *)&data.out; local
88 out->local_anon_struct = bpf_core_type_id_local(struct { int marker_field; });
89 out->local_anon_union = bpf_core_type_id_local(union { int marker_field; });
90 out->local_anon_enum = bpf_core_type_id_local(enum { MARKER_ENUM_VAL = 123 });
91 out->local_anon_func_proto_ptr = bpf_core_type_id_local(_Bool(*)(int));
92 out->local_anon_void_ptr = bpf_core_type_id_local(void *);
93 out->local_anon_arr = bpf_core_type_id_local(_Bool[47]);
95 out
[all...]
H A Dtest_core_reloc_type_based.c14 char out[256]; member in struct:__anon3783
112 struct core_reloc_type_based_output *out = (void *)&data.out; local
114 out->struct_exists = bpf_core_type_exists(struct a_struct);
115 out->complex_struct_exists = bpf_core_type_exists(struct a_complex_struct);
116 out->union_exists = bpf_core_type_exists(union a_union);
117 out->enum_exists = bpf_core_type_exists(enum an_enum);
118 out->typedef_named_struct_exists = bpf_core_type_exists(named_struct_typedef);
119 out->typedef_anon_struct_exists = bpf_core_type_exists(anon_struct_typedef);
120 out
[all...]
H A Dtest_core_reloc_size.c13 char out[256]; member in struct:__anon4474
49 struct core_reloc_size_output *out = (void *)&data.out; local
51 out->int_sz = bpf_core_field_size(in->int_field);
52 out->int_off = bpf_core_field_offset(in->int_field);
54 out->struct_sz = bpf_core_field_size(in->struct_field);
55 out->struct_off = bpf_core_field_offset(in->struct_field);
57 out->union_sz = bpf_core_field_size(in->union_field);
58 out->union_off = bpf_core_field_offset(in->union_field);
60 out
[all...]
H A Dtest_core_reloc_enumval.c14 char out[256]; member in struct:__anon6494
48 struct core_reloc_enumval_output *out = (void *)&data.out; local
52 out->named_val1_exists = bpf_core_enum_value_exists(named, NAMED_ENUM_VAL1);
53 out->named_val2_exists = bpf_core_enum_value_exists(enum named_enum, NAMED_ENUM_VAL2);
54 out->named_val3_exists = bpf_core_enum_value_exists(enum named_enum, NAMED_ENUM_VAL3);
56 out->anon_val1_exists = bpf_core_enum_value_exists(anon, ANON_ENUM_VAL1);
57 out->anon_val2_exists = bpf_core_enum_value_exists(anon_enum, ANON_ENUM_VAL2);
58 out->anon_val3_exists = bpf_core_enum_value_exists(anon_enum, ANON_ENUM_VAL3);
60 out
[all...]
H A Dtest_core_reloc_enum64val.c14 char out[256]; member in struct:__anon3781
48 struct core_reloc_enum64val_output *out = (void *)&data.out; local
52 out->unsigned_val1_exists = bpf_core_enum_value_exists(named_unsigned, UNSIGNED_ENUM64_VAL1);
53 out->unsigned_val2_exists = bpf_core_enum_value_exists(enum named_unsigned_enum64, UNSIGNED_ENUM64_VAL2);
54 out->unsigned_val3_exists = bpf_core_enum_value_exists(enum named_unsigned_enum64, UNSIGNED_ENUM64_VAL3);
55 out->signed_val1_exists = bpf_core_enum_value_exists(named_signed, SIGNED_ENUM64_VAL1);
56 out->signed_val2_exists = bpf_core_enum_value_exists(enum named_signed_enum64, SIGNED_ENUM64_VAL2);
57 out->signed_val3_exists = bpf_core_enum_value_exists(enum named_signed_enum64, SIGNED_ENUM64_VAL3);
59 out
[all...]
H A Dtest_core_reloc_module.c20 char out[256]; member in struct:__anon4433
44 struct core_reloc_module_output *out = (void *)&data.out; local
55 out->len = BPF_CORE_READ(read_ctx, len);
56 out->off = BPF_CORE_READ(read_ctx, off);
58 out->read_ctx_sz = bpf_core_type_size(struct bpf_testmod_test_read_ctx);
59 out->read_ctx_exists = bpf_core_type_exists(struct bpf_testmod_test_read_ctx);
60 out->buf_exists = bpf_core_field_exists(read_ctx->buf);
61 out->off_exists = bpf_core_field_exists(read_ctx->off);
62 out
78 struct core_reloc_module_output *out = (void *)&data.out; local
[all...]
H A Dtest_core_reloc_primitives.c13 char out[256]; member in struct:__anon2600
35 struct core_reloc_primitives *out = (void *)&data.out; 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.c13 char out[256]; member in struct:__anon2583
43 struct core_reloc_arrays_output *out = (void *)&data.out; 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))
/linux-master/drivers/usb/host/
H A Duhci-debug.c46 char *out = buf; local
51 out += sprintf(out, "%*s[%p] link (%08x) ", space, "", td,
53 out += sprintf(out, "e%d %s%s%s%s%s%s%s%s%s%sLength=%x ",
66 if (out - buf > len)
85 out += sprintf(out, "MaxLen=%x DT%d EndPt=%x Dev=%x, PID=%x(%s) ",
92 out += sprintf(out, "(bu
103 char *out = buf; local
168 char *out = buf; local
307 char *out = buf; local
376 char *out = buf; local
[all...]
/linux-master/fs/bcachefs/
H A Dprintbuf.h40 * memory allocation failure we usually don't want to bail out and unwind - we
104 __printf(2, 3) void bch2_prt_printf(struct printbuf *out, const char *fmt, ...);
105 __printf(2, 0) void bch2_prt_vprintf(struct printbuf *out, const char *fmt, va_list);
143 static inline unsigned printbuf_remaining_size(struct printbuf *out) argument
145 return out->pos < out->size ? out->size - out->pos : 0;
152 static inline unsigned printbuf_remaining(struct printbuf *out) argument
154 return out
157 printbuf_written(struct printbuf *out) argument
165 printbuf_overflowed(struct printbuf *out) argument
170 printbuf_nul_terminate(struct printbuf *out) argument
181 __prt_char_reserved(struct printbuf *out, char c) argument
189 __prt_char(struct printbuf *out, char c) argument
195 prt_char(struct printbuf *out, char c) argument
201 __prt_chars_reserved(struct printbuf *out, char c, unsigned n) argument
210 prt_chars(struct printbuf *out, char c, unsigned n) argument
217 prt_bytes(struct printbuf *out, const void *b, unsigned n) argument
232 prt_str(struct printbuf *out, const char *str) argument
237 prt_str_indented(struct printbuf *out, const char *str) argument
242 prt_hex_byte(struct printbuf *out, u8 byte) argument
250 prt_hex_byte_upper(struct printbuf *out, u8 byte) argument
[all...]
H A Dprintbuf.c18 int bch2_printbuf_make_room(struct printbuf *out, unsigned extra) argument
23 if (!out->heap_allocated)
29 if (out->pos + extra < out->size)
32 new_size = roundup_pow_of_two(out->size + extra);
38 buf = krealloc(out->buf, new_size, !out->atomic ? GFP_KERNEL : GFP_NOWAIT);
41 out->allocation_failure = true;
45 out->buf = buf;
46 out
50 bch2_prt_vprintf(struct printbuf *out, const char *fmt, va_list args) argument
68 bch2_prt_printf(struct printbuf *out, const char *fmt, ...) argument
224 __prt_tab(struct printbuf *out) argument
240 bch2_prt_tab(struct printbuf *out) argument
302 bch2_prt_bytes_indented(struct printbuf *out, const char *str, unsigned count) argument
348 bch2_prt_human_readable_u64(struct printbuf *out, u64 v) argument
363 bch2_prt_human_readable_s64(struct printbuf *out, s64 v) argument
378 bch2_prt_units_u64(struct printbuf *out, u64 v) argument
394 bch2_prt_units_s64(struct printbuf *out, s64 v) argument
401 bch2_prt_string_option(struct printbuf *out, const char * const list[], size_t selected) argument
411 bch2_prt_bitflags(struct printbuf *out, const char * const list[], u64 flags) argument
429 bch2_prt_bitflags_vector(struct printbuf *out, const char * const list[], unsigned long *v, unsigned nr) argument
[all...]
/linux-master/fs/proc/
H A Dutil.c11 goto out;
15 goto out;
17 goto out;
22 out:
/linux-master/include/linux/
H A Dascii85.h23 ascii85_encode(u32 in, char *out) argument
30 out[5] = '\0';
32 out[i] = '!' + in % 85;
36 return out;
/linux-master/tools/testing/selftests/riscv/hwprobe/
H A Dhwprobe.c9 long out; local
24 out = riscv_hwprobe(pairs, 8, 1, &cpus, 0);
25 if (out != 0)
26 ksft_exit_fail_msg("hwprobe() failed with %ld\n", out);
43 out = riscv_hwprobe(pairs, 8, 0, 0, 0);
44 ksft_test_result(out == 0, "NULL CPU set\n");
46 out = riscv_hwprobe(pairs, 8, 0, &cpus, 0);
47 ksft_test_result(out != 0, "Bad CPU set\n");
49 out = riscv_hwprobe(pairs, 8, 1, 0, 0);
50 ksft_test_result(out !
[all...]
/linux-master/drivers/gpu/drm/omapdrm/dss/
H A Doutput.c20 int omapdss_device_init_output(struct omap_dss_device *out, argument
26 remote_node = of_graph_get_remote_node(out->dev->of_node,
27 out->of_port, 0);
29 dev_dbg(out->dev, "failed to find video sink\n");
33 out->bridge = of_drm_find_bridge(remote_node);
34 out->panel = of_drm_find_panel(remote_node);
35 if (IS_ERR(out->panel))
36 out->panel = NULL;
40 if (out->panel) {
43 bridge = drm_panel_bridge_add(out
77 omapdss_device_cleanup_output(struct omap_dss_device *out) argument
[all...]
/linux-master/fs/ocfs2/dlm/
H A Ddlmdebug.c171 [DLM_DENIED_NOLOCKS] = "request denied, out of system resources",
237 int out = 0; local
245 out += scnprintf(buf + out, len - out, "%.*s%08x",
249 out += scnprintf(buf + out, len - out, "%.*s",
251 return out;
257 int out local
268 int out = 0; local
351 int out = 0; local
408 int i, out = 0; local
464 int out; local
490 int out = 0; local
662 int out = 0; local
[all...]
/linux-master/drivers/net/ethernet/microchip/vcap/
H A Dvcap_api_debugfs.c23 struct vcap_output_print *out,
32 out->prf(out->dst, " %s: W%d: ", vcap_keyfield_name(vctrl, key),
37 out->prf(out->dst, "%d/%d", data->u1.value, data->u1.mask);
44 out->prf(out->dst, "%pI4h/%pI4h", &data->u32.value,
55 out->prf(out->dst, "%u/%u", data->u32.value & fmsk,
63 out
22 vcap_debugfs_show_rule_keyfield(struct vcap_control *vctrl, struct vcap_output_print *out, enum vcap_key_field key, const struct vcap_field *keyfield, struct vcap_client_keyfield_data *data) argument
117 vcap_debugfs_show_rule_actionfield(struct vcap_control *vctrl, struct vcap_output_print *out, enum vcap_action_field action, const struct vcap_field *actionfield, u8 *value) argument
158 vcap_debugfs_show_keysets(struct vcap_rule_internal *ri, struct vcap_output_print *out) argument
191 vcap_debugfs_show_rule_keyset(struct vcap_rule_internal *ri, struct vcap_output_print *out) argument
212 vcap_debugfs_show_rule_actionset(struct vcap_rule_internal *ri, struct vcap_output_print *out) argument
236 vcap_show_admin_rule(struct vcap_control *vctrl, struct vcap_admin *admin, struct vcap_output_print *out, struct vcap_rule_internal *ri) argument
266 vcap_show_admin_info(struct vcap_control *vctrl, struct vcap_admin *admin, struct vcap_output_print *out) argument
292 vcap_show_admin(struct vcap_control *vctrl, struct vcap_admin *admin, struct vcap_output_print *out) argument
315 vcap_show_admin_raw(struct vcap_control *vctrl, struct vcap_admin *admin, struct vcap_output_print *out) argument
372 struct vcap_output_print out = { local
407 struct vcap_output_print out = { local
424 struct vcap_output_print out = { local
[all...]
/linux-master/drivers/gpu/drm/amd/display/dc/dml2/
H A Ddml2_translation_helper.c33 void dml2_init_ip_params(struct dml2_context *dml2, const struct dc *in_dc, struct ip_params_st *out) argument
41 out->vblank_nom_default_us = 600;
42 out->rob_buffer_size_kbytes = 128;
43 out->config_return_buffer_size_in_kbytes = 1280;
44 out->config_return_buffer_segment_size_in_kbytes = 64;
45 out->compressed_buffer_segment_size_in_kbytes = 64;
46 out->meta_fifo_size_in_kentries = 22;
47 out->zero_size_buffer_entries = 512;
48 out->dpte_buffer_size_in_pte_reqs_luma = 68;
49 out
181 dml2_init_socbb_params(struct dml2_context *dml2, const struct dc *in_dc, struct soc_bounding_box_st *out) argument
247 dml2_init_soc_states(struct dml2_context *dml2, const struct dc *in_dc, const struct soc_bounding_box_st *in_bbox, struct soc_states_st *out) argument
445 dml2_translate_ip_params(const struct dc *in, struct ip_params_st *out) argument
514 dml2_translate_socbb_params(const struct dc *in, struct soc_bounding_box_st *out) argument
548 dml2_translate_soc_states(const struct dc *dc, struct soc_states_st *out, int num_states) argument
587 populate_dml_timing_cfg_from_stream_state(struct dml_timing_cfg_st *out, unsigned int location, const struct dc_stream_state *in) argument
614 populate_dml_output_cfg_from_stream_state(struct dml_output_cfg_st *out, unsigned int location, const struct dc_stream_state *in, const struct pipe_ctx *pipe) argument
726 populate_dummy_dml_surface_cfg(struct dml_surface_cfg_st *out, unsigned int location, const struct dc_stream_state *in) argument
745 populate_dml_surface_cfg_from_plane_state(enum dml_project_id dml2_project, struct dml_surface_cfg_st *out, unsigned int location, const struct dc_plane_state *in) argument
821 populate_dummy_dml_plane_cfg(struct dml_plane_cfg_st *out, unsigned int location, const struct dc_stream_state *in) argument
875 populate_dml_plane_cfg_from_plane_state(struct dml_plane_cfg_st *out, unsigned int location, const struct dc_plane_state *in, struct dc_state *context) argument
1186 dml2_update_pipe_ctx_dchub_regs(struct _vcs_dpi_dml_display_rq_regs_st *rq_regs, struct _vcs_dpi_dml_display_dlg_regs_st *disp_dlg_regs, struct _vcs_dpi_dml_display_ttu_regs_st *disp_ttu_regs, struct pipe_ctx *out) argument
[all...]
/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/net/wireless/ti/wl18xx/
H A Dio.c24 goto out;
31 goto out;
37 out:
41 int wl18xx_top_reg_read(struct wl1271 *wl, int addr, u16 *out) argument
52 if (ret >= 0 && out)
53 *out = val & 0xffff;
56 if (ret >= 0 && out)
57 *out = (val & 0xffff0000) >> 16;

Completed in 733 milliseconds

1234567891011>>