Home
last modified time | relevance | path

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

12345678910>>...31

/Linux-v4.19/drivers/gpu/drm/nouveau/nvkm/core/
Devent.c26 nvkm_event_put(struct nvkm_event *event, u32 types, int index) in nvkm_event_put() argument
29 while (types) { in nvkm_event_put()
30 int type = __ffs(types); types &= ~(1 << type); in nvkm_event_put()
39 nvkm_event_get(struct nvkm_event *event, u32 types, int index) in nvkm_event_get() argument
42 while (types) { in nvkm_event_get()
43 int type = __ffs(types); types &= ~(1 << type); in nvkm_event_get()
52 nvkm_event_send(struct nvkm_event *event, u32 types, int index, in nvkm_event_send() argument
63 if (notify->index == index && (notify->types & types)) { in nvkm_event_send()
/Linux-v4.19/arch/powerpc/lib/
Dfeature-fixups.c121 void do_stf_entry_barrier_fixups(enum stf_barrier_type types) in do_stf_entry_barrier_fixups() argument
135 if (types & STF_BARRIER_FALLBACK) { in do_stf_entry_barrier_fixups()
139 } else if (types & STF_BARRIER_EIEIO) { in do_stf_entry_barrier_fixups()
141 } else if (types & STF_BARRIER_SYNC_ORI) { in do_stf_entry_barrier_fixups()
154 if (types & STF_BARRIER_FALLBACK) in do_stf_entry_barrier_fixups()
164 (types == STF_BARRIER_NONE) ? "no" : in do_stf_entry_barrier_fixups()
165 (types == STF_BARRIER_FALLBACK) ? "fallback" : in do_stf_entry_barrier_fixups()
166 (types == STF_BARRIER_EIEIO) ? "eieio" : in do_stf_entry_barrier_fixups()
167 (types == (STF_BARRIER_SYNC_ORI)) ? "hwsync" in do_stf_entry_barrier_fixups()
171 void do_stf_exit_barrier_fixups(enum stf_barrier_type types) in do_stf_exit_barrier_fixups() argument
[all …]
/Linux-v4.19/drivers/gpu/drm/i915/gvt/
Dvgpu.c128 gvt->types = kcalloc(num_types, sizeof(struct intel_vgpu_type), in intel_gvt_init_vgpu_types()
130 if (!gvt->types) in intel_gvt_init_vgpu_types()
138 gvt->types[i].low_gm_size = vgpu_types[i].low_mm; in intel_gvt_init_vgpu_types()
139 gvt->types[i].high_gm_size = vgpu_types[i].high_mm; in intel_gvt_init_vgpu_types()
140 gvt->types[i].fence = vgpu_types[i].fence; in intel_gvt_init_vgpu_types()
146 gvt->types[i].weight = vgpu_types[i].weight; in intel_gvt_init_vgpu_types()
147 gvt->types[i].resolution = vgpu_types[i].edid; in intel_gvt_init_vgpu_types()
148 gvt->types[i].avail_instance = min(low_avail / vgpu_types[i].low_mm, in intel_gvt_init_vgpu_types()
152 sprintf(gvt->types[i].name, "GVTg_V4_%s", in intel_gvt_init_vgpu_types()
155 sprintf(gvt->types[i].name, "GVTg_V5_%s", in intel_gvt_init_vgpu_types()
[all …]
/Linux-v4.19/drivers/pci/hotplug/
Drpaphp_core.c161 const int *indexes, *names, *types, *domains; in get_children_props() local
165 types = of_get_property(dn, "ibm,drc-types", NULL); in get_children_props()
168 if (!indexes || !names || !types || !domains) { in get_children_props()
179 *drc_types = types; in get_children_props()
198 const int *types, *domains; in rpaphp_check_drc_props_v1() local
201 rc = get_children_props(dn->parent, &indexes, &names, &types, &domains); in rpaphp_check_drc_props_v1()
207 type_tmp = (char *) &types[1]; in rpaphp_check_drc_props_v1()
317 const int **names, const int **types, const int **power_domains) in is_php_dn() argument
329 *types = drc_types; in is_php_dn()
354 const int *indexes, *names, *types, *power_domains; in rpaphp_add_slot() local
[all …]
/Linux-v4.19/drivers/gpu/drm/nouveau/include/nvkm/core/
Devent.h31 void nvkm_event_get(struct nvkm_event *, u32 types, int index);
32 void nvkm_event_put(struct nvkm_event *, u32 types, int index);
33 void nvkm_event_send(struct nvkm_event *, u32 types, int index,
/Linux-v4.19/Documentation/devicetree/bindings/leds/
Dleds-powernv.txt12 - led-types : Supported LED types (attention/identify/fault) provided
22 led-types = "identify", "fault";
/Linux-v4.19/arch/x86/events/intel/
Duncore.c859 static void uncore_types_exit(struct intel_uncore_type **types) in uncore_types_exit() argument
861 for (; *types; types++) in uncore_types_exit()
862 uncore_type_exit(*types); in uncore_types_exit()
925 uncore_types_init(struct intel_uncore_type **types, bool setid) in uncore_types_init() argument
929 for (; *types; types++) { in uncore_types_init()
930 ret = uncore_type_init(*types, setid); in uncore_types_init()
1151 struct intel_uncore_type *type, **types = uncore_msr_uncores; in uncore_event_cpu_offline() local
1174 for (; *types; types++) { in uncore_event_cpu_offline()
1175 type = *types; in uncore_event_cpu_offline()
1186 static int allocate_boxes(struct intel_uncore_type **types, in allocate_boxes() argument
[all …]
/Linux-v4.19/arch/arm/tools/
DMakefile19 kapi-hdrs-y += $(kapi)/mach-types.h
41 $(kapi)/mach-types.h: $(src)/gen-mach-types $(src)/mach-types FORCE
/Linux-v4.19/tools/lib/bpf/
Dbtf.c31 struct btf_type **types; member
52 new_types = realloc(btf->types, sizeof(*new_types) * new_size); in btf_add_type()
59 btf->types = new_types; in btf_add_type()
63 btf->types[++(btf->nr_types)] = t; in btf_add_type()
194 return btf->types[type_id]; in btf__type_by_id()
297 const struct btf_type *t = btf->types[i]; in btf__find_by_name()
316 free(btf->types); in btf__free()
/Linux-v4.19/drivers/acpi/acpica/
Ddbexec.c121 status = acpi_db_convert_to_object(info->types[i], in acpi_db_execute_method()
342 acpi_db_execute(char *name, char **args, acpi_object_type *types, u32 flags) in acpi_db_execute() argument
394 acpi_gbl_db_method_info.types = types; in acpi_db_execute()
523 local_info.types = local_info.arg_types; in acpi_db_method_thread()
637 char **arguments, acpi_object_type *types) in acpi_db_create_execution_thread() argument
646 acpi_gbl_db_method_info.types = acpi_gbl_db_method_info.arg_types; in acpi_db_create_execution_thread()
654 acpi_gbl_db_method_info.arg_types[i] = *types; in acpi_db_create_execution_thread()
655 types++; in acpi_db_create_execution_thread()
797 acpi_gbl_db_method_info.types = acpi_gbl_db_method_info.arg_types; in acpi_db_create_execution_threads()
Dutpredef.c343 u32 acpi_ut_get_resource_bit_width(char *buffer, u16 types) in acpi_ut_get_resource_bit_width() argument
354 if (types & 1) { in acpi_ut_get_resource_bit_width()
360 types >>= 1; in acpi_ut_get_resource_bit_width()
/Linux-v4.19/arch/sh/tools/
DMakefile13 include/generated/machtypes.h: $(src)/gen-mach-types $(src)/mach-types
/Linux-v4.19/Documentation/media/uapi/dvb/
Dnet.rst21 types that are present on the transport stream. This is done through
26 Data types and and ioctl definitions are defined via ``linux/dvb/net.h``
38 net-types
Dfe-type-t.rst7 For historical reasons, frontend types are named by the type of
8 modulation used in transmission. The fontend types are given by
16 .. flat-table:: Frontend types
/Linux-v4.19/tools/vm/
DMakefile4 TARGETS=page-types slabinfo page_owner_sort
23 $(RM) page-types slabinfo page_owner_sort
/Linux-v4.19/drivers/leds/
Dleds-sunfire.c126 struct led_type *types) in sunfire_led_generic_probe() argument
145 lp->name = types[i].name; in sunfire_led_generic_probe()
147 lp->brightness_set = types[i].handler; in sunfire_led_generic_probe()
148 lp->default_trigger = types[i].default_trigger; in sunfire_led_generic_probe()
/Linux-v4.19/Documentation/iio/
Diio_configfs.txt33 trigger types. A new trigger type is usually implemented as a separate
75 We support the following interrupt sources (trigger types):
80 Loading iio-trig-hrtimer module will register hrtimer trigger types allowing
90 3.2 "hrtimer" trigger types attributes
/Linux-v4.19/drivers/remoteproc/
Dremoteproc_debugfs.c161 static const char * const types[] = {"carveout", "devmem", "trace", "vdev"}; in rproc_rsc_table_show() local
183 seq_printf(seq, "Entry %d is of type %s\n", i, types[hdr->type]); in rproc_rsc_table_show()
193 seq_printf(seq, "Entry %d is of type %s\n", i, types[hdr->type]); in rproc_rsc_table_show()
203 seq_printf(seq, "Entry %d is of type %s\n", i, types[hdr->type]); in rproc_rsc_table_show()
211 seq_printf(seq, "Entry %d is of type %s\n", i, types[hdr->type]); in rproc_rsc_table_show()
/Linux-v4.19/Documentation/media/uapi/cec/
Dcec-ioc-adap-g-log-addrs.rst64 logical address types are already defined will return with error ``EBUSY``.
127 :ref:`cec-prim-dev-types` for possible types.
130 - Logical address types. See :ref:`cec-log-addr-types` for
131 possible types. The driver will update this with the actual
136 - CEC 2.0 specific: the bit mask of all device types. See
137 :ref:`cec-all-dev-types-flags`. It is used in the CEC 2.0
217 .. _cec-prim-dev-types:
263 .. _cec-log-addr-types:
312 .. _cec-all-dev-types-flags:
/Linux-v4.19/net/ipv6/netfilter/
Dip6t_mh.c61 return type_match(mhinfo->types[0], mhinfo->types[1], mh->ip6mh_type, in mh_mt6()
/Linux-v4.19/sound/firewire/bebob/
Dbebob_focusrite.c187 if (bebob->spec->clock->types == saffirepro_10_clk_src_types) in saffirepro_both_clk_src_get()
270 .types = saffirepro_26_clk_src_types,
281 .types = saffirepro_10_clk_src_types,
296 .types = saffire_both_clk_src_types,
/Linux-v4.19/drivers/misc/cardreader/
DKconfig8 Realtek card readers support access to many types of memory cards,
19 Realtek card reader supports access to many types of memory cards,
/Linux-v4.19/Documentation/media/uapi/v4l/
Ddev-event.rst18 an event is subscribed, the events of subscribed types are dequeueable
37 other event types.
42 3. Where applicable, certain event types can ensure that the payload of
/Linux-v4.19/net/wireless/
Dcore.c570 u16 types = c->limits[j].types; in wiphy_verify_combinations() local
573 if (WARN_ON(types & all_iftypes)) in wiphy_verify_combinations()
575 all_iftypes |= types; in wiphy_verify_combinations()
581 if (WARN_ON(wiphy->software_iftypes & types)) in wiphy_verify_combinations()
585 if (WARN_ON(types & BIT(NL80211_IFTYPE_P2P_DEVICE) && in wiphy_verify_combinations()
590 if (WARN_ON(types & BIT(NL80211_IFTYPE_NAN) && in wiphy_verify_combinations()
604 if (WARN_ON(types & BIT(NL80211_IFTYPE_ADHOC) && in wiphy_verify_combinations()
614 if (WARN_ON((wiphy->interface_modes & types) != types)) in wiphy_verify_combinations()
747 u16 types = 0; in wiphy_register() local
800 if (WARN_ON(types & iftd->types_mask)) in wiphy_register()
[all …]
/Linux-v4.19/arch/mips/fw/arc/
Dtree.c74 static char *types[] = { variable
97 p, classes[p->class], types[p->type], in dump_component()

12345678910>>...31