Home
last modified time | relevance | path

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

/llvm-project-15.0.7/mlir/lib/IR/
H A DOperationSupport.cpp34 dictionarySorted.setPointerAndInt(attributes, true); in NamedAttrList()
49 dictionarySorted.setPointerAndInt(nullptr, true); in findDuplicate()
56 dictionarySorted.setPointerAndInt(nullptr, true); in getDictionary()
58 if (!dictionarySorted.getPointer()) in getDictionary()
60 return dictionarySorted.getPointer().cast<DictionaryAttr>(); in getDictionary()
71 dictionarySorted.setPointerAndInt(nullptr, true); in assign()
76 dictionarySorted.setInt(attrs.empty() || attrs.back() < newAttribute); in push_back()
77 dictionarySorted.setPointer(nullptr); in push_back()
117 dictionarySorted.setPointer(nullptr); in set()
127 dictionarySorted.setPointer(nullptr); in set()
[all …]
/llvm-project-15.0.7/mlir/include/mlir/IR/
H A DOperationSupport.h492 NamedAttrList() : dictionarySorted({}, true) {} in NamedAttrList()
534 dictionarySorted.setPointerAndInt(nullptr, false); in append()
598 bool isSorted() const { return dictionarySorted.getInt(); } in isSorted()
617 mutable llvm::PointerIntPair<Attribute, 1, bool> dictionarySorted; variable