Home
last modified time | relevance | path

Searched refs:v_list (Results 1 – 4 of 4) sorted by relevance

/third_party/gstreamer/gstplugins_good/ext/flac/
Dgstflacenc.c752 GValue v_list = { 0, }; in gst_flac_enc_generate_sink_caps() local
756 g_value_init (&v_list, GST_TYPE_LIST); in gst_flac_enc_generate_sink_caps()
761 gst_value_list_append_value (&v_list, &v); in gst_flac_enc_generate_sink_caps()
763 gst_value_list_append_value (&v_list, &v); in gst_flac_enc_generate_sink_caps()
765 gst_value_list_append_value (&v_list, &v); in gst_flac_enc_generate_sink_caps()
767 gst_value_list_append_value (&v_list, &v); in gst_flac_enc_generate_sink_caps()
771 gst_structure_take_value (s, "format", &v_list); in gst_flac_enc_generate_sink_caps()
/third_party/mindspore/mindspore/ccsrc/minddata/mindrecord/io/
Dshard_writer.cc995 std::vector<int> v_list(shard_count_); in BreakIntoShards() local
996 std::iota(v_list.begin(), v_list.end(), 0); in BreakIntoShards()
999 std::shuffle(v_list.begin(), v_list.end(), g); in BreakIntoShards()
1000 std::unordered_set<int> set(v_list.begin(), v_list.begin() + remains); in BreakIntoShards()
/third_party/mindspore/mindspore/run_check/
D_check_version.py274 v_list = str([x for x in self.version])
/third_party/ffmpeg/libavcodec/
Dac3enc.c1890 static int validate_float_option(float v, const float *v_list, int v_list_size) in validate_float_option() argument
1895 if (v < (v_list[i] + FLT_OPTION_THRESHOLD) && in validate_float_option()
1896 v > (v_list[i] - FLT_OPTION_THRESHOLD)) in validate_float_option()