Searched refs:CmpRes (Results 1 - 7 of 7) sorted by relevance

/external/pdfium/third_party/bigint/
H A DBigInteger.hh24 typedef BigUnsigned::CmpRes CmpRes; typedef in class:BigInteger
25 static const CmpRes
100 CmpRes compareTo(const BigInteger &x) const;
H A DBigUnsigned.hh23 enum CmpRes { less = -1, equal = 0, greater = 1 }; enum in class:BigUnsigned
121 CmpRes compareTo(const BigUnsigned &x) const;
H A DBigInteger.cc139 BigInteger::CmpRes BigInteger::compareTo(const BigInteger &x) const {
154 return CmpRes(-mag.compareTo(x.mag));
H A DBigUnsigned.cc75 BigUnsigned::CmpRes BigUnsigned::compareTo(const BigUnsigned &x) const {
/external/clang/lib/Sema/
H A DSemaChecking.cpp7582 CompareBoolWithConstantResult CmpRes; local
7586 CmpRes = TruthTable.BO_LT_OP[RhsConstant][ConstVal];
7589 CmpRes = TruthTable.BO_GT_OP[RhsConstant][ConstVal];
7592 CmpRes = TruthTable.BO_LE_OP[RhsConstant][ConstVal];
7595 CmpRes = TruthTable.BO_GE_OP[RhsConstant][ConstVal];
7598 CmpRes = TruthTable.BO_EQ_OP[RhsConstant][ConstVal];
7601 CmpRes = TruthTable.BO_NE_OP[RhsConstant][ConstVal];
7604 CmpRes = Unkwn;
7608 if (CmpRes == AFals) {
7610 } else if (CmpRes
[all...]
/external/clang/lib/CodeGen/
H A DCGBuiltin.cpp4710 Value *CmpRes = Builder.CreateICmp(ICmpInst::ICMP_UGE, Ops[2], EightV); local
4711 CmpRes = Builder.CreateSExt(CmpRes, Ty);
4713 Value *EltsFromInput = Builder.CreateAnd(CmpRes, Ops[0]);
4714 Value *EltsFromTbl = Builder.CreateAnd(Builder.CreateNot(CmpRes), TblRes);
4728 Value *CmpRes = Builder.CreateICmp(ICmpInst::ICMP_UGE, Ops[4], local
4730 CmpRes = Builder.CreateSExt(CmpRes, Ty);
4732 Value *EltsFromInput = Builder.CreateAnd(CmpRes, Ops[0]);
4733 Value *EltsFromTbl = Builder.CreateAnd(Builder.CreateNot(CmpRes), TblRe
[all...]
/external/abi-compliance-checker/
H A Dabi-compliance-checker.pl6921 elsif(my $CmpRes = ($Part1 cmp $Part2)) {
6922 return $CmpRes;

Completed in 197 milliseconds