Searched defs:isExact (Results 1 - 19 of 19) sorted by relevance

/external/llvm/unittests/ADT/
H A DAPFloatTest.cpp877 bool isExact = false; local
882 .convertToInteger(result, APFloat::rmTowardZero, &isExact));
883 EXPECT_TRUE(isExact);
888 .convertToInteger(result, APFloat::rmTowardZero, &isExact));
889 EXPECT_FALSE(isExact);
894 .convertToInteger(result, APFloat::rmTowardZero, &isExact));
895 EXPECT_FALSE(isExact);
900 .convertToInteger(result, APFloat::rmTowardZero, &isExact));
901 EXPECT_FALSE(isExact);
907 .convertToInteger(result, APFloat::rmTowardZero, &isExact));
[all...]
/external/llvm/include/llvm/IR/
H A DOperator.h145 /// isExact - Test whether this division is known to be exact, with
147 bool isExact() const { function in class:llvm::PossiblyExactOperator
/external/llvm/lib/Transforms/InstCombine/
H A DInstCombinePHI.cpp36 bool isNUW = false, isNSW = false, isExact = false; local
43 isExact = PEO->isExact();
64 if (isExact)
65 isExact = cast<PossiblyExactOperator>(I)->isExact();
127 if (isExact) NewBinOp->setIsExact();
405 bool isNUW = false, isNSW = false, isExact = false; local
429 isExact = PEO->isExact();
[all...]
/external/llvm/lib/Analysis/
H A DConstantFolding.cpp1384 bool isExact = false; local
1389 &isExact);
H A DInstructionSimplify.cpp1294 static Value *SimplifyLShrInst(Value *Op0, Value *Op1, bool isExact, argument
1316 Value *llvm::SimplifyLShrInst(Value *Op0, Value *Op1, bool isExact, argument
1320 return ::SimplifyLShrInst(Op0, Op1, isExact, Query (DL, TLI, DT),
1326 static Value *SimplifyAShrInst(Value *Op0, Value *Op1, bool isExact, argument
1352 Value *llvm::SimplifyAShrInst(Value *Op0, Value *Op1, bool isExact, argument
1356 return ::SimplifyAShrInst(Op0, Op1, isExact, Query (DL, TLI, DT),
1977 if (!CI2->isZero() && cast<BinaryOperator>(LHS)->isExact())
1991 if (!CI2->isZero() && cast<BinaryOperator>(LHS)->isExact())
2359 if (!LBO->isExact() || !RBO->isExact())
[all...]
/external/llvm/lib/CodeGen/SelectionDAG/
H A DFastISel.cpp215 bool isExact; local
217 APFloat::rmTowardZero, &isExact);
218 if (isExact) {
414 cast<BinaryOperator>(I)->isExact() &&
/external/llvm/lib/Transforms/Scalar/
H A DIndVarSimplify.cpp226 bool isExact = false; local
230 &isExact) != APFloat::opOK || !isExact)
/external/chromium_org/third_party/sqlite/src/ext/fts3/
H A Dfts3.c1607 int isExact, /* If *pp1 is exactly nTokens before *pp2 */
1617 /* Never set both isSaveLeft and isExact for the same invocation. */
1618 assert( isSaveLeft==0 || isExact==0 );
1649 || (isExact==0 && iPos2>iPos1 && iPos2<=iPos1+nToken)
1603 fts3PoslistPhraseMerge( char **pp, int nToken, int isSaveLeft, int isExact, char **pp1, char **pp2 ) argument
/external/llvm/lib/IR/
H A DConstants.cpp2135 Constant *ConstantExpr::getUDiv(Constant *C1, Constant *C2, bool isExact) { argument
2137 isExact ? PossiblyExactOperator::IsExact : 0);
2140 Constant *ConstantExpr::getSDiv(Constant *C1, Constant *C2, bool isExact) { argument
2142 isExact ? PossiblyExactOperator::IsExact : 0);
2180 Constant *ConstantExpr::getLShr(Constant *C1, Constant *C2, bool isExact) { argument
2182 isExact ? PossiblyExactOperator::IsExact : 0);
2185 Constant *ConstantExpr::getAShr(Constant *C1, Constant *C2, bool isExact) { argument
2187 isExact ? PossiblyExactOperator::IsExact : 0);
H A DInstructions.cpp2029 bool BinaryOperator::isExact() const { function in class:BinaryOperator
2030 return cast<PossiblyExactOperator>(this)->isExact();
/external/llvm/include/llvm/CodeGen/
H A DSelectionDAGNodes.h989 bool isExact() const { return SubclassData & EXACT; } function in class:llvm::BinaryWithFlagsSDNode
/external/clang/include/clang/AST/
H A DExpr.h1389 bool isExact() const { return FloatingLiteralBits.IsExact; } function in class:clang::FloatingLiteral
/external/clang/lib/Sema/
H A DSemaChecking.cpp4858 if (FLL->isExact())
4862 if (FLR->isExact())
5755 bool isExact = false; local
5760 llvm::APFloat::rmTowardZero, &isExact)
5761 == llvm::APFloat::opOK && isExact)
H A DSemaExpr.cpp3045 bool isExact = (result == APFloat::opOK); local
3046 return FloatingLiteral::Create(S.Context, Val, isExact, Ty, Loc);
/external/chromium_org/third_party/sqlite/amalgamation/
H A Dsqlite3.c114664 fts3PoslistPhraseMerge( char **pp, int nToken, int isSaveLeft, int isExact, char **pp1, char **pp2 ) argument
[all...]
/external/sqlite/dist/orig/
H A Dsqlite3.c128973 fts3PoslistPhraseMerge( char **pp, int nToken, int isSaveLeft, int isExact, char **pp1, char **pp2 ) argument
[all...]
/external/sqlite/dist/
H A Dsqlite3.c128993 fts3PoslistPhraseMerge( char **pp, int nToken, int isSaveLeft, int isExact, char **pp1, char **pp2 ) argument
[all...]
/external/owasp/sanitizer/tools/findbugs/lib/
H A Dfindbugs.jarMETA-INF/ META-INF/MANIFEST.MF default.xsl edu/ edu/umd/ edu/umd/cs/ edu/ ...
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/
H A Dorg.eclipse.jdt.core_3.6.2.v_A76_R36x.jarMETA-INF/MANIFEST.MF META-INF/ECLIPSEF.SF META-INF/ECLIPSEF.RSA META ...

Completed in 1460 milliseconds