HomeSort by: relevance | last modified time | path
    Searched refs:Rhs (Results 1 - 25 of 56) sorted by relevancy

1 2 3

  /src/external/apache2/llvm/dist/clang/include/clang/Sema/
CleanupInfo.h 38 void mergeFrom(CleanupInfo Rhs) {
39 ExprNeedsCleanups |= Rhs.ExprNeedsCleanups;
40 CleanupsHaveSideEffects |= Rhs.CleanupsHaveSideEffects;
  /src/external/apache2/llvm/dist/llvm/include/llvm/Support/
Alignment.h 46 friend bool operator==(Align Lhs, Align Rhs);
47 friend bool operator!=(Align Lhs, Align Rhs);
48 friend bool operator<=(Align Lhs, Align Rhs);
49 friend bool operator>=(Align Lhs, Align Rhs);
50 friend bool operator<(Align Lhs, Align Rhs);
51 friend bool operator>(Align Lhs, Align Rhs);
247 /// Comparisons between Align and scalars. Rhs must be positive.
248 inline bool operator==(Align Lhs, uint64_t Rhs) {
249 ALIGN_CHECK_ISPOSITIVE(Rhs);
250 return Lhs.value() == Rhs;
    [all...]
  /src/external/gpl2/dtc/dist/
srcpos.h 70 #define YYLLOC_DEFAULT(Current, Rhs, N) \
73 (Current).first_line = YYRHSLOC(Rhs, 1).first_line; \
74 (Current).first_column = YYRHSLOC(Rhs, 1).first_column; \
75 (Current).last_line = YYRHSLOC(Rhs, N).last_line; \
76 (Current).last_column = YYRHSLOC (Rhs, N).last_column; \
77 (Current).file = YYRHSLOC(Rhs, N).file; \
80 YYRHSLOC(Rhs, 0).last_line; \
82 YYRHSLOC(Rhs, 0).last_column; \
83 (Current).file = YYRHSLOC (Rhs, 0).file; \
  /src/external/apache2/llvm/dist/llvm/utils/unittest/googletest/include/gtest/
gtest-matchers.h 526 // The following template definition assumes that the Rhs parameter is
528 template <typename D, typename Rhs, typename Op>
531 explicit ComparisonBase(const Rhs& rhs) : rhs_(rhs) {}
543 template <typename Lhs, typename = Rhs>
546 explicit Impl(const Rhs& rhs) : rhs_(rhs) {}
561 Rhs rhs_
    [all...]
  /src/external/apache2/llvm/dist/llvm/include/llvm/ADT/
ScopeExit.h 33 scope_exit(scope_exit &&Rhs)
34 : ExitFunction(std::move(Rhs.ExitFunction)), Engaged(Rhs.Engaged) {
35 Rhs.release();
  /src/external/apache2/llvm/dist/llvm/include/llvm/Object/
MachOUniversalWriter.h 79 friend bool operator<(const Slice &Lhs, const Slice &Rhs) {
80 if (Lhs.CPUType == Rhs.CPUType)
81 return Lhs.CPUSubType < Rhs.CPUSubType;
86 if (Rhs.CPUType == MachO::CPU_TYPE_ARM64)
89 return Lhs.P2Alignment < Rhs.P2Alignment;
  /src/external/apache2/llvm/dist/llvm/include/llvm/MC/
MCSymbolXCOFF.h 29 StringRef Lhs, Rhs;
30 std::tie(Lhs, Rhs) = Name.rsplit('[');
31 assert(!Rhs.empty() && "Invalid SMC format in XCOFF symbol.");
  /src/external/gpl3/gcc.old/dist/libphobos/src/std/
checkedint.d 141 $(TR $(TD `hookOpEquals`) $(TD If defined, $(D hook.hookOpEquals(get, rhs)) is
143 value `rhs` of integral, floating point, or Boolean type.)
145 $(TR $(TD `hookOpCmp`) $(TD If defined, $(D hook.hookOpCmp(get, rhs)) is
147 value `rhs` of integral, floating point, or Boolean type.)
155 $(TR $(TD `hookOpBinary`) $(TD If defined, $(D hook.hookOpBinary!op(get, rhs))
156 (where `op` is the operator symbol and `rhs` is the right-hand side operand) is
171 result of $(D hook.onOverflow!op(get, rhs)) is returned, but only if `Hook` does
175 rhs)) (where `op` is the operator symbol and `rhs` is the right-hand side
346 this(U)(U rhs)
    [all...]
  /src/external/apache2/llvm/dist/llvm/include/llvm/BinaryFormat/
MsgPackDocument.h 150 friend bool operator<(const DocNode &Lhs, const DocNode &Rhs) {
153 if (Rhs.isEmpty())
155 if (Lhs.KindAndDoc != Rhs.KindAndDoc) {
158 return (unsigned)Lhs.getKind() < (unsigned)Rhs.getKind();
162 return Lhs.Int < Rhs.Int;
164 return Lhs.UInt < Rhs.UInt;
168 return Lhs.Bool < Rhs.Bool;
170 return Lhs.Float < Rhs.Float;
173 return Lhs.Raw < Rhs.Raw;
180 friend bool operator==(const DocNode &Lhs, const DocNode &Rhs) {
    [all...]
  /src/external/apache2/llvm/dist/llvm/tools/llvm-rc/
ResourceScriptStmt.h 41 RCInt &operator+=(const RCInt &Rhs) {
42 std::tie(Val, Long) = std::make_pair(Val + Rhs.Val, Long | Rhs.Long);
46 RCInt &operator-=(const RCInt &Rhs) {
47 std::tie(Val, Long) = std::make_pair(Val - Rhs.Val, Long | Rhs.Long);
51 RCInt &operator|=(const RCInt &Rhs) {
52 std::tie(Val, Long) = std::make_pair(Val | Rhs.Val, Long | Rhs.Long);
56 RCInt &operator&=(const RCInt &Rhs) {
    [all...]
  /src/external/apache2/llvm/dist/llvm/include/llvm/MCA/HardwareUnits/
Scheduler.h 32 /// Returns true if Lhs should take priority over Rhs.
36 virtual bool compare(const InstRef &Lhs, const InstRef &Rhs) const = 0;
51 bool compare(const InstRef &Lhs, const InstRef &Rhs) const override {
53 int RhsRank = computeRank(Rhs);
58 return Lhs.getSourceIndex() < Rhs.getSourceIndex();
  /src/external/apache2/llvm/dist/clang/include/clang/StaticAnalyzer/Core/
CheckerRegistryData.h 126 bool operator==(const CheckerInfo &Rhs) const {
127 return FullName == Rhs.FullName;
152 bool operator==(const PackageInfo &Rhs) const {
153 return FullName == Rhs.FullName;
167 bool operator()(const T &Lhs, const T &Rhs) {
168 return Lhs.FullName < Rhs.FullName;
  /src/external/apache2/llvm/dist/llvm/lib/Analysis/
ImportedFunctionsInliningStatistics.cpp 205 const SortedNodesTy::value_type &Rhs) {
206 if (Lhs->second->NumberOfInlines != Rhs->second->NumberOfInlines)
207 return Lhs->second->NumberOfInlines > Rhs->second->NumberOfInlines;
208 if (Lhs->second->NumberOfRealInlines != Rhs->second->NumberOfRealInlines)
210 Rhs->second->NumberOfRealInlines;
211 return Lhs->first() < Rhs->first();
  /src/external/apache2/llvm/dist/llvm/lib/Transforms/Scalar/
MergeICmps.cpp 211 const BCEAtom &Rhs() const { return Rhs_; }
343 auto Rhs = visitICmpLoadOperand(CmpI->getOperand(1), BaseId);
344 if (!Rhs.BaseId)
347 return BCECmpBlock(std::move(Lhs), std::move(Rhs),
400 << Comparison.Rhs().BaseId << " + "
401 << Comparison.Rhs().Offset << "\n");
425 First.Rhs().BaseId == Second.Rhs().BaseId &&
427 First.Rhs().Offset + First.SizeBits() / 8 == Second.Rhs().Offset
    [all...]
  /src/external/apache2/llvm/dist/llvm/lib/CodeGen/
ExpandMemCmp.cpp 114 Value *Rhs = nullptr;
307 Value *Rhs = nullptr;
309 Rhs = ConstantFoldLoadFromConstPtr(C, LoadSizeType, DL);
310 if (!Rhs)
311 Rhs = Builder.CreateAlignedLoad(LoadSizeType, RhsSource, RhsAlign);
318 Rhs = Builder.CreateCall(Bswap, Rhs);
324 Rhs = Builder.CreateZExt(Rhs, CmpSizeType);
326 return {Lhs, Rhs};
    [all...]
CalcSpillWeights.cpp 206 bool operator<(const CopyHint &Rhs) const {
208 if (Reg.isPhysical() != Rhs.Reg.isPhysical())
210 if (Weight != Rhs.Weight)
211 return (Weight > Rhs.Weight);
212 return Reg.id() < Rhs.Reg.id(); // Tie-breaker.
  /src/external/apache2/llvm/dist/clang/lib/StaticAnalyzer/Checkers/
PointerArithChecker.cpp 324 const Expr *Rhs = BOp->getRHS();
327 if (Rhs->getType()->isIntegerType() && Lhs->getType()->isPointerType()) {
328 SVal RHSVal = C.getSVal(Rhs);
334 if (Lhs->getType()->isIntegerType() && Rhs->getType()->isPointerType()) {
338 reportPointerArithMisuse(Rhs, C);
  /src/sys/external/bsd/acpica/dist/compiler/
dtcompilerparser.tab.c 484 /* YYPRHS[YYN] -- Index of the first RHS symbol of rule number YYN in
492 /* YYRHS -- A `-1'-separated list of the rules' RHS. */
639 /* YYLLOC_DEFAULT -- Set CURRENT to span from RHS[1] to RHS[N].
641 the previous symbol: RHS[0] (always defined). */
643 #define YYRHSLOC(Rhs, K) ((Rhs)[K])
645 # define YYLLOC_DEFAULT(Current, Rhs, N) \
649 (Current).first_line = YYRHSLOC (Rhs, 1).first_line; \
650 (Current).first_column = YYRHSLOC (Rhs, 1).first_column;
    [all...]
dtparser.tab.c 503 /* YYPRHS[YYN] -- Index of the first RHS symbol of rule number YYN in
512 /* YYRHS -- A `-1'-separated list of the rules' RHS. */
721 /* YYLLOC_DEFAULT -- Set CURRENT to span from RHS[1] to RHS[N].
723 the previous symbol: RHS[0] (always defined). */
725 #define YYRHSLOC(Rhs, K) ((Rhs)[K])
727 # define YYLLOC_DEFAULT(Current, Rhs, N) \
731 (Current).first_line = YYRHSLOC (Rhs, 1).first_line; \
732 (Current).first_column = YYRHSLOC (Rhs, 1).first_column;
    [all...]
prparser.tab.c 505 /* YYPRHS[YYN] -- Index of the first RHS symbol of rule number YYN in
514 /* YYRHS -- A `-1'-separated list of the rules' RHS. */
724 /* YYLLOC_DEFAULT -- Set CURRENT to span from RHS[1] to RHS[N].
726 the previous symbol: RHS[0] (always defined). */
728 #define YYRHSLOC(Rhs, K) ((Rhs)[K])
730 # define YYLLOC_DEFAULT(Current, Rhs, N) \
734 (Current).first_line = YYRHSLOC (Rhs, 1).first_line; \
735 (Current).first_column = YYRHSLOC (Rhs, 1).first_column;
    [all...]
  /src/external/apache2/llvm/dist/clang/lib/CrossTU/
CrossTranslationUnit.cpp 61 bool hasEqualKnownFields(const llvm::Triple &Lhs, const llvm::Triple &Rhs) {
64 Rhs.getArch() != Triple::UnknownArch && Lhs.getArch() != Rhs.getArch())
67 Rhs.getSubArch() != Triple::NoSubArch &&
68 Lhs.getSubArch() != Rhs.getSubArch())
71 Rhs.getVendor() != Triple::UnknownVendor &&
72 Lhs.getVendor() != Rhs.getVendor())
74 if (!Lhs.isOSUnknown() && !Rhs.isOSUnknown() &&
75 Lhs.getOS() != Rhs.getOS())
78 Rhs.getEnvironment() != Triple::UnknownEnvironment &
    [all...]
  /src/external/apache2/llvm/dist/llvm/lib/FileCheck/
FileCheckImpl.h 160 const ExpressionValue &Rhs);
162 const ExpressionValue &Rhs);
164 const ExpressionValue &Rhs);
166 const ExpressionValue &Rhs);
168 const ExpressionValue &Rhs);
170 const ExpressionValue &Rhs);
  /src/external/apache2/llvm/dist/libcxx/benchmarks/
string.bench.cpp 404 auto Rhs = makeString(LHLength(), DiffType());
407 benchmark::DoNotOptimize(Rhs);
410 benchmark::DoNotOptimize(Lhs == Rhs);
413 benchmark::DoNotOptimize(Lhs < Rhs);
416 benchmark::DoNotOptimize(Lhs.compare(Rhs));
542 for (auto Rhs :
544 if (Lhs > Rhs)
546 const auto RhsString = makeString(Rhs);
551 static_cast<int>(Lhs), static_cast<int>(Rhs));
  /src/external/bsd/elftosb/dist/elftosb2/
elftosb_parser.tab.cpp 169 #define YYLLOC_DEFAULT(Current, Rhs, N) \
173 (Current).m_firstLine = YYRHSLOC(Rhs, 1).m_firstLine; \
174 (Current).m_lastLine = YYRHSLOC(Rhs, N).m_lastLine; \
178 (Current).m_firstLine = (Current).m_lastLine = YYRHSLOC(Rhs, 0).m_lastLine; \
446 /* YYPRHS[YYN] -- Index of the first RHS symbol of rule number YYN in
466 /* YYRHS -- A `-1'-separated list of the rules' RHS. */
869 /* YYLLOC_DEFAULT -- Set CURRENT to span from RHS[1] to RHS[N].
871 the previous symbol: RHS[0] (always defined). */
873 #define YYRHSLOC(Rhs, K) ((Rhs)[K]
    [all...]
  /src/external/gpl2/xcvs/dist/lib/
getdate.c 618 /* YYPRHS[YYN] -- Index of the first RHS symbol of rule number YYN in
633 /* YYRHS -- A `-1'-separated list of the rules' RHS. */
872 /* YYLLOC_DEFAULT -- Set CURRENT to span from RHS[1] to RHS[N].
874 the previous symbol: RHS[0] (always defined). */
876 #define YYRHSLOC(Rhs, K) ((Rhs)[K])
878 # define YYLLOC_DEFAULT(Current, Rhs, N) \
882 (Current).first_line = YYRHSLOC (Rhs, 1).first_line; \
883 (Current).first_column = YYRHSLOC (Rhs, 1).first_column;
    [all...]

Completed in 45 milliseconds

1 2 3