Searched defs:ConstraintTy (Results 1 – 1 of 1) sorted by relevance
223 struct ConstraintTy { struct224 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() function238 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()[all …]