/third_party/libnl/lib/idiag/ |
D | idiag_meminfo_obj.c | 29 void idiagnl_meminfo_get(struct idiagnl_meminfo *minfo) in idiagnl_meminfo_get() argument 31 nl_object_get((struct nl_object *) minfo); in idiagnl_meminfo_get() 34 void idiagnl_meminfo_put(struct idiagnl_meminfo *minfo) in idiagnl_meminfo_put() argument 36 nl_object_put((struct nl_object *) minfo); in idiagnl_meminfo_put() 43 uint32_t idiagnl_meminfo_get_rmem(const struct idiagnl_meminfo *minfo) in idiagnl_meminfo_get_rmem() argument 45 return minfo->idiag_rmem; in idiagnl_meminfo_get_rmem() 48 void idiagnl_meminfo_set_rmem(struct idiagnl_meminfo *minfo, uint32_t rmem) in idiagnl_meminfo_set_rmem() argument 50 minfo->idiag_rmem = rmem; in idiagnl_meminfo_set_rmem() 53 uint32_t idiagnl_meminfo_get_wmem(const struct idiagnl_meminfo *minfo) in idiagnl_meminfo_get_wmem() argument 55 return minfo->idiag_wmem; in idiagnl_meminfo_get_wmem() [all …]
|
D | idiag_msg_obj.c | 390 void idiagnl_msg_set_meminfo(struct idiagnl_msg *msg, struct idiagnl_meminfo *minfo) in idiagnl_msg_set_meminfo() argument 395 idiagnl_meminfo_get(minfo); in idiagnl_msg_set_meminfo() 396 msg->idiag_meminfo = minfo; in idiagnl_msg_set_meminfo() 781 struct idiagnl_meminfo *minfo = idiagnl_meminfo_alloc(); in idiagnl_msg_parse() local 784 if (!minfo) in idiagnl_msg_parse() 790 idiagnl_meminfo_set_rmem(minfo, raw_minfo->idiag_rmem); in idiagnl_msg_parse() 791 idiagnl_meminfo_set_wmem(minfo, raw_minfo->idiag_wmem); in idiagnl_msg_parse() 792 idiagnl_meminfo_set_fmem(minfo, raw_minfo->idiag_fmem); in idiagnl_msg_parse() 793 idiagnl_meminfo_set_tmem(minfo, raw_minfo->idiag_tmem); in idiagnl_msg_parse() 795 msg->idiag_meminfo = minfo; in idiagnl_msg_parse()
|
/third_party/gstreamer/gstplugins_base/gst-libs/gst/video/ |
D | video-hdr.c | 53 gst_video_mastering_display_info_init (GstVideoMasteringDisplayInfo * minfo) in gst_video_mastering_display_info_init() argument 55 g_return_if_fail (minfo != NULL); in gst_video_mastering_display_info_init() 57 memset (minfo, 0, sizeof (GstVideoMasteringDisplayInfo)); in gst_video_mastering_display_info_init() 73 minfo, const gchar * mastering) in gst_video_mastering_display_info_from_string() 81 g_return_val_if_fail (minfo != NULL, FALSE); in gst_video_mastering_display_info_from_string() 89 for (i = 0; i < G_N_ELEMENTS (minfo->display_primaries); i++) { in gst_video_mastering_display_info_from_string() 94 minfo->display_primaries[i].x = (guint16) val; in gst_video_mastering_display_info_from_string() 100 minfo->display_primaries[i].y = (guint16) val; in gst_video_mastering_display_info_from_string() 107 minfo->white_point.x = (guint16) val; in gst_video_mastering_display_info_from_string() 113 minfo->white_point.y = (guint16) val; in gst_video_mastering_display_info_from_string() [all …]
|
D | video-hdr.h | 77 void gst_video_mastering_display_info_init (GstVideoMasteringDisplayInfo * minfo); 80 gboolean gst_video_mastering_display_info_from_string (GstVideoMasteringDisplayInfo * minfo, 84 gchar * gst_video_mastering_display_info_to_string (const GstVideoMasteringDisplayInfo * minfo… 87 gboolean gst_video_mastering_display_info_is_equal (const GstVideoMasteringDisplayInfo * minfo, 91 gboolean gst_video_mastering_display_info_from_caps (GstVideoMasteringDisplayInfo * minfo, 95 gboolean gst_video_mastering_display_info_add_to_caps (const GstVideoMasteringDisplayInfo * minfo,
|
/third_party/glib/gio/tests/ |
D | gdbus-introspection.c | 144 GDBusMethodInfo *minfo; in test_generate() local 183 minfo = g_dbus_interface_info_lookup_method (iinfo, "PairReturn"); in test_generate() 184 …g_assert_cmpstr (g_dbus_annotation_info_lookup (minfo->annotations, "org.freedesktop.DBus.GLib.Asy… in test_generate() 185 arginfo = minfo->in_args[0]; in test_generate() 188 g_assert (minfo->in_args[1] == NULL); in test_generate() 189 arginfo = minfo->out_args[0]; in test_generate() 192 g_assert (minfo->out_args[1] == NULL); in test_generate() 226 GDBusMethodInfo *minfo; in test_default_direction() local 253 minfo = g_dbus_interface_info_lookup_method (iinfo, "Sleep"); in test_default_direction() 254 g_assert (minfo->in_args != NULL); in test_default_direction() [all …]
|
/third_party/gstreamer/gstplugins_bad/sys/androidmedia/ |
D | gstamcaudiodec.c | 509 GstMapInfo minfo; in gst_amc_audio_dec_loop() local 525 gst_buffer_map (outbuf, &minfo, GST_MAP_WRITE); in gst_amc_audio_dec_loop() 531 dest = (gint16 *) minfo.data; in gst_amc_audio_dec_loop() 542 orc_memcpy (minfo.data, buf->data + buffer_info.offset, buffer_info.size); in gst_amc_audio_dec_loop() 544 gst_buffer_unmap (outbuf, &minfo); in gst_amc_audio_dec_loop() 913 GstMapInfo minfo; in gst_amc_audio_dec_set_format() local 916 gst_buffer_map (codec_data, &minfo, GST_MAP_READ); in gst_amc_audio_dec_set_format() 917 data = g_memdup2 (minfo.data, minfo.size); in gst_amc_audio_dec_set_format() 919 gst_amc_format_set_buffer (format, "csd-0", data, minfo.size, &err); in gst_amc_audio_dec_set_format() 922 gst_buffer_unmap (codec_data, &minfo); in gst_amc_audio_dec_set_format() [all …]
|
D | gstamcvideodec.c | 2101 GstMapInfo minfo; in gst_amc_video_dec_handle_frame() local 2104 memset (&minfo, 0, sizeof (minfo)); in gst_amc_video_dec_handle_frame() 2125 gst_buffer_map (frame->input_buffer, &minfo, GST_MAP_READ); in gst_amc_video_dec_handle_frame() 2127 while (offset < minfo.size) { in gst_amc_video_dec_handle_frame() 2186 buffer_info.size = MIN (minfo.size - offset, buf->size); in gst_amc_video_dec_handle_frame() 2190 orc_memcpy (buf->data, minfo.data + offset, buffer_info.size); in gst_amc_video_dec_handle_frame() 2198 timestamp_offset = gst_util_uint64_scale (offset, duration, minfo.size); in gst_amc_video_dec_handle_frame() 2234 gst_buffer_unmap (frame->input_buffer, &minfo); in gst_amc_video_dec_handle_frame() 2243 if (minfo.data) in gst_amc_video_dec_handle_frame() 2244 gst_buffer_unmap (frame->input_buffer, &minfo); in gst_amc_video_dec_handle_frame() [all …]
|
/third_party/gstreamer/gstplugins_bad/gst/videoparsers/ |
D | gstvc1parse.c | 637 GstMapInfo minfo; in gst_vc1_parse_detect() local 644 if (!gst_buffer_map (buffer, &minfo, GST_MAP_READ)) in gst_vc1_parse_detect() 647 data = minfo.data; in gst_vc1_parse_detect() 648 size = minfo.size; in gst_vc1_parse_detect() 693 gst_buffer_unmap (buffer, &minfo); in gst_vc1_parse_detect() 700 gst_buffer_unmap (buffer, &minfo); in gst_vc1_parse_detect() 715 gst_buffer_unmap (buffer, &minfo); in gst_vc1_parse_detect() 724 gst_buffer_unmap (buffer, &minfo); in gst_vc1_parse_detect() 788 GstMapInfo minfo; in gst_vc1_parse_make_sequence_layer() local 791 gst_buffer_map (seq_layer_buffer, &minfo, GST_MAP_WRITE); in gst_vc1_parse_make_sequence_layer() [all …]
|
/third_party/gstreamer/gstplugins_bad/sys/nvcodec/ |
D | gstnvh265enc.c | 427 GstVideoMasteringDisplayInfo * minfo, guint * size) in gst_nv_h265_enc_create_mastering_display_sei_nal() argument 440 minfo->display_primaries[0].x, minfo->display_primaries[0].y, in gst_nv_h265_enc_create_mastering_display_sei_nal() 441 minfo->display_primaries[1].x, minfo->display_primaries[1].y, in gst_nv_h265_enc_create_mastering_display_sei_nal() 442 minfo->display_primaries[2].x, minfo->display_primaries[2].y, in gst_nv_h265_enc_create_mastering_display_sei_nal() 443 minfo->white_point.x, minfo->white_point.y, in gst_nv_h265_enc_create_mastering_display_sei_nal() 444 minfo->max_display_mastering_luminance, in gst_nv_h265_enc_create_mastering_display_sei_nal() 445 minfo->min_display_mastering_luminance); in gst_nv_h265_enc_create_mastering_display_sei_nal() 460 minfo->display_primaries[(i + 1) % 3].x); in gst_nv_h265_enc_create_mastering_display_sei_nal() 462 minfo->display_primaries[(i + 1) % 3].y); in gst_nv_h265_enc_create_mastering_display_sei_nal() 465 gst_byte_writer_put_uint16_be (&br, minfo->white_point.x); in gst_nv_h265_enc_create_mastering_display_sei_nal() [all …]
|
/third_party/gstreamer/gstplugins_bad/sys/d3d11/ |
D | gstd3d11screencapturedevice.cpp | 309 const MONITORINFOEXW * minfo, const DEVMODEW * dev_mode, in create_device() argument 336 device_name = converter.to_bytes (minfo->szDevice); in create_device() 342 if ((minfo->dwFlags & MONITORINFOF_PRIMARY) != 0) in create_device() 406 MONITORINFOEXW minfo; in gst_d3d11_screen_capture_device_provider_probe() local 423 minfo.cbSize = sizeof (MONITORINFOEXW); in gst_d3d11_screen_capture_device_provider_probe() 424 if (!GetMonitorInfoW (desc.Monitor, &minfo)) in gst_d3d11_screen_capture_device_provider_probe() 430 if (!EnumDisplaySettingsW (minfo.szDevice, in gst_d3d11_screen_capture_device_provider_probe() 437 if (!get_monitor_name (&minfo, &target) || in gst_d3d11_screen_capture_device_provider_probe() 442 dev = create_device (&adapter_desc, &desc, &minfo, &dev_mode, &target); in gst_d3d11_screen_capture_device_provider_probe()
|
D | gstd3d11pluginutils.cpp | 138 gst_d3d11_hdr_meta_data_to_dxgi (GstVideoMasteringDisplayInfo * minfo, in gst_d3d11_hdr_meta_data_to_dxgi() argument 145 if (minfo) { in gst_d3d11_hdr_meta_data_to_dxgi() 146 dxgi_hdr10->RedPrimary[0] = minfo->display_primaries[0].x; in gst_d3d11_hdr_meta_data_to_dxgi() 147 dxgi_hdr10->RedPrimary[1] = minfo->display_primaries[0].y; in gst_d3d11_hdr_meta_data_to_dxgi() 148 dxgi_hdr10->GreenPrimary[0] = minfo->display_primaries[1].x; in gst_d3d11_hdr_meta_data_to_dxgi() 149 dxgi_hdr10->GreenPrimary[1] = minfo->display_primaries[1].y; in gst_d3d11_hdr_meta_data_to_dxgi() 150 dxgi_hdr10->BluePrimary[0] = minfo->display_primaries[2].x; in gst_d3d11_hdr_meta_data_to_dxgi() 151 dxgi_hdr10->BluePrimary[1] = minfo->display_primaries[2].y; in gst_d3d11_hdr_meta_data_to_dxgi() 153 dxgi_hdr10->WhitePoint[0] = minfo->white_point.x; in gst_d3d11_hdr_meta_data_to_dxgi() 154 dxgi_hdr10->WhitePoint[1] = minfo->white_point.y; in gst_d3d11_hdr_meta_data_to_dxgi() [all …]
|
/third_party/gstreamer/gstplugins_bad/gst/audiolatency/ |
D | gstaudiolatency.c | 318 GstMapInfo minfo; in buffer_has_wave() local 333 ret = gst_memory_map (memory, &minfo, GST_MAP_READ); in buffer_has_wave() 336 ret = gst_buffer_map (buffer, &minfo, GST_MAP_READ); in buffer_has_wave() 351 fdata = (gfloat *) minfo.data; in buffer_has_wave() 352 fsize = minfo.size / sizeof (gfloat); in buffer_has_wave() 377 gst_memory_unmap (memory, &minfo); in buffer_has_wave() 379 gst_buffer_unmap (buffer, &minfo); in buffer_has_wave()
|
/third_party/gptfdisk/ |
D | diskio-unix.cc | 158 struct dk_minfo minfo; in GetBlockSize() local 171 err = ioctl(fd, DKIOCGMEDIAINFO, &minfo); in GetBlockSize() 173 blockSize = minfo.dki_lbsize; in GetBlockSize() 437 struct dk_minfo minfo; in DiskSize() local 456 *err = ioctl(fd, DKIOCGMEDIAINFO, &minfo); in DiskSize() 458 sectors = minfo.dki_capacity; in DiskSize()
|
/third_party/flutter/skia/modules/skottie/src/effects/ |
D | Effects.cpp | 141 const auto minfo = this->onMakeMask(); in apply() local 143 fMaskEffectNode->setVisible(minfo.fVisible); in apply() 144 fMaskNode->setMaskFilter(std::move(minfo.fMask)); in apply()
|
/third_party/gstreamer/gstplugins_good/ext/vpx/ |
D | gstvpxdec.c | 583 GstMapInfo minfo; in gst_vpx_dec_open_codec() local 592 if (!gst_buffer_map (frame->input_buffer, &minfo, GST_MAP_READ)) { in gst_vpx_dec_open_codec() 598 minfo.data, minfo.size, &stream_info); in gst_vpx_dec_open_codec() 600 gst_buffer_unmap (frame->input_buffer, &minfo); in gst_vpx_dec_open_codec() 679 GstMapInfo minfo; in gst_vpx_dec_handle_frame() local 714 if (!gst_buffer_map (frame->input_buffer, &minfo, GST_MAP_READ)) { in gst_vpx_dec_handle_frame() 721 minfo.data, minfo.size, NULL, decoder_deadline); in gst_vpx_dec_handle_frame() 723 gst_buffer_unmap (frame->input_buffer, &minfo); in gst_vpx_dec_handle_frame()
|
/third_party/gstreamer/gstplugins_bad/ext/rsvg/ |
D | gstrsvgdec.c | 161 GstMapInfo minfo; in gst_rsvg_decode_image() local 167 if (!gst_buffer_map (buffer, &minfo, GST_MAP_READ)) { in gst_rsvg_decode_image() 171 handle = rsvg_handle_new_from_data (minfo.data, minfo.size, &error); in gst_rsvg_decode_image() 251 gst_buffer_unmap (buffer, &minfo); in gst_rsvg_decode_image()
|
/third_party/gstreamer/gstplugins_base/ext/theora/ |
D | gsttheoradec.c | 312 GstMapInfo minfo; in theora_dec_set_format() local 318 gst_buffer_map (buffer, &minfo, GST_MAP_READ); in theora_dec_set_format() 321 size = minfo.size; in theora_dec_set_format() 322 data = (guint8 *) minfo.data; in theora_dec_set_format() 353 gst_buffer_unmap (buffer, &minfo); in theora_dec_set_format() 857 GstMapInfo minfo; in theora_dec_decode_buffer() local 860 gst_buffer_map (buf, &minfo, GST_MAP_READ); in theora_dec_decode_buffer() 861 packet.packet = minfo.data; in theora_dec_decode_buffer() 862 packet.bytes = minfo.size; in theora_dec_decode_buffer() 890 gst_buffer_unmap (buf, &minfo); in theora_dec_decode_buffer()
|
/third_party/skia/modules/skottie/src/effects/ |
D | Effects.cpp | 192 const auto minfo = this->onMakeMask(); in onSync() local 194 fMaskEffectNode->setVisible(minfo.fVisible); in onSync() 195 fMaskEffectNode->setShader(std::move(minfo.fMaskShader)); in onSync()
|
/third_party/gstreamer/gstplugins_bad/ext/aom/ |
D | gstav1dec.c | 418 GstMapInfo minfo; in gst_av1_dec_handle_frame() local 435 if (!gst_buffer_map (frame->input_buffer, &minfo, GST_MAP_READ)) { in gst_av1_dec_handle_frame() 441 status = aom_codec_decode (&av1dec->decoder, minfo.data, minfo.size, NULL); in gst_av1_dec_handle_frame() 443 gst_buffer_unmap (frame->input_buffer, &minfo); in gst_av1_dec_handle_frame()
|
/third_party/flutter/skia/third_party/externals/sdl/src/video/windows/ |
D | SDL_windowsmodes.c | 359 MONITORINFO minfo; in WIN_GetDisplayUsableBounds() local 366 SDL_zero(minfo); in WIN_GetDisplayUsableBounds() 367 minfo.cbSize = sizeof (MONITORINFO); in WIN_GetDisplayUsableBounds() 368 rc = GetMonitorInfo(hmon, &minfo); in WIN_GetDisplayUsableBounds() 376 work = &minfo.rcWork; in WIN_GetDisplayUsableBounds()
|
/third_party/gstreamer/gstplugins_good/ext/libpng/ |
D | gstpngenc.c | 236 GstMapInfo minfo; in user_write_data() local 249 if (!gst_memory_map (mem, &minfo, GST_MAP_WRITE)) { in user_write_data() 259 memcpy (minfo.data, data, length); in user_write_data() 260 gst_memory_unmap (mem, &minfo); in user_write_data()
|
/third_party/gstreamer/gst_libav/ext/libav/ |
D | gstavviddec.c | 1467 GstVideoMasteringDisplayInfo minfo; in gst_ffmpegviddec_negotiate() local 1471 sd->data, &minfo)) { in gst_ffmpegviddec_negotiate() 1479 minfo.display_primaries[0].x, minfo.display_primaries[0].y, in gst_ffmpegviddec_negotiate() 1480 minfo.display_primaries[1].x, minfo.display_primaries[1].y, in gst_ffmpegviddec_negotiate() 1481 minfo.display_primaries[2].x, minfo.display_primaries[2].y, in gst_ffmpegviddec_negotiate() 1482 minfo.white_point.x, minfo.white_point.y, in gst_ffmpegviddec_negotiate() 1483 minfo.max_display_mastering_luminance, in gst_ffmpegviddec_negotiate() 1484 minfo.min_display_mastering_luminance); in gst_ffmpegviddec_negotiate() 1486 if (!gst_video_mastering_display_info_add_to_caps (&minfo, in gst_ffmpegviddec_negotiate() 2055 GstMapInfo minfo; in gst_ffmpegviddec_handle_frame() local [all …]
|
/third_party/node/deps/icu-small/source/i18n/ |
D | tzgnames.cpp | 163 GMatchInfo *minfo = (GMatchInfo *)fMatches->elementAt(index); in getGenericNameType() local 164 if (minfo != NULL) { in getGenericNameType() 165 return static_cast<UTimeZoneGenericNameType>(minfo->gnameInfo->type); in getGenericNameType() 172 ZMatchInfo *minfo = (ZMatchInfo *)fMatches->elementAt(index); in getMatchLength() local 173 if (minfo != NULL) { in getMatchLength() 174 return minfo->matchLength; in getMatchLength() 181 GMatchInfo *minfo = (GMatchInfo *)fMatches->elementAt(index); in getTimeZoneID() local 182 if (minfo != NULL && minfo->gnameInfo->tzID != NULL) { in getTimeZoneID() 183 tzID.setTo(TRUE, minfo->gnameInfo->tzID, -1); in getTimeZoneID()
|
/third_party/icu/icu4c/source/i18n/ |
D | tzgnames.cpp | 163 GMatchInfo *minfo = (GMatchInfo *)fMatches->elementAt(index); in getGenericNameType() local 164 if (minfo != NULL) { in getGenericNameType() 165 return static_cast<UTimeZoneGenericNameType>(minfo->gnameInfo->type); in getGenericNameType() 172 ZMatchInfo *minfo = (ZMatchInfo *)fMatches->elementAt(index); in getMatchLength() local 173 if (minfo != NULL) { in getMatchLength() 174 return minfo->matchLength; in getMatchLength() 181 GMatchInfo *minfo = (GMatchInfo *)fMatches->elementAt(index); in getTimeZoneID() local 182 if (minfo != NULL && minfo->gnameInfo->tzID != NULL) { in getTimeZoneID() 183 tzID.setTo(TRUE, minfo->gnameInfo->tzID, -1); in getTimeZoneID()
|
/third_party/skia/third_party/externals/icu/source/i18n/ |
D | tzgnames.cpp | 163 GMatchInfo *minfo = (GMatchInfo *)fMatches->elementAt(index); in getGenericNameType() local 164 if (minfo != NULL) { in getGenericNameType() 165 return static_cast<UTimeZoneGenericNameType>(minfo->gnameInfo->type); in getGenericNameType() 172 ZMatchInfo *minfo = (ZMatchInfo *)fMatches->elementAt(index); in getMatchLength() local 173 if (minfo != NULL) { in getMatchLength() 174 return minfo->matchLength; in getMatchLength() 181 GMatchInfo *minfo = (GMatchInfo *)fMatches->elementAt(index); in getTimeZoneID() local 182 if (minfo != NULL && minfo->gnameInfo->tzID != NULL) { in getTimeZoneID() 183 tzID.setTo(TRUE, minfo->gnameInfo->tzID, -1); in getTimeZoneID()
|