Searched refs:ECValue (Results 1 – 1 of 1) sorted by relevance
71 class ECValue {74 mutable const ECValue *Leader, *Next;79 ECValue(const ElemTy &Elt) in ECValue() function80 : Leader(this), Next((ECValue*)(intptr_t)1), Data(Elt) {} in ECValue()82 const ECValue *getLeader() const { in getLeader()89 const ECValue *getEndOfList() const { in getEndOfList()94 void setNext(const ECValue *NewNext) const { in setNext()96 Next = (const ECValue*)((intptr_t)NewNext | (intptr_t)isLeader()); in setNext()100 ECValue(const ECValue &RHS) : Leader(this), Next((ECValue*)(intptr_t)1), in ECValue() function109 const ECValue *getNext() const { in getNext()[all …]