| /netbsd-src/external/apache2/llvm/dist/clang/lib/Sema/ |
| H A D | SemaStmtAttr.cpp | 269 const LoopHintAttr *LH = dyn_cast<LoopHintAttr>(I); in CheckForIncompatibleAttributes() local 272 if (!LH) in CheckForIncompatibleAttributes() 275 LoopHintAttr::OptionType Option = LH->getOption(); in CheckForIncompatibleAttributes() 326 CategoryState.StateAttr = LH; in CheckForIncompatibleAttributes() 330 CategoryState.NumericAttr = LH; in CheckForIncompatibleAttributes() 334 SourceLocation OptionLoc = LH->getRange().getBegin(); in CheckForIncompatibleAttributes() 339 << LH->getDiagnosticName(Policy); in CheckForIncompatibleAttributes()
|
| H A D | SemaTemplateInstantiate.cpp | 1078 const LoopHintAttr *TransformLoopHintAttr(const LoopHintAttr *LH); 1489 TemplateInstantiator::TransformLoopHintAttr(const LoopHintAttr *LH) { in TransformLoopHintAttr() argument 1490 Expr *TransformedExpr = getDerived().TransformExpr(LH->getValue()).get(); in TransformLoopHintAttr() 1492 if (TransformedExpr == LH->getValue()) in TransformLoopHintAttr() 1493 return LH; in TransformLoopHintAttr() 1496 if (getSema().CheckLoopHintExpr(TransformedExpr, LH->getLocation())) in TransformLoopHintAttr() 1497 return LH; in TransformLoopHintAttr() 1501 return LoopHintAttr::CreateImplicit(getSema().Context, LH->getOption(), in TransformLoopHintAttr() 1502 LH->getState(), TransformedExpr, *LH); in TransformLoopHintAttr()
|
| /netbsd-src/external/apache2/llvm/dist/clang/lib/CodeGen/ |
| H A D | CodeGenFunction.cpp | 1532 Stmt::Likelihood LH /* =None */, const Expr *CntrIdx /* = nullptr */) { in EmitBranchToCounterBlock() argument 1536 return EmitBranchOnBoolExpr(Cond, TrueBlock, FalseBlock, TrueCount, LH); in EmitBranchToCounterBlock() 1584 EmitBranchOnBoolExpr(Cond, ThenBlock, ElseBlock, TrueCount, LH); in EmitBranchToCounterBlock() 1604 Stmt::Likelihood LH) { in EmitBranchOnBoolExpr() argument 1619 FalseBlock, TrueCount, LH); in EmitBranchOnBoolExpr() 1628 FalseBlock, TrueCount, LH, CondBOp); in EmitBranchOnBoolExpr() 1645 LH == Stmt::LH_Unlikely ? Stmt::LH_None : LH); in EmitBranchOnBoolExpr() 1655 FalseBlock, TrueCount, LH); in EmitBranchOnBoolExpr() 1670 FalseBlock, TrueCount, LH); in EmitBranchOnBoolExpr() 1679 FalseBlock, TrueCount, LH, CondBOp); in EmitBranchOnBoolExpr() [all …]
|
| H A D | CGLoopInfo.cpp | 602 const LoopHintAttr *LH = dyn_cast<LoopHintAttr>(Attr); in push() local 607 if (!LH && !OpenCLHint) { in push() 628 } else if (LH) { in push() 629 auto *ValueExpr = LH->getValue(); in push() 635 Option = LH->getOption(); in push() 636 State = LH->getState(); in push() 753 if (LH->getValue()) in push()
|
| H A D | CGStmt.cpp | 754 Stmt::Likelihood LH = Stmt::LH_None; in EmitIfStmt() local 757 LH = Stmt::getLikelihood(S.getThen(), S.getElse()); in EmitIfStmt() 758 EmitBranchOnBoolExpr(S.getCond(), ThenBlock, ElseBlock, Count, LH); in EmitIfStmt() 1326 Stmt::Likelihood LH = Stmt::getLikelihood(Attrs); in EmitCaseStmtRange() local 1342 SwitchLikelihood->push_back(LH); in EmitCaseStmtRange() 1382 Cond = emitCondLikelihoodViaExpectIntrinsic(Cond, LH); in EmitCaseStmtRange() 1750 for (const auto LH : Likelihoods) { in getLikelihoodWeights() local 1751 switch (LH) { in getLikelihoodWeights() 1780 for (const auto LH : Likelihoods) { in getLikelihoodWeights() local 1781 switch (LH) { in getLikelihoodWeights()
|
| /netbsd-src/external/apache2/llvm/dist/llvm/lib/CodeGen/SelectionDAG/ |
| H A D | LegalizeTypesGeneric.cpp | 510 SDValue LL, LH, RL, RH, CL, CH; in SplitRes_SELECT() local 512 GetSplitOp(N->getOperand(1), LL, LH); in SplitRes_SELECT() 543 Hi = DAG.getNode(N->getOpcode(), dl, LH.getValueType(), CH, LH, RH); in SplitRes_SELECT() 548 SDValue LL, LH, RL, RH; in SplitRes_SELECT_CC() local 550 GetSplitOp(N->getOperand(2), LL, LH); in SplitRes_SELECT_CC() 555 Hi = DAG.getNode(ISD::SELECT_CC, dl, LH.getValueType(), N->getOperand(0), in SplitRes_SELECT_CC() 556 N->getOperand(1), LH, RH, N->getOperand(4)); in SplitRes_SELECT_CC()
|
| H A D | TargetLowering.cpp | 6258 SDValue LH, SDValue RL, SDValue RH) const { in expandMUL_LOHI() argument 6278 assert((LL.getNode() && LH.getNode() && RL.getNode() && RH.getNode()) || in expandMUL_LOHI() 6279 (!LL.getNode() && !LH.getNode() && !RL.getNode() && !RH.getNode())); in expandMUL_LOHI() 6346 if (!LH.getNode() && !RH.getNode() && in expandMUL_LOHI() 6349 LH = DAG.getNode(ISD::SRL, dl, VT, LHS, Shift); in expandMUL_LOHI() 6350 LH = DAG.getNode(ISD::TRUNCATE, dl, HiLoVT, LH); in expandMUL_LOHI() 6355 if (!LH.getNode()) in expandMUL_LOHI() 6365 LH = DAG.getNode(ISD::MUL, dl, HiLoVT, LH, RL); in expandMUL_LOHI() 6367 Hi = DAG.getNode(ISD::ADD, dl, HiLoVT, Hi, LH); in expandMUL_LOHI() 6388 if (!MakeMUL_LOHI(LH, RL, Lo, Hi, false)) in expandMUL_LOHI() [all …]
|
| H A D | LegalizeIntegerTypes.cpp | 3284 SDValue LL, LH, RL, RH; in ExpandIntRes_Logical() local 3285 GetExpandedInteger(N->getOperand(0), LL, LH); in ExpandIntRes_Logical() 3288 Hi = DAG.getNode(N->getOpcode(), dl, LL.getValueType(), LH, RH); in ExpandIntRes_Logical() 3297 SDValue LL, LH, RL, RH; in ExpandIntRes_MUL() local 3298 GetExpandedInteger(N->getOperand(0), LL, LH); in ExpandIntRes_MUL() 3303 LL, LH, RL, RH)) in ExpandIntRes_MUL() 3361 DAG.getNode(ISD::MUL, dl, NVT, RL, LH))); in ExpandIntRes_MUL() 3450 SDValue LL, LH, RL, RH; in ExpandIntRes_MULFIX() local 3451 GetExpandedInteger(LHS, LL, LH); in ExpandIntRes_MULFIX() 3458 LL, LH, RL, RH)) { in ExpandIntRes_MULFIX()
|
| /netbsd-src/external/bsd/openldap/dist/include/ |
| H A D | ldap_avl.h | 67 #define LH (-1) macro
|
| /netbsd-src/share/doc/smm/config/ |
| H A D | spell.ok | 39 LH
|
| /netbsd-src/external/apache2/llvm/dist/llvm/lib/Target/Mips/MCTargetDesc/ |
| H A D | MipsNaClELFStreamer.cpp | 222 case Mips::LH: in isBasePlusOffsetMemoryAccess()
|
| /netbsd-src/external/apache2/llvm/dist/llvm/lib/Target/SystemZ/ |
| H A D | SystemZInstrInfo.td | 82 "Z", "NZ", "P", "NP", "M", "NM", "LH", "NLH", "O", "NO" ] in { 155 foreach V = [ "E", "H", "L", "HE", "LE", "LH", 246 foreach V = [ "E", "H", "L", "HE", "LE", "LH", 539 "Z", "NZ", "P", "NP", "M", "NM", "LH", "NLH", "O", "NO" ] in { 580 "Z", "NZ", "P", "NP", "M", "NM", "LH", "NLH", "O", "NO" ] in { 611 "Z", "NZ", "P", "NP", "M", "NM", "LH", "NLH", "O", "NO" ] in { 626 // either way, but signed-extending loads have a short LH and a long LHY, 656 // 32-bit extensions from 16-bit memory. LHMux expands to LH or LHH, 660 defm LH : UnaryRXPair<"lh", 0x48, 0xE378, asextloadi16, GR32, 2>; 680 // Expands to LLCR or RISB[LH]G, depending on the choice of registers. [all …]
|
| /netbsd-src/share/doc/psd/21.ipc/ |
| H A D | spell.ok | 55 LH
|
| /netbsd-src/external/apache2/llvm/dist/llvm/lib/Target/RISCV/ |
| H A D | RISCVMergeBaseOffset.cpp | 213 case RISCV::LH: in detectAndFoldOffset()
|
| /netbsd-src/external/public-domain/tz/dist/ |
| H A D | australasia | 196 Rule LH 1981 1984 - Oct lastSun 2:00 1:00 - 197 Rule LH 1982 1985 - Mar Sun>=1 2:00 0 - 198 Rule LH 1985 only - Oct lastSun 2:00 0:30 - 199 Rule LH 1986 1989 - Mar Sun>=15 2:00 0 - 200 Rule LH 1986 only - Oct 19 2:00 0:30 - 201 Rule LH 1987 1999 - Oct lastSun 2:00 0:30 - 202 Rule LH 1990 1995 - Mar Sun>=1 2:00 0 - 203 Rule LH 1996 2005 - Mar lastSun 2:00 0 - 204 Rule LH 2000 only - Aug lastSun 2:00 0:30 - 205 Rule LH 200 [all...] |
| /netbsd-src/crypto/external/bsd/openssl/dist/doc/man3/ |
| H A D | OPENSSL_ia32cap.pod | 106 =item bit #64+21 denoting availability of VPMADD52[LH]UQ instructions,
|
| /netbsd-src/share/doc/smm/01.setup/ |
| H A D | spell.ok | 89 LH
|
| /netbsd-src/external/apache2/llvm/dist/llvm/lib/Target/XCore/ |
| H A D | XCoreISelLowering.cpp | 675 SDValue LH, RH; in TryExpandADDWithMul() local 676 LH = DAG.getNode(ISD::EXTRACT_ELEMENT, dl, MVT::i32, in TryExpandADDWithMul() 685 LH = DAG.getNode(ISD::MUL, dl, MVT::i32, LH, RL); in TryExpandADDWithMul() 687 Hi = DAG.getNode(ISD::ADD, dl, MVT::i32, Hi, LH); in TryExpandADDWithMul()
|
| /netbsd-src/crypto/external/bsd/openssl.old/dist/doc/man3/ |
| H A D | OPENSSL_ia32cap.pod | 104 =item bit #64+21 denoting availability of VPMADD52[LH]UQ instructions,
|
| /netbsd-src/external/bsd/openldap/dist/libraries/libldap/ |
| H A D | avl.c | 60 static const int avl_bfs[] = {LH, RH};
|
| H A D | tavl.c | 47 static const int avl_bfs[] = {LH, RH};
|
| /netbsd-src/external/bsd/am-utils/dist/ |
| H A D | ldap-id.ms | 10 .ds LH Internet draft
|
| /netbsd-src/external/gpl3/gdb/dist/sim/mips/ |
| H A D | m16.igen | 69 10001,3.RX,3.RY,5.IMMED:RRI:16::LH 77 11110,6.IMM_10_5,5.IMM_15_11 + 10001,3.RX,3.RY,5.IMM_4_0:EXT-RRI:16::LH
|
| /netbsd-src/external/atheros/athn/dist/ |
| H A D | athn-ar9271 | 176 …A(B%F)@H͏~� � �@X2`� �@X^�Kȥ�@�0[�����>�Ad���l�9%2!̑c��$0MňD��$LH�Ac��&\r��?�`[�����… 193 ��������#�$�8FfFvZ��$�l &0L�9$0M�pňD��T(@�'2!$LH�� �0X����>, 220 **��m�������)�����(b�C���ڀ�(���/0��@� [��l(0M�9Ř ��D)B�P$LHɘh���o���`+����n�… 223 �,LH �(D�[�3r����)0)(B(//."��Ԋ#��.&�XM�l�)�r���[zJ*r���[zH�"i�
|
| /netbsd-src/share/misc/ |
| H A D | country | 147 Lithuania LT LTU 440 LH
|