Home
last modified time | relevance | path

Searched refs:types (Results 1 – 25 of 674) sorted by relevance

12345678910>>...27

/linux/drivers/gpu/drm/nouveau/nvkm/engine/disp/
H A Duconn.c39 args.v0.types = 0; in nvkm_uconn_uevent_gsp()
41 args.v0.types |= NVIF_CONN_EVENT_V0_PLUG; in nvkm_uconn_uevent_gsp()
43 args.v0.types |= NVIF_CONN_EVENT_V0_UNPLUG; in nvkm_uconn_uevent_gsp()
45 args.v0.types |= NVIF_CONN_EVENT_V0_IRQ; in nvkm_uconn_uevent_gsp()
56 args.v0.types = 0; in nvkm_uconn_uevent_aux()
58 args.v0.types |= NVIF_CONN_EVENT_V0_PLUG; in nvkm_uconn_uevent_aux()
60 args.v0.types |= NVIF_CONN_EVENT_V0_UNPLUG; in nvkm_uconn_uevent_aux()
62 args.v0.types |= NVIF_CONN_EVENT_V0_IRQ; in nvkm_uconn_uevent_aux()
73 args.v0.types = 0; in nvkm_uconn_uevent_gpio()
75 args.v0.types |= NVIF_CONN_EVENT_V0_PLUG; in nvkm_uconn_uevent_gpio()
[all …]
/linux/tools/lib/bpf/
H A Dfeatures.c83 __u32 types[] = { in probe_kern_btf() local
88 return probe_fd(libbpf__load_raw_btf((char *)types, sizeof(types), in probe_kern_btf()
96 __u32 types[] = { in probe_kern_btf_func() local
106 return probe_fd(libbpf__load_raw_btf((char *)types, sizeof(types), in probe_kern_btf_func()
114 __u32 types[] = { in probe_kern_btf_func_global() local
124 return probe_fd(libbpf__load_raw_btf((char *)types, sizeof(types), in probe_kern_btf_func_global()
132 __u32 types[] in probe_kern_btf_datasec() local
151 __u32 types[] = { probe_kern_btf_qmark_datasec() local
169 __u32 types[] = { probe_kern_btf_float() local
181 __u32 types[] = { probe_kern_btf_decl_tag() local
198 __u32 types[] = { probe_kern_btf_type_tag() local
306 __u32 types[] = { probe_module_btf() local
446 __u32 types[] = { probe_kern_btf_enum64() local
457 const __u32 types[] = { probe_kern_arg_ctx_tag() local
[all...]
/linux/drivers/gpu/drm/nouveau/nvkm/core/
H A Devent.c26 nvkm_event_put(struct nvkm_event *event, u32 types, int index) in nvkm_event_put() argument
30 nvkm_trace(event->subdev, "event: decr %08x on %d\n", types, index); in nvkm_event_put()
32 while (types) { in nvkm_event_put()
33 int type = __ffs(types); types &= ~(1 << type); in nvkm_event_put()
43 nvkm_event_get(struct nvkm_event *event, u32 types, int index) in nvkm_event_get() argument
47 nvkm_trace(event->subdev, "event: incr %08x on %d\n", types, index); in nvkm_event_get()
49 while (types) { in nvkm_event_get()
50 int type = __ffs(types); types &= ~(1 << type); in nvkm_event_get()
/linux/drivers/pci/hotplug/
H A Drpaphp_core.c163 const __be32 *indexes, *names, *types, *domains; in get_children_props() local
167 types = of_get_property(dn, "ibm,drc-types", NULL); in get_children_props()
170 if (!indexes || !names || !types || !domains) { in get_children_props()
181 *drc_types = types; in get_children_props()
200 const __be32 *types, *domains; in rpaphp_check_drc_props_v1() local
203 rc = get_children_props(dn->parent, &indexes, &names, &types, &domains); in rpaphp_check_drc_props_v1()
209 type_tmp = (char *) &types[1]; in rpaphp_check_drc_props_v1()
317 const __be32 **names, const __be32 **types, in is_php_dn() argument
330 *types = drc_types; in is_php_dn()
380 const __be32 *indexes, *names, *types, *power_domains; in rpaphp_drc_add_slot() local
[all …]
/linux/kernel/bpf/preload/iterators/
H A Diterators.bpf.c36 struct btf_type **types; member
61 struct btf_type **types, *t; in get_name() local
68 types = btf->types; in get_name()
69 bpf_probe_read_kernel(&t, sizeof(t), types + btf_id); in get_name()
/linux/arch/arm/tools/
H A DMakefile19 kapi-hdrs-y += $(kapi)/mach-types.h
37 $(kapi)/mach-types.h: $(src)/gen-mach-types $(src)/mach-types FORCE
/linux/tools/bpf/bpftool/Documentation/
H A Dbpftool-feature.rst38 types availability, eBPF helper functions availability, and more.
70 List items known to bpftool. These can be BPF program types
71 (**prog_types**), BPF map types (**map_types**), attach types
72 (**attach_types**), link types (**link_types**), or BPF helper functions
75 (for all object types) or from the BPF UAPI header (list of helpers). This
76 can be used in scripts to iterate over BPF types or helpers.
H A Dbpftool-btf.rst50 its BTF types emitted.
53 with BTF types describing key and value. It's possible to select whether to
55 both key and value (**kv**), or all BTF types present in associated BTF
59 object with BTF types.
74 its dependent types. It cannot be used with any other types of filtering
76 It can be passed multiple times to dump multiple types.
198 The following commands print BTF types associated with specified map's key,
199 value, both key and value, and all BTF types, respectively. By default, both
200 key and value types wil
[all...]
/linux/Documentation/devicetree/bindings/leds/
H A Dleds-powernv.txt12 - led-types : Supported LED types (attention/identify/fault) provided
22 led-types = "identify", "fault";
/linux/tools/testing/selftests/bpf/prog_tests/
H A Dcore_reloc_raw.c24 __u32 types[15]; in test_bad_local_id() member
32 .type_len = sizeof(raw_btf.types), in test_bad_local_id()
34 offsetof(struct test_btf, types), in test_bad_local_id()
37 .types = { in test_bad_local_id()
/linux/drivers/gpu/drm/i915/gvt/
H A Dvgpu.c116 gvt->types = kzalloc_objs(struct intel_vgpu_type, num_types); in intel_gvt_init_vgpu_types()
117 if (!gvt->types) in intel_gvt_init_vgpu_types()
132 sprintf(gvt->types[i].name, "GVTg_V%u_%s", in intel_gvt_init_vgpu_types()
134 gvt->types[i].conf = conf; in intel_gvt_init_vgpu_types()
137 i, gvt->types[i].name, in intel_gvt_init_vgpu_types()
143 gvt->mdev_types[i] = &gvt->types[i].type; in intel_gvt_init_vgpu_types()
144 gvt->mdev_types[i]->sysfs_name = gvt->types[i].name; in intel_gvt_init_vgpu_types()
153 kfree(gvt->types); in intel_gvt_init_vgpu_types()
160 kfree(gvt->types); in intel_gvt_clean_vgpu_types()
/linux/arch/arm64/boot/dts/arm/
H A Djuno-cs-r1r2.dtsi98 arm,trig-in-types = <SNK_FULL SNK_ACQCOMP>;
100 arm,trig-out-types = <SNK_FLUSHIN SNK_TRIGIN>;
107 arm,trig-in-types = <ELA_DBGREQ ELA_TSTART ELA_TSTOP>;
114 arm,trig-in-types = <ELA_DBGREQ ELA_TSTART ELA_TSTOP>;
/linux/drivers/dpll/zl3073x/
H A Dprop.c361 const char *types[ZL3073X_MAX_CHANNELS]; in zl3073x_prop_dpll_type_get() local
366 types, ARRAY_SIZE(types)); in zl3073x_prop_dpll_type_get()
372 if (!strcmp(types[index], "pps")) in zl3073x_prop_dpll_type_get()
374 else if (!strcmp(types[index], "eec")) in zl3073x_prop_dpll_type_get()
378 types[index]); in zl3073x_prop_dpll_type_get()
/linux/arch/sh/tools/
H A DMakefile13 include/generated/machtypes.h: $(src)/gen-mach-types $(src)/mach-types
/linux/drivers/acpi/acpica/
H A Ddbexec.c122 status = acpi_db_convert_to_object(info->types[i], in acpi_db_execute_method()
345 acpi_db_execute(char *name, char **args, acpi_object_type *types, u32 flags) in acpi_db_execute() argument
413 acpi_gbl_db_method_info.types = types; in acpi_db_execute()
544 local_info.types = local_info.arg_types; in acpi_db_method_thread()
658 char **arguments, acpi_object_type *types) in acpi_db_create_execution_thread() argument
667 acpi_gbl_db_method_info.types = acpi_gbl_db_method_info.arg_types; in acpi_db_create_execution_thread()
675 acpi_gbl_db_method_info.arg_types[i] = *types; in acpi_db_create_execution_thread()
676 types++; in acpi_db_create_execution_thread()
818 acpi_gbl_db_method_info.types = acpi_gbl_db_method_info.arg_types; in acpi_db_create_execution_threads()
/linux/arch/csky/lib/
H A Dstring.c18 union types { union
33 union types d = { .as_u8 = dest }; in memcpy()
109 union types dest = { .as_u8 = s }; in memset()
/linux/drivers/misc/cardreader/
H A DKconfig9 Alcor Micro card readers support access to many types of memory cards,
21 Realtek card readers support access to many types of memory cards,
32 Realtek card reader supports access to many types of memory cards,
/linux/Documentation/userspace-api/media/dvb/
H A Dnet.rst21 types that are present on the transport stream. This is done through
26 Data types and ioctl definitions are defined via ``linux/dvb/net.h``
38 net-types
/linux/rust/kernel/
H A Dseq_file.rs7 use crate::{bindings, fmt, str::CStrExt as _, types::NotThreadSafe, types::Opaque};
/linux/tools/mm/
H A DMakefile6 BUILD_TARGETS=page-types slabinfo page_owner_sort thp_swap_allocator_test
26 $(RM) page-types slabinfo page_owner_sort thp_swap_allocator_test
/linux/drivers/leds/
H A Dleds-sunfire.c127 struct led_type *types) in sunfire_led_generic_probe() argument
146 lp->name = types[i].name; in sunfire_led_generic_probe()
148 lp->brightness_set = types[i].handler; in sunfire_led_generic_probe()
149 lp->default_trigger = types[i].default_trigger; in sunfire_led_generic_probe()
/linux/scripts/
H A Delf-parse.c55 static int elf_parse(const char *fname, void *addr, uint32_t types) in elf_parse() argument
88 if (!((1 << type) & types)) { in elf_parse()
177 void *elf_map(char const *fname, size_t *size, uint32_t types) in elf_map() argument
186 ret = elf_parse(fname, addr, types); in elf_map()
/linux/drivers/media/platform/nxp/
H A Dimx-pxp.c70 u32 types; member
78 .types = MEM2MEM_CAPTURE | MEM2MEM_OUTPUT,
83 .types = MEM2MEM_CAPTURE,
87 .types = MEM2MEM_CAPTURE,
91 .types = MEM2MEM_CAPTURE | MEM2MEM_OUTPUT,
95 .types = MEM2MEM_CAPTURE | MEM2MEM_OUTPUT,
99 .types = MEM2MEM_CAPTURE | MEM2MEM_OUTPUT,
103 .types = MEM2MEM_CAPTURE,
107 .types = MEM2MEM_CAPTURE | MEM2MEM_OUTPUT,
111 .types = MEM2MEM_CAPTURE | MEM2MEM_OUTPUT,
[all …]
/linux/tools/lib/python/kdoc/
H A Dkdoc_item.py91 def set_params(self, names, descs, types, starts):
93 Set parameter list: names, descriptions, types and start lines.
97 self.parametertypes = types
39 set_params(self, names, descs, types, starts) global() argument
/linux/Documentation/iio/
H A Diio_configfs.rst38 trigger types. A new trigger type is usually implemented as a separate
80 We support the following interrupt sources (trigger types):
87 Loading iio-trig-hrtimer module will register hrtimer trigger types allowing
97 3.2 "hrtimer" trigger types attributes

12345678910>>...27