Searched refs:RHS (Results 1 - 25 of 801) sorted by relevance

1234567891011>>

/openbsd-current/gnu/llvm/llvm/lib/IR/
H A DUse.cpp14 void Use::swap(Use &RHS) { argument
15 if (Val == RHS.Val)
18 std::swap(Val, RHS.Val);
19 std::swap(Next, RHS.Next);
20 std::swap(Prev, RHS.Prev);
26 *RHS.Prev = &RHS;
27 if (RHS.Next)
28 RHS.Next->Prev = &RHS
[all...]
/openbsd-current/gnu/llvm/llvm/include/llvm/DebugInfo/CodeView/
H A DGUID.h25 inline bool operator==(const GUID &LHS, const GUID &RHS) { argument
26 return 0 == ::memcmp(LHS.Guid, RHS.Guid, sizeof(LHS.Guid));
29 inline bool operator<(const GUID &LHS, const GUID &RHS) { argument
30 return ::memcmp(LHS.Guid, RHS.Guid, sizeof(LHS.Guid)) < 0;
33 inline bool operator<=(const GUID &LHS, const GUID &RHS) { argument
34 return ::memcmp(LHS.Guid, RHS.Guid, sizeof(LHS.Guid)) <= 0;
37 inline bool operator>(const GUID &LHS, const GUID &RHS) { argument
38 return !(LHS <= RHS);
41 inline bool operator>=(const GUID &LHS, const GUID &RHS) { argument
42 return !(LHS < RHS);
45 operator !=(const GUID &LHS, const GUID &RHS) argument
[all...]
/openbsd-current/gnu/llvm/llvm/lib/Support/
H A DSmallPtrSet.cpp144 void SmallPtrSetImplBase::CopyFrom(const SmallPtrSetImplBase &RHS) {
145 assert(&RHS != this && "Self-copy should be handled by the caller.");
147 if (isSmall() && RHS.isSmall())
148 assert(CurArraySize == RHS.CurArraySize &&
152 if (RHS.isSmall()) {
157 } else if (CurArraySize != RHS.CurArraySize) {
159 CurArray = (const void**)safe_malloc(sizeof(void*) * RHS.CurArraySize);
162 sizeof(void*) * RHS.CurArraySize);
167 CopyHelper(RHS);
170 void SmallPtrSetImplBase::CopyHelper(const SmallPtrSetImplBase &RHS) {
[all...]
/openbsd-current/gnu/llvm/llvm/include/llvm/Remarks/
H A DRemark.h115 bool operator<(const std::optional<T> &LHS, const std::optional<T> &RHS) { argument
119 if (!LHS && !RHS)
121 if (!LHS && RHS)
123 if (LHS && !RHS)
125 return *LHS < *RHS;
128 inline bool operator==(const RemarkLocation &LHS, const RemarkLocation &RHS) { argument
129 return LHS.SourceFilePath == RHS.SourceFilePath &&
130 LHS.SourceLine == RHS.SourceLine &&
131 LHS.SourceColumn == RHS.SourceColumn;
134 inline bool operator!=(const RemarkLocation &LHS, const RemarkLocation &RHS) { argument
138 operator <(const RemarkLocation &LHS, const RemarkLocation &RHS) argument
143 operator ==(const Argument &LHS, const Argument &RHS) argument
147 operator !=(const Argument &LHS, const Argument &RHS) argument
151 operator <(const Argument &LHS, const Argument &RHS) argument
156 operator ==(const Remark &LHS, const Remark &RHS) argument
163 operator !=(const Remark &LHS, const Remark &RHS) argument
167 operator <(const Remark &LHS, const Remark &RHS) argument
[all...]
/openbsd-current/gnu/llvm/clang/include/clang/Basic/
H A DThunk.h62 bool Less(const VirtualAdjustment &RHS) const {
63 return memcmp(this, &RHS, sizeof(RHS)) < 0;
72 const ReturnAdjustment &RHS) {
73 return LHS.NonVirtual == RHS.NonVirtual && LHS.Virtual.Equals(RHS.Virtual);
77 const ReturnAdjustment &RHS) {
78 return !(LHS == RHS);
82 const ReturnAdjustment &RHS) {
83 if (LHS.NonVirtual < RHS
71 operator ==(const ReturnAdjustment &LHS, const ReturnAdjustment &RHS) argument
76 operator !=(const ReturnAdjustment &LHS, const ReturnAdjustment &RHS) argument
81 operator <(const ReturnAdjustment &LHS, const ReturnAdjustment &RHS) argument
138 operator ==(const ThisAdjustment &LHS, const ThisAdjustment &RHS) argument
142 operator !=(const ThisAdjustment &LHS, const ThisAdjustment &RHS) argument
146 operator <(const ThisAdjustment &LHS, const ThisAdjustment &RHS) argument
176 operator ==(const ThunkInfo &LHS, const ThunkInfo &RHS) argument
[all...]
/openbsd-current/gnu/llvm/llvm/include/llvm/Support/
H A DInstructionCost.h56 void propagateState(const InstructionCost &RHS) { argument
57 if (RHS.State == Invalid)
95 /// invalid, and it also inherits any invalid state from the RHS.
99 InstructionCost &operator+=(const InstructionCost &RHS) { argument
100 propagateState(RHS);
104 if (AddOverflow(Value, RHS.Value, Result))
105 Result = RHS.Value > 0 ? getMaxValue() : getMinValue();
111 InstructionCost &operator+=(const CostType RHS) { argument
112 InstructionCost RHS2(RHS);
117 InstructionCost &operator-=(const InstructionCost &RHS) { argument
128 operator -=(const CostType RHS) argument
134 operator *=(const InstructionCost &RHS) argument
150 operator *=(const CostType RHS) argument
156 operator /=(const InstructionCost &RHS) argument
162 operator /=(const CostType RHS) argument
252 operator +(const InstructionCost &LHS, const InstructionCost &RHS) argument
259 operator -(const InstructionCost &LHS, const InstructionCost &RHS) argument
266 operator *(const InstructionCost &LHS, const InstructionCost &RHS) argument
273 operator /(const InstructionCost &LHS, const InstructionCost &RHS) argument
[all...]
H A DBranchProbability.h91 BranchProbability &operator+=(BranchProbability RHS) { argument
92 assert(N != UnknownN && RHS.N != UnknownN &&
95 N = (uint64_t(N) + RHS.N > D) ? D : N + RHS.N;
99 BranchProbability &operator-=(BranchProbability RHS) { argument
100 assert(N != UnknownN && RHS.N != UnknownN &&
103 N = N < RHS.N ? 0 : N - RHS.N;
107 BranchProbability &operator*=(BranchProbability RHS) {
108 assert(N != UnknownN && RHS
121 operator /=(BranchProbability RHS) argument
128 operator /=(uint32_t RHS) argument
[all...]
H A DTypeSize.h58 StackOffset operator+(const StackOffset &RHS) const {
59 return {Fixed + RHS.Fixed, Scalable + RHS.Scalable};
61 StackOffset operator-(const StackOffset &RHS) const {
62 return {Fixed - RHS.Fixed, Scalable - RHS.Scalable};
64 StackOffset &operator+=(const StackOffset &RHS) { argument
65 Fixed += RHS.Fixed;
66 Scalable += RHS.Scalable;
69 StackOffset &operator-=(const StackOffset &RHS) { argument
103 operator +=(LeafTy &LHS, const LeafTy &RHS) argument
109 operator -=(LeafTy &LHS, const LeafTy &RHS) argument
115 operator *=(LeafTy &LHS, ScalarTy RHS) argument
120 operator +(const LeafTy &LHS, const LeafTy &RHS) argument
125 operator -(const LeafTy &LHS, const LeafTy &RHS) argument
130 operator *(const LeafTy &LHS, ScalarTy RHS) argument
198 isKnownLT(const FixedOrScalableQuantity &LHS, const FixedOrScalableQuantity &RHS) argument
205 isKnownGT(const FixedOrScalableQuantity &LHS, const FixedOrScalableQuantity &RHS) argument
212 isKnownLE(const FixedOrScalableQuantity &LHS, const FixedOrScalableQuantity &RHS) argument
219 isKnownGE(const FixedOrScalableQuantity &LHS, const FixedOrScalableQuantity &RHS) argument
372 operator *(const TypeSize &LHS, const int RHS) argument
375 operator *(const TypeSize &LHS, const unsigned RHS) argument
378 operator *(const TypeSize &LHS, const int64_t RHS) argument
381 operator *(const int LHS, const TypeSize &RHS) argument
384 operator *(const unsigned LHS, const TypeSize &RHS) argument
387 operator *(const int64_t LHS, const TypeSize &RHS) argument
390 operator *(const uint64_t LHS, const TypeSize &RHS) argument
433 isEqual(const ElementCount &LHS, const ElementCount &RHS) argument
[all...]
H A DMemoryBufferRef.h41 const MemoryBufferRef &RHS) {
42 return LHS.Buffer.begin() == RHS.Buffer.begin() &&
43 LHS.Buffer.end() == RHS.Buffer.end() &&
44 LHS.Identifier.begin() == RHS.Identifier.begin() &&
45 LHS.Identifier.end() == RHS.Identifier.end();
49 const MemoryBufferRef &RHS) {
50 return !(LHS == RHS);
40 operator ==(const MemoryBufferRef &LHS, const MemoryBufferRef &RHS) argument
48 operator !=(const MemoryBufferRef &LHS, const MemoryBufferRef &RHS) argument
H A DBlockFrequency.h57 bool operator<(BlockFrequency RHS) const {
58 return Frequency < RHS.Frequency;
61 bool operator<=(BlockFrequency RHS) const {
62 return Frequency <= RHS.Frequency;
65 bool operator>(BlockFrequency RHS) const {
66 return Frequency > RHS.Frequency;
69 bool operator>=(BlockFrequency RHS) const {
70 return Frequency >= RHS.Frequency;
73 bool operator==(BlockFrequency RHS) const {
74 return Frequency == RHS
[all...]
H A DKnownBits.h314 /// Compute known bits common to LHS and RHS.
315 static KnownBits commonBits(const KnownBits &LHS, const KnownBits &RHS) { argument
316 return KnownBits(LHS.Zero & RHS.Zero, LHS.One & RHS.One);
319 /// Return true if LHS and RHS have no common bits set.
320 static bool haveNoCommonBitsSet(const KnownBits &LHS, const KnownBits &RHS) { argument
321 return (LHS.Zero | RHS.Zero).isAllOnes();
324 /// Compute known bits resulting from adding LHS, RHS and a 1-bit Carry.
326 const KnownBits &LHS, const KnownBits &RHS, const KnownBits &Carry);
328 /// Compute known bits resulting from adding LHS and RHS
435 operator &(KnownBits LHS, const KnownBits &RHS) argument
440 operator &(const KnownBits &LHS, KnownBits &&RHS) argument
445 operator |(KnownBits LHS, const KnownBits &RHS) argument
450 operator |(const KnownBits &LHS, KnownBits &&RHS) argument
455 operator ^(KnownBits LHS, const KnownBits &RHS) argument
460 operator ^(const KnownBits &LHS, KnownBits &&RHS) argument
[all...]
/openbsd-current/gnu/llvm/llvm/include/llvm/DebugInfo/DWARF/
H A DDWARFAddressRange.h42 /// Returns true if [LowPC, HighPC) intersects with [RHS.LowPC, RHS.HighPC).
43 bool intersects(const DWARFAddressRange &RHS) const {
44 assert(valid() && RHS.valid());
45 if (SectionIndex != RHS.SectionIndex)
48 if (LowPC == HighPC || RHS.LowPC == RHS.HighPC)
50 return LowPC < RHS.HighPC && RHS.LowPC < HighPC;
59 /// \param RHS Anothe
63 merge(const DWARFAddressRange &RHS) argument
75 operator <(const DWARFAddressRange &LHS, const DWARFAddressRange &RHS) argument
80 operator ==(const DWARFAddressRange &LHS, const DWARFAddressRange &RHS) argument
[all...]
/openbsd-current/gnu/llvm/llvm/include/llvm/DebugInfo/LogicalView/Core/
H A DLVSort.h33 const LVObject *RHS);
39 LVSortValue compareKind(const LVObject *LHS, const LVObject *RHS);
40 LVSortValue compareLine(const LVObject *LHS, const LVObject *RHS);
41 LVSortValue compareName(const LVObject *LHS, const LVObject *RHS);
42 LVSortValue compareOffset(const LVObject *LHS, const LVObject *RHS);
43 LVSortValue compareRange(const LVObject *LHS, const LVObject *RHS);
44 LVSortValue sortByKind(const LVObject *LHS, const LVObject *RHS);
45 LVSortValue sortByLine(const LVObject *LHS, const LVObject *RHS);
46 LVSortValue sortByName(const LVObject *LHS, const LVObject *RHS);
/openbsd-current/gnu/llvm/clang/include/clang/Edit/
H A DFileOffset.h37 friend bool operator==(FileOffset LHS, FileOffset RHS) { argument
38 return LHS.FID == RHS.FID && LHS.Offs == RHS.Offs;
41 friend bool operator!=(FileOffset LHS, FileOffset RHS) { argument
42 return !(LHS == RHS);
45 friend bool operator<(FileOffset LHS, FileOffset RHS) { argument
46 return std::tie(LHS.FID, LHS.Offs) < std::tie(RHS.FID, RHS.Offs);
49 friend bool operator>(FileOffset LHS, FileOffset RHS) { argument
50 return RHS < LH
53 operator >=(FileOffset LHS, FileOffset RHS) argument
57 operator <=(FileOffset LHS, FileOffset RHS) argument
[all...]
/openbsd-current/gnu/llvm/llvm/lib/Analysis/
H A DAliasAnalysisSummary.h119 inline bool operator==(InterfaceValue LHS, InterfaceValue RHS) { argument
120 return LHS.Index == RHS.Index && LHS.DerefLevel == RHS.DerefLevel;
122 inline bool operator!=(InterfaceValue LHS, InterfaceValue RHS) { argument
123 return !(LHS == RHS);
125 inline bool operator<(InterfaceValue LHS, InterfaceValue RHS) { argument
126 return LHS.Index < RHS.Index ||
127 (LHS.Index == RHS.Index && LHS.DerefLevel < RHS.DerefLevel);
129 inline bool operator>(InterfaceValue LHS, InterfaceValue RHS) { argument
132 operator <=(InterfaceValue LHS, InterfaceValue RHS) argument
135 operator >=(InterfaceValue LHS, InterfaceValue RHS) argument
144 addOffset(int64_t LHS, int64_t RHS) argument
158 operator ==(ExternalRelation LHS, ExternalRelation RHS) argument
161 operator !=(ExternalRelation LHS, ExternalRelation RHS) argument
164 operator <(ExternalRelation LHS, ExternalRelation RHS) argument
175 operator >(ExternalRelation LHS, ExternalRelation RHS) argument
178 operator <=(ExternalRelation LHS, ExternalRelation RHS) argument
181 operator >=(ExternalRelation LHS, ExternalRelation RHS) argument
209 operator ==(InstantiatedValue LHS, InstantiatedValue RHS) argument
212 operator !=(InstantiatedValue LHS, InstantiatedValue RHS) argument
215 operator <(InstantiatedValue LHS, InstantiatedValue RHS) argument
219 operator >(InstantiatedValue LHS, InstantiatedValue RHS) argument
222 operator <=(InstantiatedValue LHS, InstantiatedValue RHS) argument
225 operator >=(InstantiatedValue LHS, InstantiatedValue RHS) argument
261 isEqual(const cflaa::InstantiatedValue &LHS, const cflaa::InstantiatedValue &RHS) argument
[all...]
/openbsd-current/gnu/llvm/llvm/include/llvm/ADT/
H A DAPSInt.h64 APSInt &operator=(APInt RHS) { argument
66 APInt::operator=(std::move(RHS));
70 APSInt &operator=(uint64_t RHS) { argument
72 APInt::operator=(RHS);
126 const APSInt &operator%=(const APSInt &RHS) { argument
127 assert(IsUnsigned == RHS.IsUnsigned && "Signedness mismatch!");
129 *this = urem(RHS);
131 *this = srem(RHS);
134 const APSInt &operator/=(const APSInt &RHS) { argument
135 assert(IsUnsigned == RHS
239 operator +=(const APSInt &RHS) argument
244 operator -=(const APSInt &RHS) argument
249 operator *=(const APSInt &RHS) argument
254 operator &=(const APSInt &RHS) argument
259 operator |=(const APSInt &RHS) argument
264 operator ^=(const APSInt &RHS) argument
383 isEqual(const APSInt &LHS, const APSInt &RHS) argument
[all...]
/openbsd-current/gnu/llvm/llvm/include/llvm/DebugInfo/GSYM/
H A DLineEntry.h36 inline bool operator==(const LineEntry &LHS, const LineEntry &RHS) { argument
37 return LHS.Addr == RHS.Addr && LHS.File == RHS.File && LHS.Line == RHS.Line;
39 inline bool operator!=(const LineEntry &LHS, const LineEntry &RHS) { argument
40 return !(LHS == RHS);
42 inline bool operator<(const LineEntry &LHS, const LineEntry &RHS) { argument
43 return LHS.Addr < RHS.Addr;
H A DFunctionInfo.h182 inline bool operator==(const FunctionInfo &LHS, const FunctionInfo &RHS) { argument
183 return LHS.Range == RHS.Range && LHS.Name == RHS.Name &&
184 LHS.OptLineTable == RHS.OptLineTable && LHS.Inline == RHS.Inline;
186 inline bool operator!=(const FunctionInfo &LHS, const FunctionInfo &RHS) { argument
187 return !(LHS == RHS);
194 inline bool operator<(const FunctionInfo &LHS, const FunctionInfo &RHS) { argument
196 if (LHS.Range != RHS.Range)
197 return LHS.Range < RHS
[all...]
H A DLookupResult.h29 inline bool operator==(const SourceLocation &LHS, const SourceLocation &RHS) { argument
30 return LHS.Name == RHS.Name && LHS.Dir == RHS.Dir && LHS.Base == RHS.Base &&
31 LHS.Line == RHS.Line && LHS.Offset == RHS.Offset;
/openbsd-current/gnu/llvm/clang/lib/Tooling/
H A DNodeIntrospection.cpp46 const LocationCall *RHS) {
47 if (!LHS && !RHS)
49 if (LHS && !RHS)
51 if (!LHS && RHS)
53 auto compareResult = LHS->name().compare(RHS->name());
58 return locationCallLessThan(LHS->on(), RHS->on());
63 std::pair<SourceRange, SharedLocationCall> const &RHS) const {
64 if (LHS.first.getBegin() < RHS.first.getBegin())
66 else if (LHS.first.getBegin() != RHS.first.getBegin())
69 if (LHS.first.getEnd() < RHS
45 locationCallLessThan(const LocationCall *LHS, const LocationCall *RHS) argument
[all...]
/openbsd-current/gnu/llvm/clang/lib/Analysis/
H A DThreadSafetyLogical.cpp18 // to keep track of whether LHS and RHS are negated.
19 static bool implies(const LExpr *LHS, bool LNeg, const LExpr *RHS, bool RNeg) { argument
24 return implies(A->left(), LNeg, RHS, RNeg) &&
25 implies(A->right(), LNeg, RHS, RNeg);
34 return implies(A->left(), LNeg, RHS, RNeg) ||
35 implies(A->right(), LNeg, RHS, RNeg);
43 switch (RHS->kind()) {
49 return RNeg ? RightOrOperator(cast<And>(RHS))
50 : RightAndOperator(cast<And>(RHS));
56 return RNeg ? RightAndOperator(cast<Or>(RHS))
105 implies(const LExpr *LHS, const LExpr *RHS) argument
[all...]
/openbsd-current/gnu/llvm/clang/include/clang/APINotes/
H A DTypes.h89 CommonEntityInfo &operator|=(const CommonEntityInfo &RHS) { argument
91 if (RHS.Unavailable) {
94 UnavailableMsg = RHS.UnavailableMsg;
97 if (RHS.UnavailableInSwift) {
100 UnavailableMsg = RHS.UnavailableMsg;
104 setSwiftPrivate(RHS.isSwiftPrivate());
107 SwiftName = RHS.SwiftName;
116 const CommonEntityInfo &RHS) {
117 return LHS.UnavailableMsg == RHS.UnavailableMsg &&
118 LHS.Unavailable == RHS
115 operator ==(const CommonEntityInfo &LHS, const CommonEntityInfo &RHS) argument
124 operator !=(const CommonEntityInfo &LHS, const CommonEntityInfo &RHS) argument
171 operator |=(const CommonTypeInfo &RHS) argument
186 operator ==(const CommonTypeInfo &LHS, const CommonTypeInfo &RHS) argument
192 operator !=(const CommonTypeInfo &LHS, const CommonTypeInfo &RHS) argument
268 operator |=(const ObjCContextInfo &RHS) argument
291 operator ==(const ObjCContextInfo &LHS, const ObjCContextInfo &RHS) argument
299 operator !=(const ObjCContextInfo &LHS, const ObjCContextInfo &RHS) argument
334 operator |=(const VariableInfo &RHS) argument
348 operator ==(const VariableInfo &LHS, const VariableInfo &RHS) argument
354 operator !=(const VariableInfo &LHS, const VariableInfo &RHS) argument
380 operator |=(const ObjCContextInfo &RHS) argument
391 operator |=(const ObjCPropertyInfo &RHS) argument
403 operator ==(const ObjCPropertyInfo &LHS, const ObjCPropertyInfo &RHS) argument
409 operator !=(const ObjCPropertyInfo &LHS, const ObjCPropertyInfo &RHS) argument
452 operator |=(const ParamInfo &RHS) argument
471 operator ==(const ParamInfo &LHS, const ParamInfo &RHS) argument
478 operator !=(const ParamInfo &LHS, const ParamInfo &RHS) argument
588 operator ==(const FunctionInfo &LHS, const FunctionInfo &RHS) argument
597 operator !=(const FunctionInfo &LHS, const FunctionInfo &RHS) argument
614 operator |=(const ObjCContextInfo &RHS) argument
628 operator ==(const ObjCMethodInfo &LHS, const ObjCMethodInfo &RHS) argument
634 operator !=(const ObjCMethodInfo &LHS, const ObjCMethodInfo &RHS) argument
676 operator |=(const TagInfo &RHS) argument
693 operator ==(const TagInfo &LHS, const TagInfo &RHS) argument
699 operator !=(const TagInfo &LHS, const TagInfo &RHS) argument
710 operator |=(const TypedefInfo &RHS) argument
722 operator ==(const TypedefInfo &LHS, const TypedefInfo &RHS) argument
727 operator !=(const TypedefInfo &LHS, const TypedefInfo &RHS) argument
[all...]
/openbsd-current/gnu/llvm/llvm/lib/DebugInfo/LogicalView/Core/
H A DLVSort.cpp28 const LVObject *RHS) {
29 return std::string(LHS->kind()) < std::string(RHS->kind());
34 const LVObject *RHS) {
35 return LHS->getLineNumber() < RHS->getLineNumber();
40 const LVObject *RHS) {
41 return LHS->getName() < RHS->getName();
46 const LVObject *RHS) {
47 return LHS->getOffset() < RHS->getOffset();
52 const LVObject *RHS) {
53 if (LHS->getLowerAddress() < RHS
27 compareKind(const LVObject *LHS, const LVObject *RHS) argument
33 compareLine(const LVObject *LHS, const LVObject *RHS) argument
39 compareName(const LVObject *LHS, const LVObject *RHS) argument
45 compareOffset(const LVObject *LHS, const LVObject *RHS) argument
51 compareRange(const LVObject *LHS, const LVObject *RHS) argument
65 sortByKind(const LVObject *LHS, const LVObject *RHS) argument
77 sortByLine(const LVObject *LHS, const LVObject *RHS) argument
89 sortByName(const LVObject *LHS, const LVObject *RHS) argument
[all...]
/openbsd-current/gnu/llvm/llvm/include/llvm/TextAPI/
H A DTarget.h42 inline bool operator==(const Target &LHS, const Target &RHS) { argument
43 return std::tie(LHS.Arch, LHS.Platform) == std::tie(RHS.Arch, RHS.Platform);
46 inline bool operator!=(const Target &LHS, const Target &RHS) { argument
47 return std::tie(LHS.Arch, LHS.Platform) != std::tie(RHS.Arch, RHS.Platform);
50 inline bool operator<(const Target &LHS, const Target &RHS) { argument
51 return std::tie(LHS.Arch, LHS.Platform) < std::tie(RHS.Arch, RHS.Platform);
54 inline bool operator==(const Target &LHS, const Architecture &RHS) { argument
58 operator !=(const Target &LHS, const Architecture &RHS) argument
[all...]
/openbsd-current/gnu/llvm/lldb/include/lldb/Utility/
H A DUUID.h96 friend bool operator==(const UUID &LHS, const UUID &RHS) { argument
97 return LHS.m_bytes == RHS.m_bytes;
99 friend bool operator!=(const UUID &LHS, const UUID &RHS) { argument
100 return !(LHS == RHS);
102 friend bool operator<(const UUID &LHS, const UUID &RHS) { argument
103 return LHS.m_bytes < RHS.m_bytes;
105 friend bool operator<=(const UUID &LHS, const UUID &RHS) { argument
106 return !(RHS < LHS);
108 friend bool operator>(const UUID &LHS, const UUID &RHS) { return RHS < LH argument
109 operator >=(const UUID &LHS, const UUID &RHS) argument
[all...]

Completed in 642 milliseconds

1234567891011>>