Lines Matching defs:ConstraintTy
223 struct ConstraintTy { struct
224 SmallVector<int64_t, 8> Coefficients;
225 SmallVector<ConditionTy, 2> Preconditions;
227 SmallVector<SmallVector<int64_t, 8>> ExtraInfo;
229 bool IsSigned = false;
233 ConstraintTy(SmallVector<int64_t, 8> Coefficients, bool IsSigned, bool IsEq, in ConstraintTy() function
238 unsigned size() const { return Coefficients.size(); } in size()
240 unsigned empty() const { return Coefficients.empty(); } in empty()
246 bool isEq() const { return IsEq; } in isEq()
248 bool isNe() const { return IsNe; } in isNe()
258 bool IsEq = false;
259 bool IsNe = false;