Home
last modified time | relevance | path

Searched refs:core (Results 151 - 175 of 1928) sorted by relevance

12345678910>>...78

/foundation/multimedia/audio_framework/frameworks/native/pulseaudio/modules/hdi/
H A Dmodule_hdi_source.c26 #include <pulsecore/core.h>
27 #include <pulsecore/core-util.h>
131 pa_resampler *preResampler = pa_resampler_new(so->source->core->mempool, in SetResampler()
134 so->source->core->lfe_crossover_freq, in SetResampler()
144 pa_resampler *ecResampler = pa_resampler_new(so->source->core->mempool, in SetResampler()
147 so->source->core->lfe_crossover_freq, in SetResampler()
156 pa_resampler *micRefResampler = pa_resampler_new(so->source->core->mempool, in SetResampler()
159 so->source->core->lfe_crossover_freq, in SetResampler()
174 u->defaultSceneResampler = pa_resampler_new(so->source->core->mempool, in SetDefaultResampler()
177 so->source->core in SetDefaultResampler()
[all...]
/third_party/ffmpeg/libavcodec/
H A Ddcadec.c185 // Parse backward compatible core sub-stream in dcadec_decode_frame()
189 if ((ret = ff_dca_core_parse(&s->core, input, input_size)) < 0) in dcadec_decode_frame()
195 frame_size = FFALIGN(s->core.frame_size, 4); in dcadec_decode_frame()
241 // Parse core extensions in EXSS or backward compatible core sub-stream in dcadec_decode_frame()
243 && (ret = ff_dca_core_parse_exss(&s->core, input, asset)) < 0) in dcadec_decode_frame()
256 if (s->xll.chset[0].freq == 96000 && s->core.sample_rate == 48000) in dcadec_decode_frame()
259 if ((ret = ff_dca_core_filter_fixed(&s->core, x96_synth)) < 0) in dcadec_decode_frame()
262 // Force lossy downmixed output on the first core frame filtered. in dcadec_decode_frame()
276 // Fall back to core unles in dcadec_decode_frame()
[all...]
/third_party/pulseaudio/src/modules/bluetooth/
H A Dmodule-bluetooth-policy.c28 #include <pulsecore/core.h>
32 #include <pulsecore/core-util.h>
394 static void handle_all_profiles(pa_core *core) { in handle_all_profiles() argument
398 PA_IDXSET_FOREACH(card, core->cards, state) { in handle_all_profiles()
403 profile_available_hook_callback(core, profile, NULL); in handle_all_profiles()
453 u->source_put_slot = pa_hook_connect(&m->core->hooks[PA_CORE_HOOK_SOURCE_PUT], PA_HOOK_NORMAL, in pa__init()
456 u->sink_put_slot = pa_hook_connect(&m->core->hooks[PA_CORE_HOOK_SINK_PUT], PA_HOOK_NORMAL, in pa__init()
460 u->source_output_put_slot = pa_hook_connect(&m->core->hooks[PA_CORE_HOOK_SOURCE_OUTPUT_PUT], PA_HOOK_NORMAL, in pa__init()
463 u->source_output_unlink_slot = pa_hook_connect(&m->core->hooks[PA_CORE_HOOK_SOURCE_OUTPUT_UNLINK_POST], PA_HOOK_NORMAL, in pa__init()
466 u->card_init_profile_slot = pa_hook_connect(&m->core in pa__init()
[all...]
/third_party/mesa3d/src/vulkan/runtime/
H A Dvk_device.c537 #define CORE_FEATURE(feature) features->feature = core->feature
541 const VkPhysicalDeviceVulkan11Features *core) in vk_get_physical_device_core_1_1_feature_ext()
588 copy_vk_struct_guts(ext, (void *)core, sizeof(*core)); in vk_get_physical_device_core_1_1_feature_ext()
598 const VkPhysicalDeviceVulkan12Features *core) in vk_get_physical_device_core_1_2_feature_ext()
708 copy_vk_struct_guts(ext, (void *)core, sizeof(*core)); in vk_get_physical_device_core_1_2_feature_ext()
718 const VkPhysicalDeviceVulkan13Features *core) in vk_get_physical_device_core_1_3_feature_ext()
802 copy_vk_struct_guts(ext, (void *)core, sizeof(*core)); in vk_get_physical_device_core_1_3_feature_ext()
540 vk_get_physical_device_core_1_1_feature_ext(struct VkBaseOutStructure *ext, const VkPhysicalDeviceVulkan11Features *core) vk_get_physical_device_core_1_1_feature_ext() argument
597 vk_get_physical_device_core_1_2_feature_ext(struct VkBaseOutStructure *ext, const VkPhysicalDeviceVulkan12Features *core) vk_get_physical_device_core_1_2_feature_ext() argument
717 vk_get_physical_device_core_1_3_feature_ext(struct VkBaseOutStructure *ext, const VkPhysicalDeviceVulkan13Features *core) vk_get_physical_device_core_1_3_feature_ext() argument
818 vk_get_physical_device_core_1_1_property_ext(struct VkBaseOutStructure *ext, const VkPhysicalDeviceVulkan11Properties *core) vk_get_physical_device_core_1_1_property_ext() argument
880 vk_get_physical_device_core_1_2_property_ext(struct VkBaseOutStructure *ext, const VkPhysicalDeviceVulkan12Properties *core) vk_get_physical_device_core_1_2_property_ext() argument
975 vk_get_physical_device_core_1_3_property_ext(struct VkBaseOutStructure *ext, const VkPhysicalDeviceVulkan13Properties *core) vk_get_physical_device_core_1_3_property_ext() argument
[all...]
/third_party/pulseaudio/src/modules/
H A Dmodule-udev-detect.c33 #include <pulsecore/core-error.h>
34 #include <pulsecore/core-util.h>
63 pa_core *core; member
342 err = pa_module_load(&m, u->core, "module-alsa-card", d->args); in verify_access()
367 if ((card = pa_namereg_get(u->core, d->card_name, PA_NAMEREG_CARD))) { in verify_access()
452 pa_module_unload_request_by_index(u->core, d->module, true); in remove_card()
687 pa_assert_se(u->inotify_io = u->core->mainloop->io_new(u->core->mainloop, u->inotify_fd, PA_IO_EVENT_INPUT, inotify_cb, u)); in setup_inotify()
698 bool use_tsched = true, fixed_latency_range = false, ignore_dB = false, deferred_volume = m->core->deferred_volume; in pa__init()
710 u->core in pa__init()
[all...]
H A Dmodule-sine.c44 pa_core *core; member
130 if (!(sink = pa_namereg_get(m->core, pa_modargs_get_value(ma, "sink", NULL), PA_NAMEREG_SINK))) { in pa__init()
151 u->core = m->core; in pa__init()
156 pa_memchunk_sine(&u->memchunk, m->core->mempool, ss.rate, frequency); in pa__init()
167 pa_sink_input_new(&u->sink_input, m->core, &data); in pa__init()
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-bell.c32 #include <pulsecore/core-scache.h>
52 pa_core *core; member
81 if (pa_scache_play_item_by_name(u->core, u->scache_item, u->sink_name, PA_VOLUME_INVALID, NULL, NULL) < 0) { in x11_event_cb()
125 u->core = m->core; in pa__init()
138 if (!(u->x11_wrapper = pa_x11_wrapper_get(m->core, pa_modargs_get_value(ma, "display", NULL)))) in pa__init()
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/pulseaudio/src/pulsecore/
H A Dcore.h54 #include <pulsecore/core-subscribe.h>
150 /* The core structure of PulseAudio. Every PulseAudio daemon contains
182 * core.c. pa_core_update_default_sink/source() has to be called whenever
250 void pa_core_set_configured_default_sink(pa_core *core, const char *sink);
251 void pa_core_set_configured_default_source(pa_core *core, const char *source);
262 void pa_core_update_default_sink(pa_core *core);
263 void pa_core_update_default_source(pa_core *core);
265 void pa_core_set_exit_idle_time(pa_core *core, int time);
267 /* Check whether no one is connected to this core */
/third_party/rust/crates/rustix/src/backend/linux_raw/net/
H A Daddr.rs11 use core::convert::TryInto;
12 use core::{fmt, slice};
125 fn partial_cmp(&self, other: &Self) -> Option<core::cmp::Ordering> { in partial_cmp()
134 fn cmp(&self, other: &Self) -> core::cmp::Ordering { in cmp()
141 impl core::hash::Hash for SocketAddrUnix {
143 fn hash<H: core::hash::Hasher>(&self, state: &mut H) { in hash()
/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/Lume_3D/api/3d/ecs/components/
H A Danimation_output_component.h22 #include <core/ecs/component_struct_macros.h>
23 #include <core/ecs/intf_component_manager.h>
24 #include <core/namespace.h>
H A Danimation_input_component.h22 #include <core/ecs/component_struct_macros.h>
23 #include <core/ecs/intf_component_manager.h>
24 #include <core/namespace.h>
/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>
/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()
/third_party/rust/crates/rustix/src/
H A Dio_uring.rs24 use core::ffi::c_void;
25 use core::ptr::null_mut;
658 let mut s = ::core::mem::MaybeUninit::<Self>::uninit(); in default()
661 ::core::ptr::write_bytes(s.as_mut_ptr(), 0, 1); in default()
667 impl core::fmt::Debug for io_uring_user_data {
668 fn fmt(&self, fmt: &mut core::fmt::Formatter<'_>) -> core::fmt::Result { in fmt()
929 let mut s = ::core::mem::MaybeUninit::<Self>::uninit(); in default()
932 ::core::ptr::write_bytes(s.as_mut_ptr(), 0, 1); in default()
941 let mut s = ::core in default()
[all...]
/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>
/foundation/graphic/graphic_3d/lume/LumeEngine/src/io/
H A Dfile_manager.h26 #include <core/io/intf_directory.h>
27 #include <core/io/intf_file.h>
28 #include <core/io/intf_file_manager.h>
29 #include <core/io/intf_file_system.h>
30 #include <core/namespace.h>
/foundation/graphic/graphic_3d/lume/LumeEngine/api/core/property/
H A Dproperty_handle_util.h20 #include <core/property/intf_property_api.h>
21 #include <core/property/intf_property_handle.h>
22 #include <core/property/property.h>
23 #include <core/property/property_types.h>
24 #include <core/property/scoped_handle.h>
/third_party/skia/third_party/externals/swiftshader/src/Reactor/
H A DCoroutine.hpp150 std::unique_ptr<Nucleus> core; member in rr::Coroutine
157 : core(new Nucleus()) in Coroutine()
174 if(core != nullptr) in finalize()
176 routine = core->acquireCoroutine(name, cfg); in finalize()
177 core.reset(nullptr); in finalize()
/third_party/rust/crates/libc/ci/
H A Dbuild.sh48 -Z build-std=core,alloc -vv --no-default-features --target "${TARGET}"
56 -Z build-std=core,alloc -vv --target "${TARGET}"
65 -Z build-std=core,alloc -vv --no-default-features \
76 -Z build-std=core,alloc -vv --no-default-features \
87 -Z build-std=core,alloc -vv --target "${TARGET}" \

Completed in 13 milliseconds

12345678910>>...78