Home
last modified time | relevance | path

Searched refs:key_values (Results 1 – 8 of 8) sorted by relevance

/third_party/mindspore/mindspore/core/ir/dtype/
Dcontainer.h134 explicit Dictionary(const std::vector<std::pair<std::string, TypePtr>> &key_values) in Dictionary() argument
135 : Object(kObjectTypeDictionary, false), key_values_(key_values) {} in Dictionary()
/third_party/mindspore/mindspore/lite/tools/converter/config_parser/
Dpreprocess_parser.cc109 auto key_values = SplitStringToVector(str, ','); in ParseCalibratePath() local
110 for (const auto &key_value : key_values) { in ParseCalibratePath()
/third_party/libevdev/libevdev/
Dlibevdev.c503 rc = ioctl(fd, EVIOCGKEY(sizeof(dev->key_values)), dev->key_values); in libevdev_set_fd()
585 old = bit_is_set(dev->key_values, i); in sync_key_state()
591 memcpy(dev->key_values, keystate, rc); in sync_key_state()
985 set_bit_state(dev->key_values, e->code, e->value != 0); in update_key_state()
1367 case EV_KEY: value = bit_is_set(dev->key_values, code); break; in libevdev_get_event_value()
Dlibevdev-int.h91 unsigned long key_values[NLONGS(KEY_CNT)]; member
/third_party/mindspore/mindspore/core/abstract/
Dabstract_value.cc669 std::vector<std::pair<std::string, TypePtr>> key_values; in BuildType() local
673 key_values.emplace_back(item.first, type); in BuildType()
675 return std::make_shared<Dictionary>(key_values); in BuildType()
750 std::vector<std::pair<std::string, ValuePtr>> key_values; in RealBuildValue() local
758 key_values.emplace_back(item.first, element_value); in RealBuildValue()
760 return std::make_shared<ValueDictionary>(key_values); in RealBuildValue()
Dabstract_value.h486 …t AbstractDictionary(const std::vector<AbstractAttribute> &key_values) : key_values_(key_values) {} in AbstractDictionary() argument
/third_party/mindspore/mindspore/core/ir/
Dvalue.h161 …onary(const std::vector<std::pair<std::string, ValuePtr>> &key_values) : key_values_(key_values) {}
/third_party/mindspore/mindspore/ccsrc/pipeline/jit/parse/
Ddata_converter.cc201 std::vector<std::pair<std::string, ValuePtr>> key_values; in ConvertDict() local
213 key_values.emplace_back(key, out); in ConvertDict()
215 return std::make_shared<ValueDictionary>(key_values); in ConvertDict()