Home
last modified time | relevance | path

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

12345678910>>...39

/Linux-v6.6/arch/powerpc/lib/
Dfeature-fixups.c182 static void do_stf_entry_barrier_fixups(enum stf_barrier_type types) in do_stf_entry_barrier_fixups() argument
196 if (types & STF_BARRIER_FALLBACK) { in do_stf_entry_barrier_fixups()
200 } else if (types & STF_BARRIER_EIEIO) { in do_stf_entry_barrier_fixups()
202 } else if (types & STF_BARRIER_SYNC_ORI) { in do_stf_entry_barrier_fixups()
208 i = do_patch_entry_fixups(start, end, instrs, types & STF_BARRIER_FALLBACK, in do_stf_entry_barrier_fixups()
212 (types == STF_BARRIER_NONE) ? "no" : in do_stf_entry_barrier_fixups()
213 (types == STF_BARRIER_FALLBACK) ? "fallback" : in do_stf_entry_barrier_fixups()
214 (types == STF_BARRIER_EIEIO) ? "eieio" : in do_stf_entry_barrier_fixups()
215 (types == (STF_BARRIER_SYNC_ORI)) ? "hwsync" in do_stf_entry_barrier_fixups()
219 static void do_stf_exit_barrier_fixups(enum stf_barrier_type types) in do_stf_exit_barrier_fixups() argument
[all …]
/Linux-v6.6/tools/perf/tests/
Devent_groups.c14 static int types[] = {0, 1, -1}; variable
60 types[2] = pmu->type; in setup_uncore_event()
70 fd = event_open(types[2], configs[2], -1); in setup_uncore_event()
86 group_fd = event_open(types[i], configs[i], -1); in run_test()
90 sibling_fd1 = event_open(types[j], configs[j], group_fd); in run_test()
96 sibling_fd2 = event_open(types[k], configs[k], group_fd); in run_test()
116 if (ret || types[2] == -1) in test__event_groups()
128 types[i], configs[i], types[j], configs[j], in test__event_groups()
129 types[k], configs[k], r ? "Fail" : "Pass"); in test__event_groups()
/Linux-v6.6/drivers/gpu/drm/nouveau/nvkm/engine/disp/
Duconn.c39 args.v0.types = 0; in nvkm_uconn_uevent_aux()
41 args.v0.types |= NVIF_CONN_EVENT_V0_PLUG; in nvkm_uconn_uevent_aux()
43 args.v0.types |= NVIF_CONN_EVENT_V0_UNPLUG; in nvkm_uconn_uevent_aux()
45 args.v0.types |= NVIF_CONN_EVENT_V0_IRQ; in nvkm_uconn_uevent_aux()
56 args.v0.types = 0; in nvkm_uconn_uevent_gpio()
58 args.v0.types |= NVIF_CONN_EVENT_V0_PLUG; in nvkm_uconn_uevent_gpio()
60 args.v0.types |= NVIF_CONN_EVENT_V0_UNPLUG; in nvkm_uconn_uevent_gpio()
104 if (args->v0.types & NVIF_CONN_EVENT_V0_PLUG ) bits |= NVKM_I2C_PLUG; in nvkm_uconn_uevent()
105 if (args->v0.types & NVIF_CONN_EVENT_V0_UNPLUG) bits |= NVKM_I2C_UNPLUG; in nvkm_uconn_uevent()
106 if (args->v0.types & NVIF_CONN_EVENT_V0_IRQ ) bits |= NVKM_I2C_IRQ; in nvkm_uconn_uevent()
[all …]
/Linux-v6.6/drivers/gpu/drm/nouveau/nvkm/core/
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-v6.6/drivers/pci/hotplug/
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-v6.6/kernel/bpf/preload/iterators/
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-v6.6/drivers/gpu/drm/nouveau/nvif/
Dconn.c30 nvif_conn_event_ctor(struct nvif_conn *conn, const char *name, nvif_event_func func, u8 types, in nvif_conn_event_ctor() argument
40 args.conn.types = types; in nvif_conn_event_ctor()
44 NVIF_DEBUG(&conn->object, "[NEW EVENT:HPD types:%02x]", types); in nvif_conn_event_ctor()
/Linux-v6.6/arch/x86/events/intel/
Duncore.c980 static void uncore_types_exit(struct intel_uncore_type **types) in uncore_types_exit() argument
982 for (; *types; types++) in uncore_types_exit()
983 uncore_type_exit(*types); in uncore_types_exit()
1049 uncore_types_init(struct intel_uncore_type **types, bool setid) in uncore_types_init() argument
1053 for (; *types; types++) { in uncore_types_init()
1054 ret = uncore_type_init(*types, setid); in uncore_types_init()
1078 struct intel_uncore_type **types = uncore_pci_uncores; in uncore_pci_find_dev_pmu_from_types() local
1083 for (; *types; types++) { in uncore_pci_find_dev_pmu_from_types()
1084 type = *types; in uncore_pci_find_dev_pmu_from_types()
1369 struct intel_uncore_type **types = uncore_pci_uncores; in uncore_pci_pmus_register() local
[all …]
/Linux-v6.6/tools/bpf/bpftool/Documentation/
Dbpftool-feature.rst38 JIT status, eBPF program types availability, eBPF helper
76 List items known to bpftool. These can be BPF program types
77 (**prog_types**), BPF map types (**map_types**), attach types
78 (**attach_types**), link types (**link_types**), or BPF helper
81 as provided from libbpf (for all object types) or from the BPF UAPI
83 BPF types or helpers.
/Linux-v6.6/drivers/phy/xilinx/
Dphy-zynqmp.c686 static const int types[] = { in xpsgtr_set_lane_type() local
691 phy_types = types; in xpsgtr_set_lane_type()
692 num_phy_types = ARRAY_SIZE(types); in xpsgtr_set_lane_type()
697 static const int types[] = { in xpsgtr_set_lane_type() local
702 phy_types = types; in xpsgtr_set_lane_type()
703 num_phy_types = ARRAY_SIZE(types); in xpsgtr_set_lane_type()
708 static const int types[] = { in xpsgtr_set_lane_type() local
713 phy_types = types; in xpsgtr_set_lane_type()
714 num_phy_types = ARRAY_SIZE(types); in xpsgtr_set_lane_type()
719 static const int types[] = { in xpsgtr_set_lane_type() local
[all …]
/Linux-v6.6/arch/arm/tools/
DMakefile19 kapi-hdrs-y += $(kapi)/mach-types.h
37 $(kapi)/mach-types.h: $(src)/gen-mach-types $(src)/mach-types FORCE
/Linux-v6.6/drivers/gpu/drm/i915/gvt/
Dvgpu.c111 gvt->types = kcalloc(num_types, sizeof(struct intel_vgpu_type), in intel_gvt_init_vgpu_types()
113 if (!gvt->types) in intel_gvt_init_vgpu_types()
129 sprintf(gvt->types[i].name, "GVTg_V%u_%s", in intel_gvt_init_vgpu_types()
131 gvt->types[i].conf = conf; in intel_gvt_init_vgpu_types()
134 i, gvt->types[i].name, in intel_gvt_init_vgpu_types()
140 gvt->mdev_types[i] = &gvt->types[i].type; in intel_gvt_init_vgpu_types()
141 gvt->mdev_types[i]->sysfs_name = gvt->types[i].name; in intel_gvt_init_vgpu_types()
150 kfree(gvt->types); in intel_gvt_init_vgpu_types()
157 kfree(gvt->types); in intel_gvt_clean_vgpu_types()
/Linux-v6.6/Documentation/devicetree/bindings/leds/
Dleds-powernv.txt12 - led-types : Supported LED types (attention/identify/fault) provided
22 led-types = "identify", "fault";
/Linux-v6.6/arch/arm64/boot/dts/arm/
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-v6.6/drivers/acpi/acpica/
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-v6.6/arch/powerpc/include/asm/
Dsetup.h54 void do_rfi_flush_fixups(enum l1d_flush_type types);
60 void do_uaccess_flush_fixups(enum l1d_flush_type types);
61 void do_entry_flush_fixups(enum l1d_flush_type types);
/Linux-v6.6/drivers/mtd/
Dmtdpart.c429 parse_mtd_partitions(child, parts[i].types, NULL); in add_mtd_partitions()
664 int parse_mtd_partitions(struct mtd_info *master, const char *const *types, in parse_mtd_partitions() argument
671 if (!types) in parse_mtd_partitions()
672 types = mtd_is_partition(master) ? default_subpartition_types : in parse_mtd_partitions()
675 for ( ; *types; types++) { in parse_mtd_partitions()
681 if (!strcmp(*types, "ofpart")) { in parse_mtd_partitions()
685 *types); in parse_mtd_partitions()
686 parser = mtd_part_parser_get(*types); in parse_mtd_partitions()
687 if (!parser && !request_module("%s", *types)) in parse_mtd_partitions()
688 parser = mtd_part_parser_get(*types); in parse_mtd_partitions()
/Linux-v6.6/arch/sh/tools/
DMakefile13 include/generated/machtypes.h: $(src)/gen-mach-types $(src)/mach-types
/Linux-v6.6/arch/csky/lib/
Dstring.c18 union types { union
33 union types d = { .as_u8 = dest }; in memcpy()
109 union types dest = { .as_u8 = s }; in memset()
/Linux-v6.6/drivers/misc/cardreader/
DKconfig9 Alcor Micro card readers support access to many types of memory cards,
20 Realtek card readers support access to many types of memory cards,
31 Realtek card reader supports access to many types of memory cards,
/Linux-v6.6/drivers/media/platform/nxp/
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-v6.6/Documentation/userspace-api/media/dvb/
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-v6.6/drivers/leds/
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-v6.6/mm/
Dshow_mem.c146 static const char types[MIGRATE_TYPES] = { in show_migration_types() local
164 *p++ = types[i]; in show_migration_types()
359 unsigned char types[MAX_ORDER + 1]; in show_free_areas() local
376 types[order] = 0; in show_free_areas()
379 types[order] |= 1 << type; in show_free_areas()
387 show_migration_types(types[order]); in show_free_areas()
/Linux-v6.6/tools/mm/
DMakefile6 TARGETS=page-types slabinfo page_owner_sort
25 $(RM) page-types slabinfo page_owner_sort

12345678910>>...39