Home
last modified time | relevance | path

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

/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/include/llvm/ADT/
DEquivalenceClasses.h69 class ECValue {
72 mutable const ECValue *Leader, *Next;
77 ECValue(const ElemTy &Elt) in ECValue() function
78 : Leader(this), Next((ECValue*)(intptr_t)1), Data(Elt) {} in ECValue()
80 const ECValue *getLeader() const { in getLeader()
87 const ECValue *getEndOfList() const { in getEndOfList()
92 void setNext(const ECValue *NewNext) const { in setNext()
94 Next = (const ECValue*)((intptr_t)NewNext | (intptr_t)isLeader()); in setNext()
98 ECValue(const ECValue &RHS) : Leader(this), Next((ECValue*)(intptr_t)1), in ECValue() function
104 bool operator<(const ECValue &UFN) const { return Data < UFN.Data; }
[all …]