Searched refs:Rhs (Results 1 - 25 of 40) sorted by relevance

12

/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/Support/
H A DAlignment.h47 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);
52 friend bool operator>(Align Lhs, Align Rhs);
251 /// Comparisons between Align and scalars. Rhs must be positive.
252 inline bool operator==(Align Lhs, uint64_t Rhs) {
253 ALIGN_CHECK_ISPOSITIVE(Rhs);
254 return Lhs.value() == Rhs;
[all...]
/freebsd-11-stable/contrib/llvm-project/clang/include/clang/Sema/
H A DCleanupInfo.h38 void mergeFrom(CleanupInfo Rhs) { argument
39 ExprNeedsCleanups |= Rhs.ExprNeedsCleanups;
40 CleanupsHaveSideEffects |= Rhs.CleanupsHaveSideEffects;
/freebsd-11-stable/contrib/dtc/
H A Dsrcpos.h80 #define YYLLOC_DEFAULT(Current, Rhs, N) \
83 (Current).first_line = YYRHSLOC(Rhs, 1).first_line; \
84 (Current).first_column = YYRHSLOC(Rhs, 1).first_column; \
85 (Current).last_line = YYRHSLOC(Rhs, N).last_line; \
86 (Current).last_column = YYRHSLOC (Rhs, N).last_column; \
87 (Current).file = YYRHSLOC(Rhs, N).file; \
90 YYRHSLOC(Rhs, 0).last_line; \
92 YYRHSLOC(Rhs, 0).last_column; \
93 (Current).file = YYRHSLOC (Rhs, 0).file; \
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/ADT/
H A DScopeExit.h33 scope_exit(scope_exit &&Rhs) argument
34 : ExitFunction(std::move(Rhs.ExitFunction)), Engaged(Rhs.Engaged) {
35 Rhs.release();
H A DStringRef.h71 static int compareMemory(const char *Lhs, const char *Rhs, size_t Length) { argument
73 return ::memcmp(Lhs,Rhs,Length);
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Transforms/Utils/
H A DImportedFunctionsInliningStatistics.cpp193 const SortedNodesTy::value_type &Rhs) {
194 if (Lhs->second->NumberOfInlines != Rhs->second->NumberOfInlines)
195 return Lhs->second->NumberOfInlines > Rhs->second->NumberOfInlines;
196 if (Lhs->second->NumberOfRealInlines != Rhs->second->NumberOfRealInlines)
198 Rhs->second->NumberOfRealInlines;
199 return Lhs->first() < Rhs->first();
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/BinaryFormat/
H A DMsgPackDocument.h146 friend bool operator<(const DocNode &Lhs, const DocNode &Rhs) { argument
149 if (Lhs.KindAndDoc != Rhs.KindAndDoc) {
150 if (!Rhs.KindAndDoc)
154 return (unsigned)Lhs.getKind() < (unsigned)Rhs.getKind();
158 return Lhs.Int < Rhs.Int;
160 return Lhs.UInt < Rhs.UInt;
164 return Lhs.Bool < Rhs.Bool;
166 return Lhs.Float < Rhs.Float;
169 return Lhs.Raw < Rhs.Raw;
176 friend bool operator==(const DocNode &Lhs, const DocNode &Rhs) { argument
[all...]
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/MCA/HardwareUnits/
H A DScheduler.h32 /// 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();
/freebsd-11-stable/contrib/llvm-project/clang/lib/CrossTU/
H A DCrossTranslationUnit.cpp55 bool hasEqualKnownFields(const llvm::Triple &Lhs, const llvm::Triple &Rhs) { argument
58 Rhs.getArch() != Triple::UnknownArch && Lhs.getArch() != Rhs.getArch())
61 Rhs.getSubArch() != Triple::NoSubArch &&
62 Lhs.getSubArch() != Rhs.getSubArch())
65 Rhs.getVendor() != Triple::UnknownVendor &&
66 Lhs.getVendor() != Rhs.getVendor())
68 if (!Lhs.isOSUnknown() && !Rhs.isOSUnknown() &&
69 Lhs.getOS() != Rhs.getOS())
72 Rhs
[all...]
/freebsd-11-stable/crypto/heimdal/lib/com_err/
H A Dparse.c617 #define YYRHSLOC(Rhs, K) ((Rhs)[K])
619 # define YYLLOC_DEFAULT(Current, Rhs, N) \
623 (Current).first_line = YYRHSLOC (Rhs, 1).first_line; \
624 (Current).first_column = YYRHSLOC (Rhs, 1).first_column; \
625 (Current).last_line = YYRHSLOC (Rhs, N).last_line; \
626 (Current).last_column = YYRHSLOC (Rhs, N).last_column; \
631 YYRHSLOC (Rhs, 0).last_line; \
633 YYRHSLOC (Rhs, 0).last_column; \
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Transforms/Scalar/
H A DMergeICmps.cpp211 const BCEAtom &Rhs() const { return Rhs_; } function in class:__anon2735::BCECmpBlock
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()
622 Value *const Rhs = Builder.Insert(FirstCmp.Rhs().GEP->clone()); local
[all...]
H A DLowerMatrixIntrinsics.cpp711 const ColumnMatrixTy &Rhs = local
743 Value *RH = Builder.CreateExtractElement(Rhs.getColumn(J), K);
810 Value *Rhs = Inst->getOperand(1); local
816 ColumnMatrixTy LoweredRhs = getMatrix(Rhs, Shape, Builder);
/freebsd-11-stable/contrib/llvm-project/clang/include/clang/StaticAnalyzer/Frontend/
H A DCheckerRegistry.h174 bool operator==(const CheckerInfo &Rhs) const {
175 return FullName == Rhs.FullName;
198 bool operator==(const PackageInfo &Rhs) const {
199 return FullName == Rhs.FullName;
/freebsd-11-stable/contrib/llvm-project/clang/lib/StaticAnalyzer/Checkers/
H A DPointerArithChecker.cpp324 const Expr *Rhs = BOp->getRHS(); local
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);
H A DNullabilityChecker.cpp49 Nullability getMostNullable(Nullability Lhs, Nullability Rhs) { argument
51 std::min(static_cast<char>(Lhs), static_cast<char>(Rhs)));
224 bool operator==(NullabilityState Lhs, NullabilityState Rhs) { argument
225 return Lhs.getValue() == Rhs.getValue() &&
226 Lhs.getNullabilitySource() == Rhs.getNullabilitySource();
/freebsd-11-stable/crypto/heimdal/lib/asn1/
H A Dasn1parse.c1009 #define YYRHSLOC(Rhs, K) ((Rhs)[K])
1011 # define YYLLOC_DEFAULT(Current, Rhs, N) \
1015 (Current).first_line = YYRHSLOC (Rhs, 1).first_line; \
1016 (Current).first_column = YYRHSLOC (Rhs, 1).first_column; \
1017 (Current).last_line = YYRHSLOC (Rhs, N).last_line; \
1018 (Current).last_column = YYRHSLOC (Rhs, N).last_column; \
1023 YYRHSLOC (Rhs, 0).last_line; \
1025 YYRHSLOC (Rhs, 0).last_column; \
/freebsd-11-stable/crypto/heimdal/lib/sl/
H A Dslc-gram.c591 #define YYRHSLOC(Rhs, K) ((Rhs)[K])
593 # define YYLLOC_DEFAULT(Current, Rhs, N) \
597 (Current).first_line = YYRHSLOC (Rhs, 1).first_line; \
598 (Current).first_column = YYRHSLOC (Rhs, 1).first_column; \
599 (Current).last_line = YYRHSLOC (Rhs, N).last_line; \
600 (Current).last_column = YYRHSLOC (Rhs, N).last_column; \
605 YYRHSLOC (Rhs, 0).last_line; \
607 YYRHSLOC (Rhs, 0).last_column; \
/freebsd-11-stable/crypto/heimdal/appl/ftp/ftpd/
H A Dftpcmd.c1002 #define YYRHSLOC(Rhs, K) ((Rhs)[K])
1004 # define YYLLOC_DEFAULT(Current, Rhs, N) \
1008 (Current).first_line = YYRHSLOC (Rhs, 1).first_line; \
1009 (Current).first_column = YYRHSLOC (Rhs, 1).first_column; \
1010 (Current).last_line = YYRHSLOC (Rhs, N).last_line; \
1011 (Current).last_column = YYRHSLOC (Rhs, N).last_column; \
1016 YYRHSLOC (Rhs, 0).last_line; \
1018 YYRHSLOC (Rhs, 0).last_column; \
/freebsd-11-stable/contrib/gdb/gdb/
H A Dada-exp.c965 # define YYLLOC_DEFAULT(Current, Rhs, N) \
966 Current.first_line = Rhs[1].first_line; \
967 Current.first_column = Rhs[1].first_column; \
968 Current.last_line = Rhs[N].last_line; \
969 Current.last_column = Rhs[N].last_column;
H A Dm2-exp.c900 # define YYLLOC_DEFAULT(Current, Rhs, N) \
901 Current.first_line = Rhs[1].first_line; \
902 Current.first_column = Rhs[1].first_column; \
903 Current.last_line = Rhs[N].last_line; \
904 Current.last_column = Rhs[N].last_column;
H A Df-exp.c780 # define YYLLOC_DEFAULT(Current, Rhs, N) \
781 Current.first_line = Rhs[1].first_line; \
782 Current.first_column = Rhs[1].first_column; \
783 Current.last_line = Rhs[N].last_line; \
784 Current.last_column = Rhs[N].last_column;
H A Djv-exp.c839 # define YYLLOC_DEFAULT(Current, Rhs, N) \
840 Current.first_line = Rhs[1].first_line; \
841 Current.first_column = Rhs[1].first_column; \
842 Current.last_line = Rhs[N].last_line; \
843 Current.last_column = Rhs[N].last_column;
/freebsd-11-stable/contrib/llvm-project/llvm/lib/MCA/HardwareUnits/
H A DRegisterFile.cpp381 sort(Writes, [](const WriteRef &Lhs, const WriteRef &Rhs) {
382 return Lhs.getWriteState() < Rhs.getWriteState();
/freebsd-11-stable/contrib/llvm-project/llvm/tools/llvm-objcopy/ELF/
H A DObject.h369 bool operator()(const SectionBase *Lhs, const SectionBase *Rhs) const;
432 bool operator()(const SectionBase *Lhs, const SectionBase *Rhs) const {
436 if (Lhs->OriginalOffset == Rhs->OriginalOffset)
437 return Lhs < Rhs;
438 return Lhs->OriginalOffset < Rhs->OriginalOffset;
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/AVR/
H A DAVRISelDAGToDAG.cpp481 SDValue Rhs = N->getOperand(1); local
482 SDNode *Mul = CurDAG->getMachineNode(MachineOp, DL, MVT::Glue, Lhs, Rhs);

Completed in 322 milliseconds

12