Home
last modified time | relevance | path

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

12

/freebsd/contrib/llvm-project/clang/include/clang/Basic/
H A Darm_fp16.td20 def VNEGSH : SInst<"vneg", "11", "Sh">;
23 def SCALAR_FRECPSH : IInst<"vrecps", "111", "Sh">;
24 def FSQRTSH : SInst<"vsqrt", "11", "Sh">;
25 def SCALAR_FRSQRTSH : IInst<"vrsqrts", "111", "Sh">;
28 def SCALAR_FRECPEH : IInst<"vrecpe", "11", "Sh">;
31 def SCALAR_FRECPXH : IInst<"vrecpx", "11", "Sh">;
34 def SCALAR_FRSQRTEH : IInst<"vrsqrte", "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">;
[all …]
H A Darm_neon.td1821 def SCALAR_FMLA_LANEH : IInst<"vfma_lane", "111.I", "Sh",
1823 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>;
1837 def SCALAR_FMUL_LANEH : IOpInst<"vmul_lane", "11.I", "Sh", OP_SCALAR_MUL_LN>;
1838 def SCALAR_FMUL_LANEQH : IOpInst<"vmul_laneq", "11QI", "Sh", OP_SCALAR_MUL_LN>;
1845 def SCALAR_FMULX_LANEH : IInst<"vmulx_lane", "11.I", "Sh",
1847 def SCALAR_FMULX_LANEQH : IInst<"vmulx_laneq", "11QI", "Sh",
1865 def SCALAR_VDUP_LANEH : IInst<"vdup_lane", "1.I", "Sh",
1867 def SCALAR_VDUP_LANEQH : IInst<"vdup_laneq", "1QI", "Sh",
/freebsd/contrib/libxo/libxo/
H A Dadd.man.in1 .Sh ADDITIONAL DOCUMENTATION
23 .Sh HISTORY
28 .Sh AUTHOR
/freebsd/lib/libxo/
H A Dadd.man1 .Sh ADDITIONAL DOCUMENTATION
23 .Sh HISTORY
28 .Sh AUTHOR
/freebsd/tools/tools/sysdoc/
H A Dsysdoc.sh37 .Sh IMPLEMENTATION NOTES
48 .Sh SEE ALSO
57 .Sh AUTHORS
67 .Sh BUGS
/freebsd/contrib/llvm-project/llvm/lib/Target/Hexagon/
H A DBitTracker.cpp248 BT::RegisterCell &BT::RegisterCell::rol(uint16_t Sh) { in rol() argument
252 Sh = Sh % W; in rol()
253 if (Sh == 0) in rol()
256 RegisterCell Tmp(W-Sh); in rol()
258 for (uint16_t i = 0; i < W-Sh; ++i) in rol()
261 for (uint16_t i = 0; i < Sh; ++i) in rol()
262 Bits[i] = Bits[W-Sh+i]; in rol()
264 for (uint16_t i = 0; i < W-Sh; ++i) in rol()
265 Bits[i+Sh] = Tmp.Bits[i]; in rol()
514 uint16_t Sh) const { in eASL()
[all …]
H A DBitTracker.h316 RegisterCell &rol(uint16_t Sh); // Rotate left.
424 RegisterCell eASL(const RegisterCell &A1, uint16_t Sh) const;
425 RegisterCell eLSR(const RegisterCell &A1, uint16_t Sh) const;
426 RegisterCell eASR(const RegisterCell &A1, uint16_t Sh) const;
/freebsd/tools/build/options/
H A Dmakeman403 .Sh FILES
409 .Sh SEE ALSO
414 .Sh HISTORY
419 .Sh AUTHORS
/freebsd/contrib/mandoc/
H A Dmandoc.css83 section.Sh { }
84 h2.Sh { margin-top: 1.2em;
275 h2.Sh, h3.Ss { position: relative; }
305 h2.Sh::before { content: "Sh"; }
320 h2.Sh::before, h3.Ss::before, .St::before, .Sx::before, .Sy::before,
341 .Rs:hover::before, h2.Sh:hover::before, h3.Ss:hover::before, .St:hover::before,
351 h2.Sh, h3.Ss { margin-left: 0em; }
H A DTODO165 - .Sh and .Ss should be parsed and partially callable, see groff_mdoc(7)
178 .Sh .Nm .Bk .Nm .Ek .Sh found by jmc@ in ssh-keygen(1)
692 - warn about duplicate .Sh/.Ss heads
707 - warn when .Sh or .Ss contain other macros
717 .Fn Po prints "Po()", .Ar Sh prints "file ..." and no "Sh".
H A DNEWS361 array if .sp or a blank line precede the first .Sh macro.
517 of the first .Sh was an empty in-line macro.
871 * Fix NULL pointer access triggered by .Sh Xo .Sh without .Xc.
946 * In the mdoc(7) parser, a crash was fixed related to weird .Sh headers.
/freebsd/contrib/openpam/doc/man/
H A Dopenpam.man1 .Sh DESCRIPTION
H A Dpam.man1 .Sh DESCRIPTION
/freebsd/contrib/sendmail/cf/ostype/
H A Dqnx.m419 _DEFIFNOT(`LOCAL_MAILER_FLAGS', `Sh')dnl
/freebsd/contrib/libfido2/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; }
/freebsd/contrib/llvm-project/llvm/lib/Transforms/InstCombine/
H A DInstCombinePHI.cpp1045 PHIUsageRecord(unsigned Pn, unsigned Sh, Instruction *User) in PHIUsageRecord()
1046 : PHIId(Pn), Shift(Sh), Inst(User) {} in PHIUsageRecord()
1063 LoweredPHIRecord(PHINode *Phi, unsigned Sh, Type *Ty) in LoweredPHIRecord()
1064 : PN(Phi), Shift(Sh), Width(Ty->getPrimitiveSizeInBits()) {} in LoweredPHIRecord()
1067 LoweredPHIRecord(PHINode *Phi, unsigned Sh) : PN(Phi), Shift(Sh), Width(0) {} in LoweredPHIRecord()
H A DInstCombineCasts.cpp989 Value *Sh = ConstantInt::get(In->getType(), in transformZExtICmp() local
991 In = Builder.CreateLShr(In, Sh, In->getName() + ".lobit"); in transformZExtICmp()
1357 Value *Sh = ConstantInt::get(Op0->getType(), in transformSExtICmp() local
1359 Value *In = Builder.CreateAShr(Op0, Sh, Op0->getName() + ".lobit"); in transformSExtICmp()
/freebsd/contrib/ntp/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)) :+][+:
/freebsd/sys/contrib/device-tree/Bindings/dma/
H A Drenesas,shdma.txt3 Sh-/r-mobile and R-Car systems often have multiple identical DMA controller
/freebsd/crypto/heimdal/
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
/freebsd/contrib/llvm-project/llvm/lib/Target/ARM/
H A DARMISelDAGToDAG.cpp770 if (ConstantSDNode *Sh = in SelectLdStSOReg() local
772 ShAmt = Sh->getZExtValue(); in SelectLdStSOReg()
792 if (ConstantSDNode *Sh = in SelectLdStSOReg() local
794 ShAmt = Sh->getZExtValue(); in SelectLdStSOReg()
845 if (ConstantSDNode *Sh = dyn_cast<ConstantSDNode>(N.getOperand(1))) { in SelectAddrMode2OffsetReg() local
846 ShAmt = Sh->getZExtValue(); in SelectAddrMode2OffsetReg()
1517 if (ConstantSDNode *Sh = dyn_cast<ConstantSDNode>(OffReg.getOperand(1))) { in SelectT2AddrModeSoReg() local
1518 ShAmt = Sh->getZExtValue(); in SelectT2AddrModeSoReg()
/freebsd/contrib/ntp/ntpd/
H A Dntp.conf.def90 .Sh Configuration Support
447 .Sh Authentication Support
1053 .Sh Monitoring Support
1412 .Sh Access Control Support
1731 .Sh Automatic NTP Configuration Options
2135 .Sh Reference Clock Support
2449 .Sh Miscellaneous Options
/freebsd/contrib/ntp/util/
H A Dntp-keygen-opts.def1191 8 MD5 45:V,r4]l6y^JH6"Sh?F # MD5 key

12