Searched refs:compareRes (Results 1 – 3 of 3) sorted by relevance
/external/llvm-project/mlir/lib/Dialect/StandardOps/Transforms/ |
D | ExpandOps.cpp | 155 Value compareRes = rewriter.create<OrOp>(loc, firstTerm, secondTerm); in matchAndRewrite() local 156 Value res = rewriter.create<SelectOp>(loc, compareRes, posRes, negRes); in matchAndRewrite() 204 Value compareRes = rewriter.create<OrOp>(loc, firstTerm, secondTerm); in matchAndRewrite() local 205 Value res = rewriter.create<SelectOp>(loc, compareRes, negRes, posRes); in matchAndRewrite()
|
/external/clang/lib/StaticAnalyzer/Checkers/ |
D | CStringChecker.cpp | 1875 int compareRes = ignoreCase ? s1StrRef.compare_lower(s2StrRef) in evalStrcmpCommon() local 1880 if (compareRes == 0) { in evalStrcmpCommon() 1881 resultVal = svalBuilder.makeIntVal(compareRes, CE->getType()); in evalStrcmpCommon() 1887 BinaryOperatorKind op = (compareRes == 1) ? BO_GT : BO_LT; in evalStrcmpCommon()
|
/external/llvm-project/clang/lib/StaticAnalyzer/Checkers/ |
D | CStringChecker.cpp | 2042 int compareRes = IgnoreCase ? LeftStrRef.compare_lower(RightStrRef) in evalStrcmpCommon() local 2047 if (compareRes == 0) { in evalStrcmpCommon() 2048 resultVal = svalBuilder.makeIntVal(compareRes, CE->getType()); in evalStrcmpCommon() 2054 BinaryOperatorKind op = (compareRes == 1) ? BO_GT : BO_LT; in evalStrcmpCommon()
|