Lines Matching refs:Signed
287 DenseMap<Value *, unsigned> &getValue2Index(bool Signed) { in getValue2Index() argument
288 return Signed ? SignedCS.getValue2Index() : UnsignedCS.getValue2Index(); in getValue2Index()
290 const DenseMap<Value *, unsigned> &getValue2Index(bool Signed) const { in getValue2Index()
291 return Signed ? SignedCS.getValue2Index() : UnsignedCS.getValue2Index(); in getValue2Index()
294 ConstraintSystem &getCS(bool Signed) { in getCS() argument
295 return Signed ? SignedCS : UnsignedCS; in getCS()
297 const ConstraintSystem &getCS(bool Signed) const { in getCS()
298 return Signed ? SignedCS : UnsignedCS; in getCS()
301 void popLastConstraint(bool Signed) { getCS(Signed).popLastConstraint(); } in popLastConstraint() argument
302 void popLastNVariables(bool Signed, unsigned N) { in popLastNVariables() argument
303 getCS(Signed).popLastNVariables(N); in popLastNVariables()