Searched refs:ECValue (Results 1 – 1 of 1) sorted by relevance
69 class ECValue {72 mutable const ECValue *Leader, *Next;77 ECValue(const ElemTy &Elt) in ECValue() function78 : 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() function104 bool operator<(const ECValue &UFN) const { return Data < UFN.Data; }[all …]