Home
last modified time | relevance | path

Searched refs:in_f (Results 1 – 10 of 10) sorted by relevance

/third_party/boost/boost/fusion/view/transform_view/
Dtransform_view_iterator.hpp39 transform_view_iterator(First const& in_first, F const& in_f) in transform_view_iterator()
40 : first(converter::call(in_first)), f(in_f) {} in transform_view_iterator()
65 transform_view_iterator2(First1 const& in_first1, First2 const& in_first2, F const& in_f) in transform_view_iterator2()
66 : first1(converter1::call(in_first1)), first2(converter2::call(in_first2)), f(in_f) {} in transform_view_iterator2()
Dtransform_view.hpp103 transform_view(Sequence& in_seq, F const& in_f) in transform_view()
105 , f(in_f) in transform_view()
/third_party/boost/libs/metaparse/tools/benchmark/
Dchar_stat.py16 with open(root, 'rb') as in_f:
17 for line in in_f:
Dbenchmark.py206 with open(os.path.join(src_dir, filename), 'rb') as in_f:
207 yield json.load(in_f)
/third_party/gstreamer/gstplugins_base/gst-libs/gst/audio/
Daudio-channel-mixer.c378 gint in_f[3] = { -1, -1, -1 }; in gst_audio_channel_mixer_fill_others() local
396 in_f, &in_has_front, in gst_audio_channel_mixer_fill_others()
416 gst_audio_channel_mixer_fill_one_other (matrix, in_f, out_c, in gst_audio_channel_mixer_fill_others()
455 in_f, out_c, RATIO_CENTER_FRONT); in gst_audio_channel_mixer_fill_others()
457 gst_audio_channel_mixer_fill_one_other (matrix, in_f, out_s, in gst_audio_channel_mixer_fill_others()
460 gst_audio_channel_mixer_fill_one_other (matrix, in_f, out_c, in gst_audio_channel_mixer_fill_others()
462 gst_audio_channel_mixer_fill_one_other (matrix, in_f, out_s, in gst_audio_channel_mixer_fill_others()
466 gst_audio_channel_mixer_fill_one_other (matrix, in_f, out_r, in gst_audio_channel_mixer_fill_others()
472 gst_audio_channel_mixer_fill_one_other (matrix, in_f, out_s, in gst_audio_channel_mixer_fill_others()
478 gst_audio_channel_mixer_fill_one_other (matrix, in_f, out_s, in gst_audio_channel_mixer_fill_others()
[all …]
/third_party/boost/boost/fusion/algorithm/transformation/detail/
Dreplace_if.hpp48 replacer_if(F in_f, T const& in_new_value) in replacer_if()
49 : f(in_f), new_value(in_new_value) {} in replacer_if()
/third_party/ffmpeg/libavfilter/
Dvf_chromaber_vulkan.c172 static int process_frames(AVFilterContext *avctx, AVFrame *out_f, AVFrame *in_f)
177 AVVkFrame *in = (AVVkFrame *)in_f->data[0];
252 ff_vk_add_exec_dep(avctx, s->exec, in_f, VK_PIPELINE_STAGE_TOP_OF_PIPE_BIT);
Dvf_avgblur_vulkan.c202 static int process_frames(AVFilterContext *avctx, AVFrame *out_f, AVFrame *tmp_f, AVFrame *in_f)
207 AVVkFrame *in = (AVVkFrame *)in_f->data[0];
307 ff_vk_add_exec_dep(avctx, s->exec, in_f, VK_PIPELINE_STAGE_TOP_OF_PIPE_BIT);
Dvf_scale_vulkan.c294 static int process_frames(AVFilterContext *avctx, AVFrame *out_f, AVFrame *in_f)
299 AVVkFrame *in = (AVVkFrame *)in_f->data[0];
380 ff_vk_add_exec_dep(avctx, s->exec, in_f, VK_PIPELINE_STAGE_TOP_OF_PIPE_BIT);
/third_party/mindspore/mindspore/ccsrc/backend/kernel_compiler/
Dcommon_utils.cc903 const float in_f = std::floor(in); in ComputeInterpolationWeights() local
904 interpolation[i].lower = std::max(static_cast<size_t>(in_f), static_cast<size_t>(0)); in ComputeInterpolationWeights()
906 interpolation[i].lerp = in - in_f; in ComputeInterpolationWeights()