Home
last modified time | relevance | path

Searched refs:map_info (Results 1 – 5 of 5) sorted by relevance

/third_party/pulseaudio/src/modules/bluetooth/
Da2dp-codec-gst.c257 GstMapInfo map_info; in gst_transcode_buffer() local
258 pa_assert_se(gst_buffer_map(in_buf, &map_info, GST_MAP_READ)); in gst_transcode_buffer()
259 memcpy(output_buffer, map_info.data, transcoded); in gst_transcode_buffer()
260 gst_buffer_unmap(in_buf, &map_info); in gst_transcode_buffer()
/third_party/libsnd/src/
Dcaf.c798 { const AIFF_CAF_CHANNEL_MAP * map_info ; in caf_read_chanmap() local
804 map_info = aiff_caf_of_channel_layout_tag (layout_tag) ; in caf_read_chanmap()
807 if (map_info) in caf_read_chanmap()
808 psf_log_printf (psf, " Layout : %s\n", map_info->name) ; in caf_read_chanmap()
813 if (map_info && map_info->channel_map != NULL) in caf_read_chanmap()
821 memcpy (psf->channel_map, map_info->channel_map, chanmap_size) ; in caf_read_chanmap()
Daiff.c1759 { const AIFF_CAF_CHANNEL_MAP * map_info ; in aiff_read_chanmap() local
1765 if ((map_info = aiff_caf_of_channel_layout_tag (layout_tag)) == NULL) in aiff_read_chanmap()
1769 if (map_info) in aiff_read_chanmap()
1770 psf_log_printf (psf, " Layout : %s\n", map_info->name) ; in aiff_read_chanmap()
1775 if (map_info->channel_map != NULL) in aiff_read_chanmap()
1783 memcpy (psf->channel_map, map_info->channel_map, chanmap_size) ; in aiff_read_chanmap()
/third_party/libbpf/src/
Dlibbpf.c5404 struct bpf_map_info map_info; local
5406 __u32 map_info_len = sizeof(map_info);
5409 memset(&map_info, 0, map_info_len);
5410 err = bpf_map_get_info_by_fd(map_fd, &map_info, &map_info_len);
5412 err = bpf_get_map_info_from_fdinfo(map_fd, &map_info);
5419 return (map_info.type == map->def.type &&
5420 map_info.key_size == map->def.key_size &&
5421 map_info.value_size == map->def.value_size &&
5422 map_info.max_entries == map->def.max_entries &&
5423 map_info.map_flags == map->def.map_flags &&
[all …]
/third_party/libbpf/.github/actions/build-selftests/
Dvmlinux.h39718 struct map_info { struct
39719 struct map_info *next; argument