Home
last modified time | relevance | path

Searched refs:dst_props (Results 1 – 17 of 17) sorted by relevance

/dports/graphics/appleseed/appleseed-2.1.0-beta/src/appleseed/renderer/kernel/denoising/
H A Ddenoiser.cpp90 const CanvasProperties& dst_props = dst.properties(); in deepimage_to_image() local
92 assert(src.getWidth() == dst_props.m_canvas_width); in deepimage_to_image()
93 assert(src.getHeight() == dst_props.m_canvas_height); in deepimage_to_image()
95 assert(dst_props.m_channel_count == 4); in deepimage_to_image()
97 for (size_t j = 0; j < dst_props.m_canvas_height; ++j) in deepimage_to_image()
99 for (size_t i = 0; i < dst_props.m_canvas_width; ++i) in deepimage_to_image()
/dports/multimedia/vapoursynth/vapoursynth-R54/src/core/
H A Dreorderfilters.c195 VSMap *dst_props = vsapi->getFramePropsRW(dst); in interleaveGetframe() local
197 int64_t durationNum = vsapi->propGetInt(dst_props, "_DurationNum", 0, &errNum); in interleaveGetframe()
198 int64_t durationDen = vsapi->propGetInt(dst_props, "_DurationDen", 0, &errDen); in interleaveGetframe()
201 vsapi->propSetInt(dst_props, "_DurationNum", durationNum, paReplace); in interleaveGetframe()
202 vsapi->propSetInt(dst_props, "_DurationDen", durationDen, paReplace); in interleaveGetframe()
417 VSMap *dst_props = vsapi->getFramePropsRW(dst); in selectEveryGetframe() local
419 int64_t durationNum = vsapi->propGetInt(dst_props, "_DurationNum", 0, &errNum); in selectEveryGetframe()
420 int64_t durationDen = vsapi->propGetInt(dst_props, "_DurationDen", 0, &errDen); in selectEveryGetframe()
423 vsapi->propSetInt(dst_props, "_DurationNum", durationNum, paReplace); in selectEveryGetframe()
424 vsapi->propSetInt(dst_props, "_DurationDen", durationDen, paReplace); in selectEveryGetframe()
H A Dvsresize.cpp359 void propagate_sar(const VSMap *src_props, VSMap *dst_props, const zimg_image_format &src_format, c… in propagate_sar() argument
365 if (vsapi->propNumElements(dst_props, "_SARDen") > 0) in propagate_sar()
366 sar_den = vsapi->propGetInt(dst_props, "_SARDen", 0, nullptr); in propagate_sar()
369 vsapi->propDeleteKey(dst_props, "_SARNum"); in propagate_sar()
370 vsapi->propDeleteKey(dst_props, "_SARDen"); in propagate_sar()
375 vsapi->propSetInt(dst_props, "_SARNum", sar_num, paReplace); in propagate_sar()
376 vsapi->propSetInt(dst_props, "_SARDen", sar_den, paReplace); in propagate_sar()
898 VSMap *dst_props = vsapi->getFramePropsRW(dst_frame); in real_get_frame() local
899 propagate_sar(src_props, dst_props, src_format, dst_format, vsapi); in real_get_frame()
900 export_frame_props(dst_format, dst_props, vsapi); in real_get_frame()
H A Dsimplefilters.c743 VSMap *dst_props = vsapi->getFramePropsRW(dst); in separateFieldsGetframe() local
744 vsapi->propSetInt(dst_props, "_Field", ((n & 1) ^ effectiveTFF), paReplace); in separateFieldsGetframe()
745 vsapi->propDeleteKey(dst_props, "_FieldBased"); in separateFieldsGetframe()
749 int64_t durationNum = vsapi->propGetInt(dst_props, "_DurationNum", 0, &errNum); in separateFieldsGetframe()
750 int64_t durationDen = vsapi->propGetInt(dst_props, "_DurationDen", 0, &errDen); in separateFieldsGetframe()
753 vsapi->propSetInt(dst_props, "_DurationNum", durationNum, paReplace); in separateFieldsGetframe()
754 vsapi->propSetInt(dst_props, "_DurationDen", durationDen, paReplace); in separateFieldsGetframe()
/dports/www/chromium-legacy/chromium-88.0.4324.182/third_party/angle/third_party/vulkan-validation-layers/src/tests/layers/
H A Ddevice_profile_api.cpp217 …lt EnumerateProperties(uint32_t src_count, const T *src_props, uint32_t *dst_count, T *dst_props) { in EnumerateProperties() argument
218 if (!dst_props || !src_props) { in EnumerateProperties()
224 memcpy(dst_props, src_props, sizeof(T) * copy_count); in EnumerateProperties()
/dports/graphics/vulkan-validation-layers/Vulkan-ValidationLayers-1.2.203/tests/layers/
H A Ddevice_profile_api.cpp238 …lt EnumerateProperties(uint32_t src_count, const T *src_props, uint32_t *dst_count, T *dst_props) { in EnumerateProperties() argument
239 if (!dst_props || !src_props) { in EnumerateProperties()
245 memcpy(dst_props, src_props, sizeof(T) * copy_count); in EnumerateProperties()
/dports/multimedia/gpac-mp4box/gpac-1.0.0/src/filter_core/
H A Dfilter_props.c936 GF_Err gf_props_merge_property(GF_PropertyMap *dst_props, GF_PropertyMap *src_props, gf_filter_prop… in gf_props_merge_property() argument
944 dst_props->timescale = src_props->timescale; in gf_props_merge_property()
961 if (!dst_props->hash_table[idx]) { in gf_props_merge_property()
962 dst_props->hash_table[idx] = gf_props_get_list(dst_props); in gf_props_merge_property()
963 if (!dst_props->hash_table[idx]) return GF_OUT_OF_MEM; in gf_props_merge_property()
965 e = gf_list_add(dst_props->hash_table[idx], prop); in gf_props_merge_property()
968 e = gf_list_add(dst_props->properties, prop); in gf_props_merge_property()
H A Dfilter_session.h99 GF_Err gf_props_merge_property(GF_PropertyMap *dst_props, GF_PropertyMap *src_props, gf_filter_prop…
H A Dfilter_pid.c4701 GF_PropertyMap *dst_props, *src_props, *old_dst_props=NULL; in gf_filter_pid_merge_properties_internal() local
4714 dst_props = check_new_pid_props(dst_pid, GF_FALSE); in gf_filter_pid_merge_properties_internal()
4716 if (!dst_props) { in gf_filter_pid_merge_properties_internal()
4734 gf_props_reset(dst_props); in gf_filter_pid_merge_properties_internal()
4736 GF_Err e = gf_props_merge_property(dst_props, old_dst_props, NULL, NULL); in gf_filter_pid_merge_properties_internal()
4739 return gf_props_merge_property(dst_props, src_props, filter_prop, cbk); in gf_filter_pid_merge_properties_internal()
/dports/multimedia/gpac-libgpac/gpac-1.0.0/src/filter_core/
H A Dfilter_props.c936 GF_Err gf_props_merge_property(GF_PropertyMap *dst_props, GF_PropertyMap *src_props, gf_filter_prop… in gf_props_merge_property() argument
944 dst_props->timescale = src_props->timescale; in gf_props_merge_property()
961 if (!dst_props->hash_table[idx]) { in gf_props_merge_property()
962 dst_props->hash_table[idx] = gf_props_get_list(dst_props); in gf_props_merge_property()
963 if (!dst_props->hash_table[idx]) return GF_OUT_OF_MEM; in gf_props_merge_property()
965 e = gf_list_add(dst_props->hash_table[idx], prop); in gf_props_merge_property()
968 e = gf_list_add(dst_props->properties, prop); in gf_props_merge_property()
H A Dfilter_session.h99 GF_Err gf_props_merge_property(GF_PropertyMap *dst_props, GF_PropertyMap *src_props, gf_filter_prop…
H A Dfilter_pid.c4701 GF_PropertyMap *dst_props, *src_props, *old_dst_props=NULL; in gf_filter_pid_merge_properties_internal() local
4714 dst_props = check_new_pid_props(dst_pid, GF_FALSE); in gf_filter_pid_merge_properties_internal()
4716 if (!dst_props) { in gf_filter_pid_merge_properties_internal()
4734 gf_props_reset(dst_props); in gf_filter_pid_merge_properties_internal()
4736 GF_Err e = gf_props_merge_property(dst_props, old_dst_props, NULL, NULL); in gf_filter_pid_merge_properties_internal()
4739 return gf_props_merge_property(dst_props, src_props, filter_prop, cbk); in gf_filter_pid_merge_properties_internal()
/dports/multimedia/vapoursynth/vapoursynth-R54/src/filters/eedi3/
H A Deedi3.c660 VSMap *dst_props = vsapi->getFramePropsRW(dst); in eedi3GetFrame() local
662 int64_t duration_num = vsapi->propGetInt(dst_props, "_DurationNum", 0, &err_num); in eedi3GetFrame()
663 int64_t duration_den = vsapi->propGetInt(dst_props, "_DurationDen", 0, &err_den); in eedi3GetFrame()
666 vsapi->propSetInt(dst_props, "_DurationNum", duration_num, paReplace); in eedi3GetFrame()
667 vsapi->propSetInt(dst_props, "_DurationDen", duration_den, paReplace); in eedi3GetFrame()
/dports/java/java-subversion/subversion-1.14.1/subversion/libsvn_wc/
H A Dwc_db_update_move.c1464 apr_hash_t *dst_props, in tc_editor_update_incoming_moved_file() argument
1584 new_version.props = dst_props; in tc_editor_update_incoming_moved_file()
1989 apr_hash_t *dst_props, in props_match() argument
1992 if (!src_props && !dst_props) in props_match()
1994 else if (!src_props || ! dst_props) in props_match()
2000 SVN_ERR(svn_prop_diffs(&propdiffs, src_props, dst_props, scratch_pool)); in props_match()
2018 apr_hash_t *src_props, *dst_props; in update_moved_away_node() local
2028 SVN_ERR(get_info(&dst_props, &dst_checksum, &dst_children, &dst_kind, in update_moved_away_node()
2059 SVN_ERR(props_match(&props_equal, src_props, dst_props, scratch_pool)); in update_moved_away_node()
2066 dst_props, src_props, scratch_pool)); in update_moved_away_node()
[all …]
/dports/devel/py-subversion/subversion-1.14.1/subversion/libsvn_wc/
H A Dwc_db_update_move.c1464 apr_hash_t *dst_props, in tc_editor_update_incoming_moved_file() argument
1584 new_version.props = dst_props; in tc_editor_update_incoming_moved_file()
1989 apr_hash_t *dst_props, in props_match() argument
1992 if (!src_props && !dst_props) in props_match()
1994 else if (!src_props || ! dst_props) in props_match()
2000 SVN_ERR(svn_prop_diffs(&propdiffs, src_props, dst_props, scratch_pool)); in props_match()
2018 apr_hash_t *src_props, *dst_props; in update_moved_away_node() local
2028 SVN_ERR(get_info(&dst_props, &dst_checksum, &dst_children, &dst_kind, in update_moved_away_node()
2059 SVN_ERR(props_match(&props_equal, src_props, dst_props, scratch_pool)); in update_moved_away_node()
2066 dst_props, src_props, scratch_pool)); in update_moved_away_node()
[all …]
/dports/security/subversion-gnome-keyring/subversion-1.14.1/subversion/libsvn_wc/
H A Dwc_db_update_move.c1464 apr_hash_t *dst_props, in tc_editor_update_incoming_moved_file() argument
1584 new_version.props = dst_props; in tc_editor_update_incoming_moved_file()
1989 apr_hash_t *dst_props, in props_match() argument
1992 if (!src_props && !dst_props) in props_match()
1994 else if (!src_props || ! dst_props) in props_match()
2000 SVN_ERR(svn_prop_diffs(&propdiffs, src_props, dst_props, scratch_pool)); in props_match()
2018 apr_hash_t *src_props, *dst_props; in update_moved_away_node() local
2028 SVN_ERR(get_info(&dst_props, &dst_checksum, &dst_children, &dst_kind, in update_moved_away_node()
2059 SVN_ERR(props_match(&props_equal, src_props, dst_props, scratch_pool)); in update_moved_away_node()
2066 dst_props, src_props, scratch_pool)); in update_moved_away_node()
[all …]
/dports/devel/p5-subversion/subversion-1.14.1/subversion/libsvn_wc/
H A Dwc_db_update_move.c1464 apr_hash_t *dst_props, in tc_editor_update_incoming_moved_file() argument
1584 new_version.props = dst_props; in tc_editor_update_incoming_moved_file()
1989 apr_hash_t *dst_props, in props_match() argument
1992 if (!src_props && !dst_props) in props_match()
1994 else if (!src_props || ! dst_props) in props_match()
2000 SVN_ERR(svn_prop_diffs(&propdiffs, src_props, dst_props, scratch_pool)); in props_match()
2018 apr_hash_t *src_props, *dst_props; in update_moved_away_node() local
2028 SVN_ERR(get_info(&dst_props, &dst_checksum, &dst_children, &dst_kind, in update_moved_away_node()
2059 SVN_ERR(props_match(&props_equal, src_props, dst_props, scratch_pool)); in update_moved_away_node()
2066 dst_props, src_props, scratch_pool)); in update_moved_away_node()
[all …]