HomeSort by: relevance | last modified time | path
    Searched refs:Sh (Results 1 - 11 of 11) sorted by relevancy

  /src/external/apache2/llvm/dist/llvm/lib/Target/Hexagon/
BitTracker.cpp 253 BT::RegisterCell &BT::RegisterCell::rol(uint16_t Sh) {
255 // Swap the two parts: [0..W-Sh-1] [W-Sh..W-1]
257 Sh = Sh % W;
258 if (Sh == 0)
261 RegisterCell Tmp(W-Sh);
262 // Tmp = [0..W-Sh-1].
263 for (uint16_t i = 0; i < W-Sh; ++i)
265 // Shift [W-Sh..W-1] to [0..Sh-1]
    [all...]
BitTracker.h 319 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;
  /src/external/bsd/mdocml/dist/
mandoc.css 75 section.Sh { }
76 h1.Sh { margin-top: 1.2em;
266 h1.Sh, h2.Ss { position: relative; }
296 h1.Sh::before { content: "Sh"; }
311 h1.Sh::before, h2.Ss::before, .St::before, .Sx::before, .Sy::before,
332 .Rs:hover::before, h1.Sh:hover::before, h2.Ss:hover::before, .St:hover::before,
343 h1.Sh, h2.Ss { margin-left: 0em; }
  /src/external/apache2/llvm/dist/llvm/lib/Transforms/InstCombine/
InstCombinePHI.cpp 997 PHIUsageRecord(unsigned pn, unsigned Sh, Instruction *User)
998 : PHIId(pn), Shift(Sh), Inst(User) {}
1015 LoweredPHIRecord(PHINode *pn, unsigned Sh, Type *Ty)
1016 : PN(pn), Shift(Sh), Width(Ty->getPrimitiveSizeInBits()) {}
1019 LoweredPHIRecord(PHINode *pn, unsigned Sh)
1020 : PN(pn), Shift(Sh), Width(0) {}
InstCombineCasts.cpp 953 Value *Sh = ConstantInt::get(In->getType(),
955 In = Builder.CreateLShr(In, Sh, In->getName() + ".lobit");
1332 Value *Sh = ConstantInt::get(Op0->getType(),
1334 Value *In = Builder.CreateAShr(Op0, Sh, Op0->getName() + ".lobit");
  /src/external/apache2/llvm/dist/llvm/lib/Target/ARM/
ARMISelDAGToDAG.cpp 756 if (ConstantSDNode *Sh =
758 ShAmt = Sh->getZExtValue();
778 if (ConstantSDNode *Sh =
780 ShAmt = Sh->getZExtValue();
831 if (ConstantSDNode *Sh = dyn_cast<ConstantSDNode>(N.getOperand(1))) {
832 ShAmt = Sh->getZExtValue();
1505 if (ConstantSDNode *Sh = dyn_cast<ConstantSDNode>(OffReg.getOperand(1))) {
1506 ShAmt = Sh->getZExtValue();
  /src/external/bsd/ntp/dist/ntpd/
ntp.conf.def 90 .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
  /src/external/apache2/llvm/dist/llvm/lib/CodeGen/SelectionDAG/
LegalizeDAG.cpp 3755 SDValue Sh =
3759 VT.getScalarType(), Ex, Sh));
DAGCombiner.cpp 3890 SDValue Sh(nullptr, 0), Y(nullptr, 0);
3896 Sh = N0; Y = N1;
3900 Sh = N1; Y = N0;
3903 if (Sh.getNode()) {
3904 SDValue Mul = DAG.getNode(ISD::MUL, SDLoc(N), VT, Sh.getOperand(0), Y);
3905 return DAG.getNode(ISD::SHL, SDLoc(N), VT, Mul, Sh.getOperand(1));
  /src/crypto/external/bsd/heimdal/dist/
configure 1 #! /bin/sh
20 DUALCASE=1; export DUALCASE # for MKS sh
22 if test ${ZSH_VERSION+y} && (emulate sh) >/dev/null 2>&1
24 emulate sh
81 (PATH='/bin;/bin'; FPATH=$PATH; sh -c :) >/dev/null 2>&1 && {
82 (PATH='/bin:/bin'; FPATH=$PATH; sh -c :) >/dev/null 2>&1 ||
107 # We did not find ourselves, most probably we were run as `sh COMMAND'
145 if test \${ZSH_VERSION+y} && (emulate sh) >/dev/null 2>&1
147 emulate sh
219 for as_base in sh bash ksh sh5; d
    [all...]
  /src/external/apache2/llvm/dist/llvm/lib/Target/X86/
X86ISelLowering.cpp 10642 if (SDValue Sh = buildFromShuffleMostly(Op, DAG))
10643 return Sh;
    [all...]

Completed in 87 milliseconds