Home
last modified time | relevance | path

Searched refs:core (Results 576 - 600 of 7218) sorted by relevance

1...<<21222324252627282930>>...289

/kernel/linux/linux-5.10/drivers/bcma/
H A Ddriver_pci.c70 if (pc->core->id.rev >= 10) { in bcma_pcie_mdio_read()
113 if (pc->core->id.rev >= 10) { in bcma_pcie_mdio_write()
153 struct bcma_device *core = pc->core; in bcma_core_pci_fixcfg() local
158 core_index = (u16)core->core_index; in bcma_core_pci_fixcfg()
269 if (pc->core->id.rev >= 15 && pc->core->id.rev <= 20) { in bcma_core_pci_power_save()
275 } else if (pc->core->id.rev >= 21 && pc->core->id.rev <= 22) { in bcma_core_pci_power_save()
H A Ddriver_gpio.c128 if (cc->core->bus->hosttype != BCMA_HOSTTYPE_SOC) in bcma_gpio_irq_init()
131 hwirq = bcma_core_irq(cc->core, 0); in bcma_gpio_irq_init()
153 if (cc->core->bus->hosttype != BCMA_HOSTTYPE_SOC) in bcma_gpio_irq_exit()
157 free_irq(bcma_core_irq(cc->core, 0), cc); in bcma_gpio_irq_exit()
172 struct bcma_bus *bus = cc->core->bus; in bcma_gpio_init()
187 chip->of_node = cc->core->dev.of_node; in bcma_gpio_init()
209 cc->core->bus->hosttype == BCMA_HOSTTYPE_SOC) in bcma_gpio_init()
/kernel/linux/linux-5.10/drivers/net/ethernet/mellanox/mlx5/core/en/
H A Dhealth.c116 err = devlink_fmsg_u8_pair_put(fmsg, "eqn", eq->core.eqn); in mlx5e_health_eq_diag_fmsg()
120 err = devlink_fmsg_u32_pair_put(fmsg, "irqn", eq->core.irqn); in mlx5e_health_eq_diag_fmsg()
124 err = devlink_fmsg_u32_pair_put(fmsg, "vecidx", eq->core.vecidx); in mlx5e_health_eq_diag_fmsg()
128 err = devlink_fmsg_u32_pair_put(fmsg, "ci", eq->core.cons_index); in mlx5e_health_eq_diag_fmsg()
132 err = devlink_fmsg_u32_pair_put(fmsg, "size", eq->core.nent); in mlx5e_health_eq_diag_fmsg()
214 eq->core.eqn, eq->core.cons_index, eq->core.irqn); in mlx5e_health_channel_eq_recover()
221 eqe_count, eq->core.eqn); in mlx5e_health_channel_eq_recover()
/kernel/linux/linux-6.6/drivers/bcma/
H A Ddriver_pci.c70 if (pc->core->id.rev >= 10) { in bcma_pcie_mdio_read()
113 if (pc->core->id.rev >= 10) { in bcma_pcie_mdio_write()
153 struct bcma_device *core = pc->core; in bcma_core_pci_fixcfg() local
158 core_index = (u16)core->core_index; in bcma_core_pci_fixcfg()
269 if (pc->core->id.rev >= 15 && pc->core->id.rev <= 20) { in bcma_core_pci_power_save()
275 } else if (pc->core->id.rev >= 21 && pc->core->id.rev <= 22) { in bcma_core_pci_power_save()
H A Ddriver_gpio.c134 if (cc->core->bus->hosttype != BCMA_HOSTTYPE_SOC) in bcma_gpio_irq_init()
137 hwirq = bcma_core_irq(cc->core, 0); in bcma_gpio_irq_init()
159 if (cc->core->bus->hosttype != BCMA_HOSTTYPE_SOC) in bcma_gpio_irq_exit()
163 free_irq(bcma_core_irq(cc->core, 0), cc); in bcma_gpio_irq_exit()
178 struct bcma_bus *bus = cc->core->bus; in bcma_gpio_init()
191 chip->fwnode = dev_fwnode(&cc->core->dev); in bcma_gpio_init()
213 cc->core->bus->hosttype == BCMA_HOSTTYPE_SOC) in bcma_gpio_init()
/kernel/linux/linux-6.6/drivers/net/ethernet/mellanox/mlx5/core/en/
H A Dhealth.c115 err = devlink_fmsg_u8_pair_put(fmsg, "eqn", eq->core.eqn); in mlx5e_health_eq_diag_fmsg()
119 err = devlink_fmsg_u32_pair_put(fmsg, "irqn", eq->core.irqn); in mlx5e_health_eq_diag_fmsg()
123 err = devlink_fmsg_u32_pair_put(fmsg, "vecidx", eq->core.vecidx); in mlx5e_health_eq_diag_fmsg()
127 err = devlink_fmsg_u32_pair_put(fmsg, "ci", eq->core.cons_index); in mlx5e_health_eq_diag_fmsg()
131 err = devlink_fmsg_u32_pair_put(fmsg, "size", eq_get_size(&eq->core)); in mlx5e_health_eq_diag_fmsg()
212 eq->core.eqn, eq->core.cons_index, eq->core.irqn); in mlx5e_health_channel_eq_recover()
219 eqe_count, eq->core.eqn); in mlx5e_health_channel_eq_recover()
/kernel/linux/linux-6.6/rust/kernel/sync/
H A Darc.rs26 use core::{
66 /// assert!(core::ptr::eq(&*obj, &*cloned));
141 impl<T: ?Sized> core::ops::Receiver for Arc<T> {}
145 impl<T: ?Sized + Unsize<U>, U: ?Sized> core::ops::CoerceUnsized<Arc<U>> for Arc<T> {}
148 impl<T: ?Sized + Unsize<U>, U: ?Sized> core::ops::DispatchFromDyn<Arc<U>> for Arc<T> {}
232 core::ptr::eq(this.ptr.as_ptr(), other.ptr.as_ptr()) in ptr_eq()
239 fn into_foreign(self) -> *const core::ffi::c_void { in into_foreign()
243 unsafe fn borrow<'a>(ptr: *const core::ffi::c_void) -> ArcBorrow<'a, T> { in borrow()
253 unsafe fn from_foreign(ptr: *const core::ffi::c_void) -> Self { in from_foreign()
354 /// assert!(core
[all...]
/kernel/linux/linux-6.6/rust/kernel/init/
H A Dmacros.rs23 //! # use core::pin::Pin;
63 //! - use global paths, similarly to file paths, these start with the separator: `::core::panic!()`
64 //! this ensures that the correct item is used, since users could define their own `mod core {}`
104 //! __phantom: ::core::marker::PhantomData<fn(Bar<T>) -> Bar<T>>,
108 //! impl<T> ::core::clone::Clone for __ThePinData<T> {
113 //! impl<T> ::core::marker::Copy for __ThePinData<T> {}
125 //! ) -> ::core::result::Result<(), E> {
133 //! ) -> ::core::result::Result<(), E> {
143 //! __phantom: ::core::marker::PhantomData,
167 //! __phantom_pin: ::core
[all...]
/test/xts/hats/hdf/external_device_manager/device_manager_test/
H A Ddevice_manager_test.cpp64 BusExtensionCore &core = BusExtensionCore::GetInstance(); in HWTEST_F() local
65 int32_t ret = core.Register(BusType::BUS_TYPE_USB, std::make_shared<UsbBusExtension>()); in HWTEST_F()
67 ASSERT_NE(core.busExtensions_[BusType::BUS_TYPE_USB], nullptr); in HWTEST_F()
165 BusExtensionCore &core = BusExtensionCore::GetInstance(); in HWTEST_F() local
166 ASSERT_NE(core.busExtensions_[BusType::BUS_TYPE_USB], nullptr); in HWTEST_F()
167 std::shared_ptr<IBusExtension> extension = core.GetBusExtensionByName("HDMI"); in HWTEST_F()
169 extension = core.GetBusExtensionByName("USB"); in HWTEST_F()
171 core.busExtensions_.erase(BusType::BUS_TYPE_USB); in HWTEST_F()
172 extension = core.GetBusExtensionByName("USB"); in HWTEST_F()
/third_party/skia/third_party/externals/sfntly/java/src/com/google/typography/font/sfntly/table/
H A DTable.java25 import com.google.typography.font.sfntly.table.core.CMapTable;
26 import com.google.typography.font.sfntly.table.core.FontHeaderTable;
27 import com.google.typography.font.sfntly.table.core.HorizontalDeviceMetricsTable;
28 import com.google.typography.font.sfntly.table.core.HorizontalHeaderTable;
29 import com.google.typography.font.sfntly.table.core.HorizontalMetricsTable;
30 import com.google.typography.font.sfntly.table.core.MaximumProfileTable;
31 import com.google.typography.font.sfntly.table.core.NameTable;
32 import com.google.typography.font.sfntly.table.core.OS2Table;
33 import com.google.typography.font.sfntly.table.core.PostScriptTable;
/foundation/graphic/graphic_3d/lume/LumeDotfield/src/systems/
H A Ddotfield_system.cpp32 #include <core/ecs/intf_component_manager.h>
33 #include <core/ecs/intf_ecs.h>
34 #include <core/implementation_uids.h>
35 #include <core/intf_engine.h>
36 #include <core/plugin/intf_class_factory.h>
37 #include <core/property/intf_property_api.h>
38 #include <core/property/intf_property_handle.h>
/foundation/graphic/graphic_3d/lume/LumeDotfield/src/
H A Dcomponent_dll.cpp16 #include <core/intf_engine.h>
17 #include <core/ecs/intf_ecs.h>
18 #include <core/ecs/intf_system.h>
19 #include <core/ecs/intf_component_manager.h>
20 #include <core/io/intf_file_manager.h>
21 #include <core/plugin/intf_plugin.h>
22 #include <core/plugin/intf_plugin_decl.h>
/kernel/linux/linux-5.10/drivers/staging/wfx/
H A Dbus_sdio.c29 struct wfx_dev *core; member
96 wfx_bh_request_rx(bus->core); in wfx_sdio_irq_handler()
104 wfx_bh_request_rx(bus->core); in wfx_sdio_irq_handler_ext()
222 bus->core = wfx_init_common(&func->dev, &wfx_sdio_pdata, in wfx_sdio_probe()
224 if (!bus->core) { in wfx_sdio_probe()
229 ret = wfx_probe(bus->core); in wfx_sdio_probe()
247 wfx_release(bus->core); in wfx_sdio_remove()
/kernel/linux/linux-5.10/drivers/video/fbdev/omap2/omapfb/dss/
H A Dhdmi4_core.h3 * HDMI header definition for OMAP4 HDMI core IP
252 int hdmi4_read_edid(struct hdmi_core_data *core, u8 *edid, int len);
253 void hdmi4_configure(struct hdmi_core_data *core, struct hdmi_wp_data *wp,
255 void hdmi4_core_dump(struct hdmi_core_data *core, struct seq_file *s);
256 int hdmi4_core_init(struct platform_device *pdev, struct hdmi_core_data *core);
258 int hdmi4_audio_start(struct hdmi_core_data *core, struct hdmi_wp_data *wp);
259 void hdmi4_audio_stop(struct hdmi_core_data *core, struct hdmi_wp_data *wp);
260 int hdmi4_audio_config(struct hdmi_core_data *core, struct hdmi_wp_data *wp,
/kernel/linux/linux-6.6/drivers/video/fbdev/omap2/omapfb/dss/
H A Dhdmi4_core.h3 * HDMI header definition for OMAP4 HDMI core IP
252 int hdmi4_read_edid(struct hdmi_core_data *core, u8 *edid, int len);
253 void hdmi4_configure(struct hdmi_core_data *core, struct hdmi_wp_data *wp,
255 void hdmi4_core_dump(struct hdmi_core_data *core, struct seq_file *s);
256 int hdmi4_core_init(struct platform_device *pdev, struct hdmi_core_data *core);
258 int hdmi4_audio_start(struct hdmi_core_data *core, struct hdmi_wp_data *wp);
259 void hdmi4_audio_stop(struct hdmi_core_data *core, struct hdmi_wp_data *wp);
260 int hdmi4_audio_config(struct hdmi_core_data *core, struct hdmi_wp_data *wp,
/kernel/linux/linux-6.6/drivers/net/wireless/silabs/wfx/
H A Dbus_sdio.c46 struct wfx_dev *core; member
111 wfx_bh_request_rx(bus->core); in wfx_sdio_irq_handler()
119 wfx_bh_request_rx(bus->core); in wfx_sdio_irq_handler_ext()
228 bus->core = wfx_init_common(&func->dev, pdata, &wfx_sdio_hwbus_ops, bus); in wfx_sdio_probe()
229 if (!bus->core) { in wfx_sdio_probe()
234 ret = wfx_probe(bus->core); in wfx_sdio_probe()
251 wfx_release(bus->core); in wfx_sdio_remove()
/third_party/pulseaudio/src/modules/
H A Dmodule-mmkbd-evdev.c35 #include <pulsecore/core-error.h>
41 #include <pulsecore/core-util.h>
114 if (!(s = pa_namereg_get(u->module->core, u->sink_name, PA_NAMEREG_SINK))) in io_callback()
145 u->module->core->mainloop->io_free(u->io); in io_callback()
229 u->io = m->core->mainloop->io_new(m->core->mainloop, u->fd, PA_IO_EVENT_INPUT|PA_IO_EVENT_HANGUP, io_callback, u); in pa__init()
253 m->core->mainloop->io_free(u->io); in pa__done()
/third_party/pulseaudio/src/modules/x11/
H A Dmodule-x11-publish.c37 #include <pulsecore/core-util.h>
64 pa_core *core; member
149 u->core = m->core; in pa__init()
151 u->protocol = pa_native_protocol_get(m->core); in pa__init()
159 if (!(u->auth_cookie = pa_auth_cookie_get(m->core, pa_modargs_get_value(ma, "cookie", PA_NATIVE_COOKIE_FILE), true, PA_NATIVE_COOKIE_LENGTH))) in pa__init()
169 if (!(u->x11_wrapper = pa_x11_wrapper_get(m->core, pa_modargs_get_value(ma, "display", NULL)))) in pa__init()
/third_party/rust/crates/rustix/src/backend/libc/net/
H A Daddr.rs11 use core::convert::TryInto;
13 use core::fmt;
15 use core::slice;
227 fn partial_cmp(&self, other: &Self) -> Option<core::cmp::Ordering> { in partial_cmp()
237 fn cmp(&self, other: &Self) -> core::cmp::Ordering { in cmp()
245 impl core::hash::Hash for SocketAddrUnix {
247 fn hash<H: core::hash::Hasher>(&self, state: &mut H) { in hash()
/kernel/linux/linux-6.6/drivers/net/ethernet/mellanox/mlx5/core/
H A Deq.c16 #include "fpga/core.h"
114 struct mlx5_eq *eq = &eq_comp->core; in mlx5_eq_comp_int()
165 disable_irq(eq->core.irqn); in mlx5_eq_poll_irq_disabled()
166 count_eqe = eq->core.cons_index; in mlx5_eq_poll_irq_disabled()
168 count_eqe = eq->core.cons_index - count_eqe; in mlx5_eq_poll_irq_disabled()
169 enable_irq(eq->core.irqn); in mlx5_eq_poll_irq_disabled()
204 struct mlx5_eq *eq = &eq_async->core; in mlx5_eq_async_int()
513 eq = &eqt->async_eq.core; in cq_err_event_notifier()
612 err = create_async_eq(dev, &eq->core, param); in setup_async_eq()
617 err = mlx5_eq_enable(dev, &eq->core, in setup_async_eq()
[all...]
/device/board/hisilicon/hispark_taurus/audio_drivers/
H A DMakefile36 -I$(srctree)/$(KHDF_FRAMEWORK_ROOT_DIR)/include/core \
42 -I$(srctree)/drivers/hdf/inner_api/core \
47 -I$(srctree)/$(KHDF_FRAMEWORK_ROOT_DIR)/core/common/include/host \
48 -I$(srctree)/$(KHDF_FRAMEWORK_ROOT_DIR)/core/host/include \
49 -I$(srctree)/$(KHDF_FRAMEWORK_ROOT_DIR)/model/audio/core/include \
/device/board/hihope/dayu210/audio_drivers/
H A DMakefile31 -I$(srctree)/$(KHDF_FRAMEWORK_ROOT_DIR)/include/core \
36 -I$(srctree)/drivers/hdf/inner_api/core \
42 -I$(srctree)/$(KHDF_FRAMEWORK_ROOT_DIR)/core/common/include/host \
43 -I$(srctree)/$(KHDF_FRAMEWORK_ROOT_DIR)/core/host/include \
44 -I$(srctree)/$(KHDF_FRAMEWORK_ROOT_DIR)/model/audio/core/include \
/device/board/hihope/rk3568/audio_drivers/
H A DMakefile33 -I$(srctree)/$(KHDF_FRAMEWORK_ROOT_DIR)/include/core \
37 -I$(srctree)/drivers/hdf/inner_api/core \
44 -I$(srctree)/$(KHDF_FRAMEWORK_ROOT_DIR)/core/common/include/host \
45 -I$(srctree)/$(KHDF_FRAMEWORK_ROOT_DIR)/core/host/include \
46 -I$(srctree)/$(KHDF_FRAMEWORK_ROOT_DIR)/model/audio/core/include \
/foundation/graphic/graphic_3d/lume/LumeEcsSerializer/EcsSerializer/include/ecs_serializer/
H A Dintf_ecs_serializer.h21 #include <core/ecs/intf_component_manager.h>
22 #include <core/ecs/intf_ecs.h>
23 #include <core/json/json.h>
24 #include <core/property/intf_property_api.h>
25 #include <core/property/property.h>
/foundation/graphic/graphic_3d/lume/Lume_3D/src/ecs/components/
H A Dmaterial_extension_component_manager.cpp20 #include <core/ecs/intf_ecs.h>
21 #include <core/intf_engine.h>
22 #include <core/plugin/intf_class_factory.h>
23 #include <core/plugin/intf_class_register.h>
24 #include <core/property/property_types.h>

Completed in 13 milliseconds

1...<<21222324252627282930>>...289