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

1234567891011>>

/netbsd-current/external/apache2/llvm/dist/llvm/lib/IR/
H A DUse.cpp16 void Use::swap(Use &RHS) { argument
17 if (Val == RHS.Val)
20 std::swap(Val, RHS.Val);
21 std::swap(Next, RHS.Next);
22 std::swap(Prev, RHS.Prev);
28 *RHS.Prev = &RHS;
29 if (RHS.Next)
30 RHS.Next->Prev = &RHS
[all...]
/netbsd-current/external/apache2/llvm/dist/llvm/include/llvm/Support/
H A DInstructionCost.h42 void propagateState(const InstructionCost &RHS) { argument
43 if (RHS.State == Invalid)
76 /// invalid, and it also inherits any invalid state from the RHS. Regardless
80 InstructionCost &operator+=(const InstructionCost &RHS) { argument
81 propagateState(RHS);
82 Value += RHS.Value;
86 InstructionCost &operator+=(const CostType RHS) { argument
87 InstructionCost RHS2(RHS);
92 InstructionCost &operator-=(const InstructionCost &RHS) { argument
93 propagateState(RHS);
98 operator -=(const CostType RHS) argument
104 operator *=(const InstructionCost &RHS) argument
110 operator *=(const CostType RHS) argument
116 operator /=(const InstructionCost &RHS) argument
122 operator /=(const CostType RHS) argument
212 operator +(const InstructionCost &LHS, const InstructionCost &RHS) argument
219 operator -(const InstructionCost &LHS, const InstructionCost &RHS) argument
226 operator *(const InstructionCost &LHS, const InstructionCost &RHS) argument
233 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 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.h58 bool operator<(BlockFrequency RHS) const {
59 return Frequency < RHS.Frequency;
62 bool operator<=(BlockFrequency RHS) const {
63 return Frequency <= RHS.Frequency;
66 bool operator>(BlockFrequency RHS) const {
67 return Frequency > RHS.Frequency;
70 bool operator>=(BlockFrequency RHS) const {
71 return Frequency >= RHS.Frequency;
74 bool operator==(BlockFrequency RHS) const {
75 return Frequency == RHS
[all...]
H A DTypeSize.h62 friend LeafTy &operator+=(LeafTy &LHS, const LeafTy &RHS) { argument
64 LHS.Coefficients[I] += RHS.Coefficients[I];
68 friend LeafTy &operator-=(LeafTy &LHS, const LeafTy &RHS) { argument
70 LHS.Coefficients[I] -= RHS.Coefficients[I];
74 friend LeafTy &operator*=(LeafTy &LHS, ScalarTy RHS) { argument
76 C *= RHS;
80 friend LeafTy operator+(const LeafTy &LHS, const LeafTy &RHS) { argument
82 return Copy += RHS;
85 friend LeafTy operator-(const LeafTy &LHS, const LeafTy &RHS) { argument
87 return Copy -= RHS;
90 operator *(const LeafTy &LHS, ScalarTy RHS) argument
329 isKnownLT(const LinearPolySize &LHS, const LinearPolySize &RHS) argument
335 isKnownGT(const LinearPolySize &LHS, const LinearPolySize &RHS) argument
341 isKnownLE(const LinearPolySize &LHS, const LinearPolySize &RHS) argument
347 isKnownGE(const LinearPolySize &LHS, const LinearPolySize &RHS) argument
457 operator *(const TypeSize &LHS, const int RHS) argument
460 operator *(const TypeSize &LHS, const unsigned RHS) argument
463 operator *(const TypeSize &LHS, const int64_t RHS) argument
466 operator *(const int LHS, const TypeSize &RHS) argument
469 operator *(const unsigned LHS, const TypeSize &RHS) argument
472 operator *(const int64_t LHS, const TypeSize &RHS) argument
475 operator *(const uint64_t LHS, const TypeSize &RHS) argument
519 isEqual(const ElementCount &LHS, const ElementCount &RHS) argument
[all...]
H A DKnownBits.h283 /// Compute known bits common to LHS and RHS.
284 static KnownBits commonBits(const KnownBits &LHS, const KnownBits &RHS) { argument
285 return KnownBits(LHS.Zero & RHS.Zero, LHS.One & RHS.One);
288 /// Return true if LHS and RHS have no common bits set.
289 static bool haveNoCommonBitsSet(const KnownBits &LHS, const KnownBits &RHS) { argument
290 return (LHS.Zero | RHS.Zero).isAllOnesValue();
293 /// Compute known bits resulting from adding LHS, RHS and a 1-bit Carry.
295 const KnownBits &LHS, const KnownBits &RHS, const KnownBits &Carry);
297 /// Compute known bits resulting from adding LHS and RHS
409 operator &(KnownBits LHS, const KnownBits &RHS) argument
414 operator &(const KnownBits &LHS, KnownBits &&RHS) argument
419 operator |(KnownBits LHS, const KnownBits &RHS) argument
424 operator |(const KnownBits &LHS, KnownBits &&RHS) argument
429 operator ^(KnownBits LHS, const KnownBits &RHS) argument
434 operator ^(const KnownBits &LHS, KnownBits &&RHS) argument
[all...]
H A DSMTAPI.h67 friend bool operator==(SMTSort const &LHS, SMTSort const &RHS) { argument
68 return LHS.equal_to(RHS);
114 friend bool operator==(SMTExpr const &LHS, SMTExpr const &RHS) { argument
115 return LHS.equal_to(RHS);
184 virtual SMTExprRef mkBVAdd(const SMTExprRef &LHS, const SMTExprRef &RHS) = 0;
187 virtual SMTExprRef mkBVSub(const SMTExprRef &LHS, const SMTExprRef &RHS) = 0;
190 virtual SMTExprRef mkBVMul(const SMTExprRef &LHS, const SMTExprRef &RHS) = 0;
193 virtual SMTExprRef mkBVSRem(const SMTExprRef &LHS, const SMTExprRef &RHS) = 0;
196 virtual SMTExprRef mkBVURem(const SMTExprRef &LHS, const SMTExprRef &RHS) = 0;
199 virtual SMTExprRef mkBVSDiv(const SMTExprRef &LHS, const SMTExprRef &RHS)
[all...]
/netbsd-current/external/apache2/llvm/dist/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...]
/netbsd-current/external/apache2/llvm/dist/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...]
H A DKnownBits.cpp22 const KnownBits &LHS, const KnownBits &RHS,
27 APInt PossibleSumZero = LHS.getMaxValue() + RHS.getMaxValue() + !CarryZero;
28 APInt PossibleSumOne = LHS.getMinValue() + RHS.getMinValue() + CarryOne;
31 APInt CarryKnownZero = ~(PossibleSumZero ^ LHS.Zero ^ RHS.Zero);
32 APInt CarryKnownOne = PossibleSumOne ^ LHS.One ^ RHS.One;
36 APInt RHSKnownUnion = RHS.Zero | RHS.One;
51 const KnownBits &LHS, const KnownBits &RHS, const KnownBits &Carry) {
54 LHS, RHS, Carry.Zero.getBoolValue(), Carry.One.getBoolValue());
58 const KnownBits &LHS, KnownBits RHS) {
21 computeForAddCarry( const KnownBits &LHS, const KnownBits &RHS, bool CarryZero, bool CarryOne) argument
50 computeForAddCarry( const KnownBits &LHS, const KnownBits &RHS, const KnownBits &Carry) argument
57 computeForAddSub(bool Add, bool NSW, const KnownBits &LHS, KnownBits RHS) argument
117 umax(const KnownBits &LHS, const KnownBits &RHS) argument
135 umin(const KnownBits &LHS, const KnownBits &RHS) argument
141 smax(const KnownBits &LHS, const KnownBits &RHS) argument
154 smin(const KnownBits &LHS, const KnownBits &RHS) argument
167 shl(const KnownBits &LHS, const KnownBits &RHS) argument
221 lshr(const KnownBits &LHS, const KnownBits &RHS) argument
274 ashr(const KnownBits &LHS, const KnownBits &RHS) argument
333 eq(const KnownBits &LHS, const KnownBits &RHS) argument
341 ne(const KnownBits &LHS, const KnownBits &RHS) argument
347 ugt(const KnownBits &LHS, const KnownBits &RHS) argument
357 uge(const KnownBits &LHS, const KnownBits &RHS) argument
363 ult(const KnownBits &LHS, const KnownBits &RHS) argument
367 ule(const KnownBits &LHS, const KnownBits &RHS) argument
371 sgt(const KnownBits &LHS, const KnownBits &RHS) argument
381 sge(const KnownBits &LHS, const KnownBits &RHS) argument
387 slt(const KnownBits &LHS, const KnownBits &RHS) argument
391 sle(const KnownBits &LHS, const KnownBits &RHS) argument
415 mul(const KnownBits &LHS, const KnownBits &RHS) argument
495 mulhs(const KnownBits &LHS, const KnownBits &RHS) argument
504 mulhu(const KnownBits &LHS, const KnownBits &RHS) argument
513 udiv(const KnownBits &LHS, const KnownBits &RHS) argument
531 urem(const KnownBits &LHS, const KnownBits &RHS) argument
552 srem(const KnownBits &LHS, const KnownBits &RHS) argument
583 operator &=(const KnownBits &RHS) argument
591 operator |=(const KnownBits &RHS) argument
599 operator ^=(const KnownBits &RHS) argument
[all...]
/netbsd-current/external/apache2/llvm/dist/llvm/include/llvm/Remarks/
H A DRemark.h115 bool operator<(const Optional<T> &LHS, const 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...]
/netbsd-current/external/apache2/llvm/dist/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...]
/netbsd-current/external/apache2/llvm/dist/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...]
/netbsd-current/external/apache2/llvm/dist/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...]
/netbsd-current/external/apache2/llvm/dist/llvm/include/llvm/TextAPI/
H A DTarget.h40 inline bool operator==(const Target &LHS, const Target &RHS) { argument
41 return std::tie(LHS.Arch, LHS.Platform) == std::tie(RHS.Arch, RHS.Platform);
44 inline bool operator!=(const Target &LHS, const Target &RHS) { argument
45 return std::tie(LHS.Arch, LHS.Platform) != std::tie(RHS.Arch, RHS.Platform);
48 inline bool operator<(const Target &LHS, const Target &RHS) { argument
49 return std::tie(LHS.Arch, LHS.Platform) < std::tie(RHS.Arch, RHS.Platform);
52 inline bool operator==(const Target &LHS, const Architecture &RHS) { argument
56 operator !=(const Target &LHS, const Architecture &RHS) argument
[all...]
/netbsd-current/external/apache2/llvm/dist/llvm/include/llvm/ADT/
H A DAPSInt.h63 APSInt &operator=(APInt RHS) { argument
65 APInt::operator=(std::move(RHS));
69 APSInt &operator=(uint64_t RHS) { argument
71 APInt::operator=(RHS);
116 const APSInt &operator%=(const APSInt &RHS) { argument
117 assert(IsUnsigned == RHS.IsUnsigned && "Signedness mismatch!");
119 *this = urem(RHS);
121 *this = srem(RHS);
124 const APSInt &operator/=(const APSInt &RHS) { argument
125 assert(IsUnsigned == RHS
223 operator +=(const APSInt& RHS) argument
228 operator -=(const APSInt& RHS) argument
233 operator *=(const APSInt& RHS) argument
238 operator &=(const APSInt& RHS) argument
243 operator |=(const APSInt& RHS) argument
248 operator ^=(const APSInt& RHS) argument
[all...]
/netbsd-current/external/apache2/llvm/dist/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 DLookupResult.h30 inline bool operator==(const SourceLocation &LHS, const SourceLocation &RHS) { argument
31 return LHS.Name == RHS.Name && LHS.Dir == RHS.Dir &&
32 LHS.Base == RHS.Base && LHS.Line == RHS.Line &&
33 LHS.Offset == RHS.Offset;
/netbsd-current/external/apache2/llvm/dist/llvm/include/llvm/DebugInfo/DWARF/
H A DDWARFAddressRange.h39 /// Returns true if [LowPC, HighPC) intersects with [RHS.LowPC, RHS.HighPC).
40 bool intersects(const DWARFAddressRange &RHS) const {
41 assert(valid() && RHS.valid());
43 if (LowPC == HighPC || RHS.LowPC == RHS.HighPC)
45 return LowPC < RHS.HighPC && RHS.LowPC < HighPC;
54 /// \param RHS Another address range to combine with.
58 bool merge(const DWARFAddressRange &RHS) { argument
70 operator <(const DWARFAddressRange &LHS, const DWARFAddressRange &RHS) argument
75 operator ==(const DWARFAddressRange &LHS, const DWARFAddressRange &RHS) argument
[all...]
/netbsd-current/external/apache2/llvm/dist/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...]
/netbsd-current/external/apache2/llvm/dist/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...]
/netbsd-current/external/apache2/llvm/dist/clang/include/clang/Sema/
H A DWeak.h37 bool operator==(WeakInfo RHS) const {
38 return alias == RHS.getAlias() && loc == RHS.getLocation();
40 bool operator!=(WeakInfo RHS) const { return !(*this == RHS); }
/netbsd-current/external/apache2/llvm/dist/clang/include/clang/APINotes/
H A DTypes.h85 CommonEntityInfo &operator|=(const CommonEntityInfo &RHS) { argument
87 if (RHS.Unavailable) {
90 UnavailableMsg = RHS.UnavailableMsg;
93 if (RHS.UnavailableInSwift) {
96 UnavailableMsg = RHS.UnavailableMsg;
100 setSwiftPrivate(RHS.isSwiftPrivate());
103 SwiftName = RHS.SwiftName;
112 const CommonEntityInfo &RHS) {
113 return LHS.UnavailableMsg == RHS.UnavailableMsg &&
114 LHS.Unavailable == RHS
111 operator ==(const CommonEntityInfo &LHS, const CommonEntityInfo &RHS) argument
120 operator !=(const CommonEntityInfo &LHS, const CommonEntityInfo &RHS) argument
167 operator |=(const CommonTypeInfo &RHS) argument
182 operator ==(const CommonTypeInfo &LHS, const CommonTypeInfo &RHS) argument
188 operator !=(const CommonTypeInfo &LHS, const CommonTypeInfo &RHS) argument
264 operator |=(const ObjCContextInfo &RHS) argument
287 operator ==(const ObjCContextInfo &LHS, const ObjCContextInfo &RHS) argument
295 operator !=(const ObjCContextInfo &LHS, const ObjCContextInfo &RHS) argument
330 operator |=(const VariableInfo &RHS) argument
344 operator ==(const VariableInfo &LHS, const VariableInfo &RHS) argument
350 operator !=(const VariableInfo &LHS, const VariableInfo &RHS) argument
377 operator |=(const ObjCContextInfo &RHS) argument
388 operator |=(const ObjCPropertyInfo &RHS) argument
400 operator ==(const ObjCPropertyInfo &LHS, const ObjCPropertyInfo &RHS) argument
406 operator !=(const ObjCPropertyInfo &LHS, const ObjCPropertyInfo &RHS) argument
451 operator |=(const ParamInfo &RHS) argument
470 operator ==(const ParamInfo &LHS, const ParamInfo &RHS) argument
477 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
615 operator |=(const ObjCContextInfo &RHS) argument
629 operator ==(const ObjCMethodInfo &LHS, const ObjCMethodInfo &RHS) argument
635 operator !=(const ObjCMethodInfo &LHS, const ObjCMethodInfo &RHS) argument
677 operator |=(const TagInfo &RHS) argument
694 operator ==(const TagInfo &LHS, const TagInfo &RHS) argument
700 operator !=(const TagInfo &LHS, const TagInfo &RHS) argument
711 operator |=(const TypedefInfo &RHS) argument
723 operator ==(const TypedefInfo &LHS, const TypedefInfo &RHS) argument
728 operator !=(const TypedefInfo &LHS, const TypedefInfo &RHS) argument
[all...]
/netbsd-current/external/apache2/llvm/dist/llvm/include/llvm/IR/
H A DNoFolder.h44 Instruction *CreateAdd(Constant *LHS, Constant *RHS,
47 BinaryOperator *BO = BinaryOperator::CreateAdd(LHS, RHS);
53 Instruction *CreateFAdd(Constant *LHS, Constant *RHS) const override {
54 return BinaryOperator::CreateFAdd(LHS, RHS);
57 Instruction *CreateSub(Constant *LHS, Constant *RHS,
60 BinaryOperator *BO = BinaryOperator::CreateSub(LHS, RHS);
66 Instruction *CreateFSub(Constant *LHS, Constant *RHS) const override {
67 return BinaryOperator::CreateFSub(LHS, RHS);
70 Instruction *CreateMul(Constant *LHS, Constant *RHS,
73 BinaryOperator *BO = BinaryOperator::CreateMul(LHS, RHS);
[all...]

Completed in 384 milliseconds

1234567891011>>