HomeSort by: relevance | last modified time | path
    Searched defs:LH (Results 1 - 10 of 10) sorted by relevancy

  /src/external/bsd/openldap/dist/include/
ldap_avl.h 67 #define LH (-1)
71 #define avl_bf2str(bf) ((bf) == -1 ? "LH" : (bf) == 0 ? "EH" : (bf) == 1 ? "RH" : "(unknown)" )
  /src/external/apache2/llvm/dist/clang/lib/CodeGen/
CGLoopInfo.cpp 602 const LoopHintAttr *LH = dyn_cast<LoopHintAttr>(Attr);
607 if (!LH && !OpenCLHint) {
628 } else if (LH) {
629 auto *ValueExpr = LH->getValue();
635 Option = LH->getOption();
636 State = LH->getState();
753 if (LH->getValue())
CGStmt.cpp 754 Stmt::Likelihood LH = Stmt::LH_None;
757 LH = Stmt::getLikelihood(S.getThen(), S.getElse());
758 EmitBranchOnBoolExpr(S.getCond(), ThenBlock, ElseBlock, Count, LH);
1326 Stmt::Likelihood LH = Stmt::getLikelihood(Attrs);
1342 SwitchLikelihood->push_back(LH);
1382 Cond = emitCondLikelihoodViaExpectIntrinsic(Cond, LH);
1750 for (const auto LH : Likelihoods) {
1751 switch (LH) {
1780 for (const auto LH : Likelihoods) {
1781 switch (LH) {
    [all...]
  /src/external/apache2/llvm/dist/clang/lib/Sema/
SemaStmtAttr.cpp 269 const LoopHintAttr *LH = dyn_cast<LoopHintAttr>(I);
272 if (!LH)
275 LoopHintAttr::OptionType Option = LH->getOption();
326 CategoryState.StateAttr = LH;
330 CategoryState.NumericAttr = LH;
334 SourceLocation OptionLoc = LH->getRange().getBegin();
339 << LH->getDiagnosticName(Policy);
  /src/external/apache2/llvm/dist/llvm/lib/CodeGen/SelectionDAG/
LegalizeTypesGeneric.cpp 510 SDValue LL, LH, RL, RH, CL, CH;
512 GetSplitOp(N->getOperand(1), LL, LH);
543 Hi = DAG.getNode(N->getOpcode(), dl, LH.getValueType(), CH, LH, RH);
548 SDValue LL, LH, RL, RH;
550 GetSplitOp(N->getOperand(2), LL, LH);
555 Hi = DAG.getNode(ISD::SELECT_CC, dl, LH.getValueType(), N->getOperand(0),
556 N->getOperand(1), LH, RH, N->getOperand(4));
LegalizeIntegerTypes.cpp 3284 SDValue LL, LH, RL, RH;
3285 GetExpandedInteger(N->getOperand(0), LL, LH);
3288 Hi = DAG.getNode(N->getOpcode(), dl, LL.getValueType(), LH, RH);
3297 SDValue LL, LH, RL, RH;
3298 GetExpandedInteger(N->getOperand(0), LL, LH);
3303 LL, LH, RL, RH))
3361 DAG.getNode(ISD::MUL, dl, NVT, RL, LH)));
3450 SDValue LL, LH, RL, RH;
3451 GetExpandedInteger(LHS, LL, LH);
3458 LL, LH, RL, RH))
    [all...]
LegalizeVectorTypes.cpp 1890 SDValue LL, LH, RL, RH;
1893 GetSplitVector(N->getOperand(0), LL, LH);
1895 std::tie(LL, LH) = DAG.SplitVectorOperand(N, 0);
1904 Hi = DAG.getNode(N->getOpcode(), DL, HiVT, LH, RH, N->getOperand(2));
  /src/external/apache2/llvm/dist/llvm/lib/Target/XCore/
XCoreISelLowering.cpp 675 SDValue LH, RH;
676 LH = DAG.getNode(ISD::EXTRACT_ELEMENT, dl, MVT::i32,
685 LH = DAG.getNode(ISD::MUL, dl, MVT::i32, LH, RL);
687 Hi = DAG.getNode(ISD::ADD, dl, MVT::i32, Hi, LH);
  /src/external/apache2/llvm/dist/llvm/lib/Transforms/Scalar/
LowerMatrixIntrinsics.cpp 1085 Value *LH = Builder.CreateExtractElement(
1088 Value *Splat = Builder.CreateVectorSplat(BlockSize, LH, "splat");
  /src/external/apache2/llvm/dist/llvm/lib/Target/SystemZ/
SystemZISelLowering.cpp 3524 // (ll * rl) + ((lh * rl) << 64) + ((ll * rh) << 64)
3529 // (ll * rl) - ((lh & rl) << 64) - ((ll & rh) << 64)
3534 // (ll * rl) - (((lh & rl) + (ll & rh)) << 64)
3538 SDValue LH = DAG.getNode(ISD::SRA, DL, VT, LL, C63);
3546 SDValue NegLHTimesRL = DAG.getNode(ISD::AND, DL, VT, LH, RL);

Completed in 48 milliseconds