Home
last modified time | relevance | path

Searched refs:key_parent (Results 1 – 2 of 2) sorted by relevance

/third_party/mindspore/mindspore/ccsrc/utils/
Dunion_find_set.h40 T key_parent = key; in Find() local
41 auto iter = union_find_set_.find(key_parent); in Find()
43 MS_LOG(EXCEPTION) << "union_find_set_ cannot find key " << key_parent; in Find()
45 while (key_parent != iter->second) { in Find()
46 key_parent = iter->second; in Find()
47 iter = union_find_set_.find(key_parent); in Find()
49 MS_LOG(EXCEPTION) << "union_find_set_ cannot find key " << key_parent; in Find()
55 while (tmp != key_parent) { in Find()
61 union_find_set_[tmp] = key_parent; in Find()
64 return key_parent; in Find()
/third_party/libxml2/
Drngparser.c115 const xmlChar *key_parent; member
230 (str == ctxt->key_parent) || in xmlCRNGIsKeyword()
950 } else if (token->token == ctxt->key_parent) { in xmlParseCRNG_primary()
1475 ctxt.key_parent = xmlDictLookup(ctxt.dict, BAD_CAST "parent", -1); in xmlConvertCRNG()