| /freebsd/crypto/libecc/src/examples/hash/ |
| H A D | tdes.c | 187 static const u32 LH[16] = variable 273 C = (LH[ (C ) & 0xF] << 3) | (LH[ (C >> 8) & 0xF ] << 2) in des_set_key() 274 | (LH[ (C >> 16) & 0xF] << 1) | (LH[ (C >> 24) & 0xF ] ) in des_set_key() 275 | (LH[ (C >> 5) & 0xF] << 7) | (LH[ (C >> 13) & 0xF ] << 6) in des_set_key() 276 | (LH[ (C >> 21) & 0xF] << 5) | (LH[ (C >> 29) & 0xF ] << 4); in des_set_key()
|
| /freebsd/contrib/llvm-project/llvm/lib/CodeGen/SelectionDAG/ |
| H A D | LegalizeTypesGeneric.cpp | 526 SDValue LL, LH, RL, RH, CL, CH; in SplitRes_Select() local 529 GetSplitOp(N->getOperand(1), LL, LH); in SplitRes_Select() 561 Hi = DAG.getNode(Opcode, dl, LH.getValueType(), CH, LH, RH); in SplitRes_Select() 570 Hi = DAG.getNode(Opcode, dl, LH.getValueType(), CH, LH, RH, EVLHi); in SplitRes_Select() 575 SDValue LL, LH, RL, RH; in SplitRes_SELECT_CC() local 577 GetSplitOp(N->getOperand(2), LL, LH); in SplitRes_SELECT_CC() 582 Hi = DAG.getNode(ISD::SELECT_CC, dl, LH.getValueType(), N->getOperand(0), in SplitRes_SELECT_CC() 583 N->getOperand(1), LH, RH, N->getOperand(4)); in SplitRes_SELECT_CC()
|
| H A D | TargetLowering.cpp | 7766 SDValue LH, SDValue RL, SDValue RH) const { in expandMUL_LOHI() argument 7786 assert((LL.getNode() && LH.getNode() && RL.getNode() && RH.getNode()) || in expandMUL_LOHI() 7787 (!LL.getNode() && !LH.getNode() && !RL.getNode() && !RH.getNode())); in expandMUL_LOHI() 7847 if (!LH.getNode() && !RH.getNode() && in expandMUL_LOHI() 7850 LH = DAG.getNode(ISD::SRL, dl, VT, LHS, Shift); in expandMUL_LOHI() 7851 LH = DAG.getNode(ISD::TRUNCATE, dl, HiLoVT, LH); in expandMUL_LOHI() 7856 if (!LH.getNode()) in expandMUL_LOHI() 7866 LH = DAG.getNode(ISD::MUL, dl, HiLoVT, LH, RL); in expandMUL_LOHI() 7868 Hi = DAG.getNode(ISD::ADD, dl, HiLoVT, Hi, LH); in expandMUL_LOHI() 7889 if (!MakeMUL_LOHI(LH, RL, Lo, Hi, false)) in expandMUL_LOHI() [all …]
|
| /freebsd/contrib/llvm-project/clang/lib/CodeGen/ |
| H A D | CGLoopInfo.cpp | 594 const LoopHintAttr *LH = dyn_cast<LoopHintAttr>(Attr); in push() local 599 if (!LH && !OpenCLHint && !HLSLLoopHint) { in push() 631 } else if (LH) { in push() 632 auto *ValueExpr = LH->getValue(); in push() 638 Option = LH->getOption(); in push() 639 State = LH->getState(); in push() 756 if (LH->getValue()) in push()
|
| H A D | CodeGenFunction.cpp | 1817 Stmt::Likelihood LH /* =None */, const Expr *CntrIdx /* = nullptr */) { in EmitBranchToCounterBlock() argument 1821 return EmitBranchOnBoolExpr(Cond, TrueBlock, FalseBlock, TrueCount, LH); in EmitBranchToCounterBlock() 1871 EmitBranchOnBoolExpr(Cond, ThenBlock, ElseBlock, TrueCount, LH); in EmitBranchToCounterBlock() 1892 uint64_t TrueCount, Stmt::Likelihood LH, const Expr *ConditionalOp, in EmitBranchOnBoolExpr() argument 1909 FalseBlock, TrueCount, LH); in EmitBranchOnBoolExpr() 1920 FalseBlock, TrueCount, LH, CondBOp); in EmitBranchOnBoolExpr() 1939 LH == Stmt::LH_Unlikely ? Stmt::LH_None : LH); in EmitBranchOnBoolExpr() 1949 FalseBlock, TrueCount, LH); in EmitBranchOnBoolExpr() 1966 FalseBlock, TrueCount, LH); in EmitBranchOnBoolExpr() 1977 FalseBlock, TrueCount, LH, CondBOp); in EmitBranchOnBoolExpr() [all …]
|
| H A D | CGStmt.cpp | 948 Stmt::Likelihood LH = Stmt::LH_None; in EmitIfStmt() local 952 LH = Stmt::getLikelihood(S.getThen(), Else); in EmitIfStmt() 961 EmitBranchOnBoolExpr(S.getCond(), ThenBlock, ElseBlock, ThenCount, LH, in EmitIfStmt() 1782 Stmt::Likelihood LH = Stmt::getLikelihood(Attrs); in EmitCaseStmtRange() local 1798 SwitchLikelihood->push_back(LH); in EmitCaseStmtRange() 1838 Cond = emitCondLikelihoodViaExpectIntrinsic(Cond, LH); in EmitCaseStmtRange() 2227 for (const auto LH : Likelihoods) { in getLikelihoodWeights() local 2228 switch (LH) { in getLikelihoodWeights() 2257 for (const auto LH : Likelihoods) { in getLikelihoodWeights() local 2258 switch (LH) { in getLikelihoodWeights()
|
| /freebsd/contrib/llvm-project/clang/lib/Sema/ |
| H A D | SemaStmtAttr.cpp | 488 const LoopHintAttr *LH = dyn_cast<LoopHintAttr>(I); in CheckForIncompatibleAttributes() local 491 if (!LH) in CheckForIncompatibleAttributes() 495 LoopHintAttr::OptionType Option = LH->getOption(); in CheckForIncompatibleAttributes() 537 CategoryState.StateAttr = LH; in CheckForIncompatibleAttributes() 541 CategoryState.NumericAttr = LH; in CheckForIncompatibleAttributes() 545 SourceLocation OptionLoc = LH->getRange().getBegin(); in CheckForIncompatibleAttributes() 550 << LH->getDiagnosticName(Policy); in CheckForIncompatibleAttributes()
|
| H A D | SemaTemplateInstantiate.cpp | 1614 const LoopHintAttr *TransformLoopHintAttr(const LoopHintAttr *LH); 2290 TemplateInstantiator::TransformLoopHintAttr(const LoopHintAttr *LH) { in TransformLoopHintAttr() argument 2291 Expr *TransformedExpr = getDerived().TransformExpr(LH->getValue()).get(); in TransformLoopHintAttr() 2293 if (TransformedExpr == LH->getValue()) in TransformLoopHintAttr() 2294 return LH; in TransformLoopHintAttr() 2297 if (getSema().CheckLoopHintExpr(TransformedExpr, LH->getLocation(), in TransformLoopHintAttr() 2298 LH->getSemanticSpelling() == in TransformLoopHintAttr() 2300 return LH; in TransformLoopHintAttr() 2302 LoopHintAttr::OptionType Option = LH->getOption(); in TransformLoopHintAttr() 2303 LoopHintAttr::LoopHintState State = LH->getState(); in TransformLoopHintAttr() [all …]
|
| /freebsd/contrib/llvm-project/llvm/lib/Target/RISCV/ |
| H A D | RISCVMakeCompressible.cpp | 105 case RISCV::LH: in log2LdstWidth() 136 case RISCV::LH: in offsetMask() 203 case RISCV::LH: in isCompressibleLoad()
|
| H A D | RISCVGISel.td | 105 def : LdPat<load, LH, i16>; 113 def : LdPat<atomic_load_nonext_16, LH, i16>; 137 def : LdPat<extloadi16, LH, i32>;
|
| H A D | RISCVInstrInfoZalasr.td | 49 defm LH : LAQ_r_aq_rl<0b001, "lh">;
|
| H A D | RISCVFoldMemOffset.cpp | 168 case RISCV::LH: in foldOffset()
|
| H A D | RISCVMergeBaseOffset.cpp | 403 case RISCV::LH: in foldIntoMemoryOps()
|
| H A D | RISCVInstrInfoZc.td | 326 def : CompressPat<(LH GPRC:$rd, GPRCMem:$rs1, uimm2_lsb0:$imm),
|
| /freebsd/contrib/llvm-project/lldb/source/Plugins/Instruction/RISCV/ |
| H A D | RISCVInstructions.h | 114 I_TYPE_INST(LH); 276 LUI, AUIPC, JAL, JALR, B, LB, LH, LW, LBU, LHU, SB, SH, SW, ADDI, SLTI,
|
| H A D | EmulateInstructionRISCV.cpp | 189 std::is_same_v<T, LB> || std::is_same_v<T, LH> || std::is_same_v<T, LW> || 430 {"LH", 0x707F, 0x1003, DecodeIType<LH>}, 724 bool operator()(LH inst) { in operator ()() 725 return Load<LH, uint16_t, int16_t>(m_emu, inst, SextW); in operator ()()
|
| /freebsd/share/doc/smm/02.config/ |
| H A D | spell.ok | 39 LH
|
| /freebsd/contrib/llvm-project/llvm/lib/Target/Mips/MCTargetDesc/ |
| H A D | MipsNaClELFStreamer.cpp | 221 case Mips::LH: in isBasePlusOffsetMemoryAccess()
|
| /freebsd/share/doc/psd/21.ipc/ |
| H A D | spell.ok | 55 LH
|
| /freebsd/sys/dev/acpica/ |
| H A D | acpi_quirks | 317 # HP LH 4 319 oem: FADT "HP " "LH 4 "
|
| /freebsd/contrib/llvm-project/llvm/lib/Target/SystemZ/ |
| H A D | SystemZInstrInfo.td | 86 "Z", "NZ", "P", "NP", "M", "NM", "LH", "NLH", "O", "NO" ] in { 150 foreach V = [ "E", "H", "L", "HE", "LE", "LH", 241 foreach V = [ "E", "H", "L", "HE", "LE", "LH", 576 "Z", "NZ", "P", "NP", "M", "NM", "LH", "NLH", "O", "NO" ] in { 617 "Z", "NZ", "P", "NP", "M", "NM", "LH", "NLH", "O", "NO" ] in { 648 "Z", "NZ", "P", "NP", "M", "NM", "LH", "NLH", "O", "NO" ] in { 663 // either way, but signed-extending loads have a short LH and a long LHY, 693 // 32-bit extensions from 16-bit memory. LHMux expands to LH or LHH, 697 defm LH : UnaryRXPair<"lh", 0x48, 0xE378, z_asextloadi16, GR32, 2>; 717 // Expands to LLCR or RISB[LH]G, depending on the choice of registers. [all …]
|
| /freebsd/contrib/tzdata/ |
| 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 2001 2007 - Oct lastSun 2:00 0:30 - [all …]
|
| /freebsd/share/doc/smm/01.setup/ |
| H A D | spell.ok | 89 LH
|
| /freebsd/contrib/llvm-project/llvm/lib/Target/XCore/ |
| H A D | XCoreISelLowering.cpp | 640 SDValue LH, RH; in TryExpandADDWithMul() local 641 LH = DAG.getNode(ISD::EXTRACT_ELEMENT, dl, MVT::i32, in TryExpandADDWithMul() 650 LH = DAG.getNode(ISD::MUL, dl, MVT::i32, LH, RL); in TryExpandADDWithMul() 652 Hi = DAG.getNode(ISD::ADD, dl, MVT::i32, Hi, LH); in TryExpandADDWithMul()
|
| /freebsd/contrib/sendmail/contrib/ |
| H A D | mail.local.linux | 120 M6-$H@]'S9K$VC,MKD<*N#,LH$`-Y2L0?''+`2P?"BU@U/(Q-';>5A9Y,$'K7 164 MH#%?1LH(BPM)9';,F>DQ:P+(_`@A`R?>C!CBD7=BSNP)F`<2GTR>*19\IC?T
|