Searched defs:LHSC (Results 1 - 3 of 3) sorted by relevance

/external/llvm/lib/Target/ARM/
H A DARMISelDAGToDAG.cpp1076 unsigned LHSC = LHS ? LHS->getZExtValue() : 0; local
1080 if (LHSC != 0 || RHSC != 0) return false;
/external/llvm/lib/Transforms/InstCombine/
H A DInstCombineCompares.cpp1360 ConstantInt *LHSC = dyn_cast<ConstantInt>(LHSI->getOperand(1)); local
1361 if (!LHSC) break;
1362 const APInt &LHSV = LHSC->getValue();
2012 ConstantInt *LHSC = 0; local
2013 if (!match(Op0, m_And(m_Value(LHS), m_ConstantInt(LHSC))) ||
2014 LHSC->getValue() != Op0KnownZeroInverted)
2049 ConstantInt *LHSC = 0; local
2050 if (!match(Op0, m_And(m_Value(LHS), m_ConstantInt(LHSC))) ||
2051 LHSC->getValue() != Op0KnownZeroInverted)
/external/clang/lib/AST/
H A DASTContext.cpp3738 const Type *LHSC = getCanonicalType(LHS).getTypePtr(); local
3740 if (LHSC == RHSC) return 0;
3742 bool LHSUnsigned = LHSC->isUnsignedIntegerType();
3745 unsigned LHSRank = getIntegerRank(LHSC);

Completed in 78 milliseconds