Searched refs:key_values (Results 1 – 8 of 8) sorted by relevance
/third_party/mindspore/mindspore/core/ir/dtype/ |
D | container.h | 134 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/ |
D | preprocess_parser.cc | 109 auto key_values = SplitStringToVector(str, ','); in ParseCalibratePath() local 110 for (const auto &key_value : key_values) { in ParseCalibratePath()
|
/third_party/libevdev/libevdev/ |
D | libevdev.c | 503 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()
|
D | libevdev-int.h | 91 unsigned long key_values[NLONGS(KEY_CNT)]; member
|
/third_party/mindspore/mindspore/core/abstract/ |
D | abstract_value.cc | 669 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()
|
D | abstract_value.h | 486 …t AbstractDictionary(const std::vector<AbstractAttribute> &key_values) : key_values_(key_values) {} in AbstractDictionary() argument
|
/third_party/mindspore/mindspore/core/ir/ |
D | value.h | 161 …onary(const std::vector<std::pair<std::string, ValuePtr>> &key_values) : key_values_(key_values) {}
|
/third_party/mindspore/mindspore/ccsrc/pipeline/jit/parse/ |
D | data_converter.cc | 201 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()
|