Home
last modified time | relevance | path

Searched refs:Sh (Results 1 – 25 of 44) sorted by relevance

12

/netbsd/external/apache2/llvm/dist/clang/include/clang/Basic/
H A Darm_fp16.td20 def VNEGSH : SInst<"vneg", "11", "Sh">;
24 def FSQRTSH : SInst<"vsqrt", "11", "Sh">;
28 def SCALAR_FRECPEH : IInst<"vrecpe", "11", "Sh">;
31 def SCALAR_FRECPXH : IInst<"vrecpx", "11", "Sh">;
37 def FRINTZ_S64H : SInst<"vrnd", "11", "Sh">;
38 def FRINTA_S64H : SInst<"vrnda", "11", "Sh">;
39 def FRINTI_S64H : SInst<"vrndi", "11", "Sh">;
40 def FRINTM_S64H : SInst<"vrndm", "11", "Sh">;
41 def FRINTN_S64H : SInst<"vrndn", "11", "Sh">;
42 def FRINTP_S64H : SInst<"vrndp", "11", "Sh">;
[all …]
H A Darm_neon.td1819 def SCALAR_FMLA_LANEH : IInst<"vfma_lane", "111.I", "Sh">;
1820 def SCALAR_FMLA_LANEQH : IInst<"vfma_laneq", "111QI", "Sh"> {
1832 def SCALAR_FMLS_LANEH : IOpInst<"vfms_lane", "111.I", "Sh", OP_FMS_LN>;
1833 def SCALAR_FMLS_LANEQH : IOpInst<"vfms_laneq", "111QI", "Sh", OP_FMS_LNQ> {
1842 def SCALAR_FMUL_LANEH : IOpInst<"vmul_lane", "11.I", "Sh", OP_SCALAR_MUL_LN>;
1843 def SCALAR_FMUL_LANEQH : IOpInst<"vmul_laneq", "11QI", "Sh", OP_SCALAR_MUL_LN> {
1854 def SCALAR_FMULX_LANEH : IInst<"vmulx_lane", "11.I", "Sh">;
1855 def SCALAR_FMULX_LANEQH : IInst<"vmulx_laneq", "11QI", "Sh"> {
1873 def SCALAR_VDUP_LANEH : IInst<"vdup_lane", "1.I", "Sh">;
1874 def SCALAR_VDUP_LANEQH : IInst<"vdup_laneq", "1QI", "Sh"> {
/netbsd/external/apache2/llvm/dist/llvm/lib/Target/Hexagon/
H A DBitTracker.cpp257 Sh = Sh % W; in rol()
258 if (Sh == 0) in rol()
261 RegisterCell Tmp(W-Sh); in rol()
519 uint16_t Sh) const { in eASL()
522 Res.rol(Sh); in eASL()
528 uint16_t Sh) const { in eLSR()
530 assert(Sh <= W); in eLSR()
532 Res.rol(W-Sh); in eLSR()
538 uint16_t Sh) const { in eASR()
540 assert(Sh <= W); in eASR()
[all …]
H A DBitTracker.h319 RegisterCell &rol(uint16_t Sh); // Rotate left.
427 RegisterCell eASL(const RegisterCell &A1, uint16_t Sh) const;
428 RegisterCell eLSR(const RegisterCell &A1, uint16_t Sh) const;
429 RegisterCell eASR(const RegisterCell &A1, uint16_t Sh) const;
/netbsd/external/bsd/mdocml/dist/
H A Dmandoc.css69 section.Sh { }
70 h1.Sh { margin-top: 1.2em;
261 h1.Sh, h2.Ss { position: relative; }
291 h1.Sh::before { content: "Sh"; }
306 h1.Sh::before, h2.Ss::before, .St::before, .Sx::before, .Sy::before,
327 .Rs:hover::before, h1.Sh:hover::before, h2.Ss:hover::before, .St:hover::before,
338 h1.Sh, h2.Ss { margin-left: 0em; }
H A DTODO76 .Sh .Nm .Bk .Nm .Ek .Sh found by jmc@ in ssh-keygen(1)
449 - warn about duplicate .Sh/.Ss heads
464 - warn when .Sh or .Ss contain other macros
474 .Fn Po prints "Po()", .Ar Sh prints "file ..." and no "Sh".
H A DNEWS162 array if .sp or a blank line precede the first .Sh macro.
318 of the first .Sh was an empty in-line macro.
672 * Fix NULL pointer access triggered by .Sh Xo .Sh without .Xc.
747 * In the mdoc(7) parser, a crash was fixed related to weird .Sh headers.
/netbsd/external/bsd/openpam/dist/doc/man/
H A Dopenpam.man1 .Sh DESCRIPTION
H A Dpam.man1 .Sh DESCRIPTION
/netbsd/external/bsd/libfido2/dist/man/
H A Ddyc.css13 .Sh { font-size: 1.5em; padding-top: 1em; padding-bottom: 1em; }
H A Dstyle.css12 .Sh { font-size: 1em; padding-top: 1em; padding-bottom: 1em; }
/netbsd/games/fortune/datfiles/
H A Dnetbsd-o.real42 NetBSD: No Sh;t!
/netbsd/crypto/external/bsd/heimdal/dist/cf/
H A Dcheck-man.m412 .Sh NAME
/netbsd/external/apache2/llvm/dist/llvm/lib/Transforms/InstCombine/
H A DInstCombinePHI.cpp997 PHIUsageRecord(unsigned pn, unsigned Sh, Instruction *User) in PHIUsageRecord()
998 : PHIId(pn), Shift(Sh), Inst(User) {} in PHIUsageRecord()
1015 LoweredPHIRecord(PHINode *pn, unsigned Sh, Type *Ty) in LoweredPHIRecord()
1016 : PN(pn), Shift(Sh), Width(Ty->getPrimitiveSizeInBits()) {} in LoweredPHIRecord()
1019 LoweredPHIRecord(PHINode *pn, unsigned Sh) in LoweredPHIRecord()
1020 : PN(pn), Shift(Sh), Width(0) {} in LoweredPHIRecord()
H A DInstCombineCasts.cpp953 Value *Sh = ConstantInt::get(In->getType(), in transformZExtICmp() local
955 In = Builder.CreateLShr(In, Sh, In->getName() + ".lobit"); in transformZExtICmp()
1332 Value *Sh = ConstantInt::get(Op0->getType(), in transformSExtICmp() local
1334 Value *In = Builder.CreateAShr(Op0, Sh, Op0->getName() + ".lobit"); in transformSExtICmp()
/netbsd/external/bsd/ntp/dist/sntp/ag-tpl/0-old/
H A Dmdoc-synopsis.tlib4 .Sh SYNOPSIS
H A Dcmd-doc.tlib95 (emit (string-append ".Sh \"" sect-name "\"\n"))
110 .Sh NAME
237 *==* " " :+].Sh "[+: (. sec-type) :+]"[+:
238 * :+].Sh [+: (. sec-type) :+][+:
318 .\" insert save the current contents, replacing the .Sh line with .Pp.
349 "sed '1s/.Sh .*/.Pp/' %1$s ; rm -f %1$s" file-name)) :+][+:
/netbsd/crypto/external/bsd/heimdal/dist/
H A DChangeLog.20031116 * lib/krb5/krb5_verify_user.3: .Sh EXAMPLE -> .Sh EXAMPLES, from
1119 * lib/krb5/krb5_openlog.3: .Sh EXAMPLE -> .Sh EXAMPLES, sort
1122 * lib/krb5/krb5_keytab.3: .Sh EXAMPLE -> .Sh EXAMPLES, mdoc fixes,
1125 * lib/krb5/krb5_get_krbhst.3: .Sh EXAMPLE -> .Sh EXAMPLES, from
1132 * lib/krb5/krb5.conf.5: .Sh EXAMPLE -> .Sh EXAMPLES, from netbsd
/netbsd/external/gpl3/gdb.old/dist/gdb/config/djgpp/
H A DREADME46 - GNU Sh-utils
/netbsd/external/gpl3/gdb/dist/gdb/config/djgpp/
H A DREADME46 - GNU Sh-utils
/netbsd/external/apache2/llvm/dist/llvm/lib/Target/ARM/
H A DARMISelDAGToDAG.cpp756 if (ConstantSDNode *Sh = in SelectLdStSOReg() local
758 ShAmt = Sh->getZExtValue(); in SelectLdStSOReg()
778 if (ConstantSDNode *Sh = in SelectLdStSOReg() local
780 ShAmt = Sh->getZExtValue(); in SelectLdStSOReg()
831 if (ConstantSDNode *Sh = dyn_cast<ConstantSDNode>(N.getOperand(1))) { in SelectAddrMode2OffsetReg() local
832 ShAmt = Sh->getZExtValue(); in SelectAddrMode2OffsetReg()
1505 if (ConstantSDNode *Sh = dyn_cast<ConstantSDNode>(OffReg.getOperand(1))) { in SelectT2AddrModeSoReg() local
1506 ShAmt = Sh->getZExtValue(); in SelectT2AddrModeSoReg()
/netbsd/external/gpl3/gcc.old/dist/gcc/config/arm/
H A Darm1136jfs.md61 ; e_1 = Sh/Mac1, e_2 = ALU/Mac2, e_3 = SAT/Mac3
/netbsd/external/gpl3/gcc/dist/gcc/config/arm/
H A Darm1136jfs.md61 ; e_1 = Sh/Mac1, e_2 = ALU/Mac2, e_3 = SAT/Mac3
/netbsd/external/gpl2/groff/dist/arch/djgpp/
H A DREADME194 - Sh-utils 1.12 (shl112b.zip)
/netbsd/external/bsd/ntp/dist/ntpd/
H A Dntp.conf.def90 .Sh Configuration Support
459 .Sh Authentication Support
1074 .Sh Monitoring Support
1433 .Sh Access Control Support
1723 .Sh Automatic NTP Configuration Options
2127 .Sh Reference Clock Support
2441 .Sh Miscellaneous Options

12