Home | History | Annotate | Download | only in IR

Lines Matching refs:IsExact

2135 Constant *ConstantExpr::getUDiv(Constant *C1, Constant *C2, bool isExact) {
2137 isExact ? PossiblyExactOperator::IsExact : 0);
2140 Constant *ConstantExpr::getSDiv(Constant *C1, Constant *C2, bool isExact) {
2142 isExact ? PossiblyExactOperator::IsExact : 0);
2180 Constant *ConstantExpr::getLShr(Constant *C1, Constant *C2, bool isExact) {
2182 isExact ? PossiblyExactOperator::IsExact : 0);
2185 Constant *ConstantExpr::getAShr(Constant *C1, Constant *C2, bool isExact) {
2187 isExact ? PossiblyExactOperator::IsExact : 0);
2885 BO->setIsExact(SubclassOptionalData & PossiblyExactOperator::IsExact);