Lines Matching refs:Signed
124 DenseMap<Value *, unsigned> &getValue2Index(bool Signed) { in getValue2Index() argument
125 return Signed ? SignedValue2Index : UnsignedValue2Index; in getValue2Index()
127 const DenseMap<Value *, unsigned> &getValue2Index(bool Signed) const { in getValue2Index()
128 return Signed ? SignedValue2Index : UnsignedValue2Index; in getValue2Index()
131 ConstraintSystem &getCS(bool Signed) { in getCS() argument
132 return Signed ? SignedCS : UnsignedCS; in getCS()
134 const ConstraintSystem &getCS(bool Signed) const { in getCS()
135 return Signed ? SignedCS : UnsignedCS; in getCS()
138 void popLastConstraint(bool Signed) { getCS(Signed).popLastConstraint(); } in popLastConstraint() argument
139 void popLastNVariables(bool Signed, unsigned N) { in popLastNVariables() argument
140 getCS(Signed).popLastNVariables(N); in popLastNVariables()