Home
last modified time | relevance | path

Searched refs:value_list (Results 1 – 25 of 44) sorted by relevance

12

/third_party/alsa-lib/src/ucm/
Dmain.c54 struct list_head *value_list, const char *identifier);
869 &device->value_list, in execute_component_seq()
870 &uc_mgr->active_verb->value_list, in execute_component_seq()
871 &uc_mgr->value_list); in execute_component_seq()
885 err = get_value1(uc_mgr, &value, &uc_mgr->value_list, key); in add_auto_value()
890 return uc_mgr_add_value(&uc_mgr->value_list, key, s); in add_auto_value()
931 &uc_mgr->value_list, NULL, NULL); in set_defaults()
1283 &verb->value_list, in set_verb()
1284 &uc_mgr->value_list, in set_verb()
1314 &modifier->value_list, in set_modifier()
[all …]
Ducm_local.h157 struct list_head value_list; member
182 struct list_head value_list; member
213 struct list_head value_list; member
249 struct list_head value_list; member
Dutils.c582 uc_mgr_free_value(&mod->value_list); in uc_mgr_free_modifier()
596 uc_mgr_free_value(&dev->value_list); in uc_mgr_free_device()
719 uc_mgr_free_value(&verb->value_list); in uc_mgr_free_verb()
731 uc_mgr_free_value(&uc_mgr->value_list); in uc_mgr_free_verb()
Dparser.c1104 INIT_LIST_HEAD(&modifier->value_list); in parse_modifier()
1179 err = parse_value(uc_mgr, &modifier->value_list, n); in parse_modifier()
1249 INIT_LIST_HEAD(&device->value_list); in parse_device()
1327 err = parse_value(uc_mgr, &device->value_list, n); in parse_device()
1646 err = parse_value(uc_mgr, &verb->value_list, n); in parse_verb()
1688 INIT_LIST_HEAD(&verb->value_list); in parse_verb_file()
2086 err = parse_value(uc_mgr, &uc_mgr->value_list, n); in parse_master_file()
/third_party/mindspore/mindspore/ccsrc/utils/
Dconvert_utils_py.cc168 auto value_list = value->cast<ValueDictionaryPtr>()->value(); in __anon00217d6e0802() local
170 for (const auto &value : value_list) { in __anon00217d6e0802()
251 auto value_list = value.cast<std::list<Any>>(); in AnyToPyData() local
253 for (auto &v : value_list) { in AnyToPyData()
258 auto value_list = value.cast<std::vector<Any>>(); in AnyToPyData() local
259 py::tuple rets(value_list.size()); in AnyToPyData()
260 for (size_t i = 0; i < value_list.size(); i++) { in AnyToPyData()
261 rets[i] = AnyToPyData(value_list[i]); in AnyToPyData()
357 auto value_list = value.cast<std::vector<Any>>(); in VectorToPyData() local
358 py::tuple any_tuple = py::tuple(value_list.size()); in VectorToPyData()
[all …]
Dconvert_utils.cc304 const auto &value_list = value_tuple->value(); in CountValueNum() local
305 for (const auto &value : value_list) { in CountValueNum()
/third_party/boost/libs/unordered/test/helpers/
Dequivalent.hpp66 typedef test::list<typename Container::value_type> value_list; typedef in test::unordered_equivalence_tester
67 value_list values_;
86 value_list copy(x.begin(), x.end()); in operator ()()
Dtracker.hpp35 typedef test::list<typename X1::value_type> value_list; in compare_range() typedef
36 value_list values1(x1.begin(), x1.end()); in compare_range()
37 value_list values2(x2.begin(), x2.end()); in compare_range()
/third_party/mindspore/tests/st/model_zoo_tests/
Dutils.py104 value_list = []
109 value_list.append(float(match_result.group(1)))
110 if not value_list:
114 return value_list
/third_party/mindspore/mindspore/core/ops/
Dreduce_sum.cc147 std::vector<ValuePtr> value_list; in InferShape() local
152 value_list.push_back(MakeValue(static_cast<int64_t>(*shape_data))); in InferShape()
158 value_list.push_back(MakeValue(static_cast<int64_t>(*shape_data2))); in InferShape()
162 axis_value = std::make_shared<ValueTuple>(value_list); in InferShape()
Ddropout_gen_mask.cc33 ShapeVector CalDynamicOutputShape(const ValuePtrList value_list) { in CalDynamicOutputShape() argument
35 size_t x_rank = value_list.size(); in CalDynamicOutputShape()
37 auto indexed_value = value_list[i]; in CalDynamicOutputShape()
/third_party/mindspore/tests/ut/cpp/pipeline/static_analysis/
Ddata_test.cc55 …std::vector<ValuePtr> value_list = {MakeValue(static_cast<int64_t>(1)), MakeValue(static_cast<int6… in TEST_F() local
58 ASSERT_TRUE(tup.size() == value_list.size()); in TEST_F()
59 for (int i = 0; i < value_list.size(); i++) { in TEST_F()
60 ASSERT_EQ(*tup[i], *value_list[i]); in TEST_F()
/third_party/mindspore/mindspore/ccsrc/frontend/parallel/graph_util/
Dgenerate_graph.cc104 std::vector<ValuePtr> value_list; in CreateTuple() local
105 (void)std::transform(tuple.begin(), tuple.end(), std::back_inserter(value_list), in CreateTuple()
107 ValueTuplePtr value_tuple_ptr = std::make_shared<ValueTuple>(value_list); in CreateTuple()
/third_party/mindspore/mindspore/ccsrc/pipeline/jit/parse/
Ddata_converter.cc154 std::vector<ValuePtr> value_list; in ConvertTuple() local
161 value_list.push_back(out); in ConvertTuple()
163 return std::make_shared<ValueTuple>(value_list); in ConvertTuple()
170 std::vector<ValuePtr> value_list; in ConvertList() local
177 value_list.push_back(out); in ConvertList()
179 return std::make_shared<ValueList>(value_list); in ConvertList()
185 std::vector<ValuePtr> value_list; in ConvertCellList() local
192 value_list.push_back(out); in ConvertCellList()
194 return std::make_shared<ValueTuple>(value_list); in ConvertCellList()
/third_party/node/deps/npm/node_modules/node-gyp/gyp/pylib/gyp/generator/
Dandroid.py903 def WriteList(self, value_list, variable=None, prefix='', argument
912 if value_list:
913 value_list = [quoter(prefix + l) for l in value_list]
915 value_list = [self.LocalPathify(l) for l in value_list]
916 values = ' \\\n\t' + ' \\\n\t'.join(value_list)
/third_party/node/tools/gyp/pylib/gyp/generator/
Dandroid.py970 value_list, argument
983 if value_list:
984 value_list = [quoter(prefix + value) for value in value_list]
986 value_list = [self.LocalPathify(value) for value in value_list]
987 values = " \\\n\t" + " \\\n\t".join(value_list)
/third_party/gstreamer/gstplugins_bad/gst-libs/gst/vulkan/xcb/
Dgstvkwindow_xcb.c215 uint32_t value_mask, value_list[32]; in gst_vulkan_window_xcb_create_window() local
230 value_list[0] = screen->black_pixel; in gst_vulkan_window_xcb_create_window()
231 value_list[1] = in gst_vulkan_window_xcb_create_window()
237 screen->root_visual, value_mask, value_list); in gst_vulkan_window_xcb_create_window()
/third_party/skia/third_party/externals/angle2/src/common/
Dgen_packed_gl_enums.py47 for (enum_name, value_list) in enums_dict.iteritems():
52 for (value_name, value_gl_name) in value_list.iteritems():
/third_party/flutter/skia/third_party/externals/angle2/src/common/
Dgen_packed_gl_enums.py37 for (enum_name, value_list) in enums_dict.iteritems():
42 for (value_name, value_gl_name) in value_list.iteritems():
/third_party/glib/glib/
Dgkeyfile.c2136 GString *value_list; in g_key_file_set_string_list() local
2142 value_list = g_string_sized_new (length * 128); in g_key_file_set_string_list()
2148 g_string_append (value_list, value); in g_key_file_set_string_list()
2149 g_string_append_c (value_list, key_file->list_separator); in g_key_file_set_string_list()
2154 g_key_file_set_value (key_file, group_name, key, value_list->str); in g_key_file_set_string_list()
2155 g_string_free (value_list, TRUE); in g_key_file_set_string_list()
2450 GString *value_list; in g_key_file_set_locale_string_list() local
2459 value_list = g_string_sized_new (length * 128); in g_key_file_set_locale_string_list()
2465 g_string_append (value_list, value); in g_key_file_set_locale_string_list()
2466 g_string_append_c (value_list, key_file->list_separator); in g_key_file_set_locale_string_list()
[all …]
/third_party/gstreamer/gstplugins_bad/sys/nvcodec/
Dgstnvh265dec.c971 GValue value_list = G_VALUE_INIT; in gst_nv_h265_dec_register() local
984 g_value_init (&value_list, GST_TYPE_LIST); in gst_nv_h265_dec_register()
988 gst_value_list_append_value (&value_list, &value); in gst_nv_h265_dec_register()
991 gst_value_list_append_value (&value_list, &value); in gst_nv_h265_dec_register()
994 gst_value_list_append_value (&value_list, &value); in gst_nv_h265_dec_register()
996 gst_caps_set_value (cdata->sink_caps, "stream-format", &value_list); in gst_nv_h265_dec_register()
998 g_value_unset (&value_list); in gst_nv_h265_dec_register()
/third_party/skia/third_party/externals/swiftshader/src/WSI/
DlibXCB.hpp25 …cb_gcontext_t cid, xcb_drawable_t drawable, uint32_t value_mask, const void *value_list) = nullptr;
/third_party/mindspore/mindspore/core/ir/
Dfunc_graph.cc519 …faultValues(const std::vector<std::string> &name_list, const std::vector<AnfNodePtr> &value_list) { in SetDefaultValues() argument
521 …std::all_of(value_list.begin(), value_list.end(), [](const AnfNodePtr &node) { return IsValueNode<… in SetDefaultValues()
522 if (value_list.empty()) { in SetDefaultValues()
527 this->parameter_default_value_[name_list[i]] = value_list[i]; in SetDefaultValues()
/third_party/mindspore/mindspore/ccsrc/frontend/optimizer/
Dclean.cc357 ValueTuplePtr ConvertValueListToValueTuple(const ValueListPtr &value_list, int64_t depth) { in ConvertValueListToValueTuple() argument
363 for (const auto &it : value_list->value()) { in ConvertValueListToValueTuple()
378 auto value_list = value->cast<ValueListPtr>(); in ConvertValueListNodeToValueTupleNode() local
379 MS_EXCEPTION_IF_NULL(value_list); in ConvertValueListNodeToValueTupleNode()
381 return std::make_shared<ValueNode>(ConvertValueListToValueTuple(value_list, depth)); in ConvertValueListNodeToValueTupleNode()
/third_party/mindspore/mindspore/ccsrc/fl/armour/cipher/
Dcipher_reconstruct.cc460 std::vector<clientshare_str> value_list; in ConvertSharesToShares() local
461 value_list.push_back(value); in ConvertSharesToShares()
462 … (void)des->emplace(std::pair<std::string, std::vector<clientshare_str>>(src_id, value_list)); in ConvertSharesToShares()

12