Searched refs:Other (Results 1 - 25 of 440) sorted by relevance

1234567891011>>

/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/MC/
H A DMCRegister.h76 bool operator==(const MCRegister &Other) const { return Reg == Other.Reg; }
77 bool operator!=(const MCRegister &Other) const { return Reg != Other.Reg; }
83 bool operator==(unsigned Other) const { return Reg == Other; }
84 bool operator!=(unsigned Other) const { return Reg != Other; }
85 bool operator==(int Other) const { return Reg == unsigned(Other); }
[all...]
H A DMachineLocation.h39 bool operator==(const MachineLocation &Other) const {
40 return IsRegister == Other.IsRegister && Register == Other.Register;
H A DMCSchedule.h56 bool operator==(const MCProcResourceDesc &Other) const {
57 return NumUnits == Other.NumUnits && SuperIdx == Other.SuperIdx
58 && BufferSize == Other.BufferSize;
68 bool operator==(const MCWriteProcResEntry &Other) const {
69 return ProcResourceIdx == Other.ProcResourceIdx && Cycles == Other.Cycles;
82 bool operator==(const MCWriteLatencyEntry &Other) const {
83 return Cycles == Other.Cycles && WriteResourceID == Other
[all...]
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/CodeGen/
H A DRegister.h120 bool operator==(const Register &Other) const { return Reg == Other.Reg; }
121 bool operator!=(const Register &Other) const { return Reg != Other.Reg; }
122 bool operator==(const MCRegister &Other) const { return Reg == Other.id(); }
123 bool operator!=(const MCRegister &Other) const { return Reg != Other.id(); }
129 bool operator==(unsigned Other) const { return Reg == Other; }
[all...]
H A DMachineSizeOpts.h29 PGSOQueryType QueryType = PGSOQueryType::Other);
35 PGSOQueryType QueryType = PGSOQueryType::Other);
H A DMIRYamlMapping.h42 bool operator==(const StringValue &Other) const {
43 return Value == Other.Value;
83 bool operator==(const BlockStringValue &Other) const {
84 return Value == Other.Value;
107 bool operator==(const UnsignedValue &Other) const {
108 return Value == Other.Value;
162 bool operator==(const VirtualRegisterDefinition &Other) const {
163 return ID == Other.ID && Class == Other.Class &&
164 PreferredRegister == Other
[all...]
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/AArch64/
H A DAArch64StackOffset.h53 StackOffset(const StackOffset &Other) argument
54 : Bytes(Other.Bytes), ScalableBytes(Other.ScalableBytes) {}
58 StackOffset &operator+=(const StackOffset::Part &Other) { argument
59 const TypeSize Size = Other.second.getSizeInBits();
61 ScalableBytes += Other.first * ((int64_t)Size.getKnownMinSize() / 8);
63 Bytes += Other.first * ((int64_t)Size.getFixedSize() / 8);
67 StackOffset &operator+=(const StackOffset &Other) { argument
68 Bytes += Other.Bytes;
69 ScalableBytes += Other
79 operator -=(const StackOffset &Other) argument
[all...]
/freebsd-11-stable/contrib/llvm-project/clang/lib/Format/
H A DContinuationIndenter.h332 bool operator<(const ParenState &Other) const {
333 if (Indent != Other.Indent)
334 return Indent < Other.Indent;
335 if (LastSpace != Other.LastSpace)
336 return LastSpace < Other.LastSpace;
337 if (NestedBlockIndent != Other.NestedBlockIndent)
338 return NestedBlockIndent < Other.NestedBlockIndent;
339 if (FirstLessLess != Other.FirstLessLess)
340 return FirstLessLess < Other.FirstLessLess;
341 if (BreakBeforeClosingBrace != Other
[all...]
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/IR/
H A DConstantRange.h96 /// predicate with any value contained within Other is contained in the
98 /// 'union over all y in Other . { x : icmp op x y is true }'. If the exact
102 /// Example: Pred = ult and Other = i8 [2, 5) returns Result = [0, 4)
104 const ConstantRange &Other);
107 /// satisfy the given predicate with all values contained within Other.
109 /// 'intersection over all y in Other . { x : icmp op x y is true }'. If the
113 /// Example: Pred = ult and Other = i8 [2, 5) returns [0, 2)
115 const ConstantRange &Other);
118 /// the given predicate with any value contained within Other. Formally, this
119 /// returns the exact answer when the superset of 'union over all y in Other
[all...]
/freebsd-11-stable/contrib/llvm-project/clang/include/clang/AST/
H A DCharUnits.h68 CharUnits& operator+= (const CharUnits &Other) { argument
69 Quantity += Other.Quantity;
79 CharUnits& operator-= (const CharUnits &Other) { argument
80 Quantity -= Other.Quantity;
92 bool operator== (const CharUnits &Other) const {
93 return Quantity == Other.Quantity;
95 bool operator!= (const CharUnits &Other) const {
96 return Quantity != Other.Quantity;
100 bool operator< (const CharUnits &Other) const {
101 return Quantity < Other
[all...]
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/Support/
H A DMSVCErrorWorkarounds.h31 MSVCPError(MSVCPError &&Other) : Error(std::move(Other)) {} argument
33 MSVCPError &operator=(MSVCPError Other) { argument
34 Error::operator=(std::move(Other));
50 MSVCPExpected(MSVCPExpected &&Other) : Expected<T>(std::move(Other)) {} argument
52 MSVCPExpected &operator=(MSVCPExpected &&Other) { argument
53 Expected<T>::operator=(std::move(Other));
68 Expected<OtherT> &&Other,
71 : Expected<T>(std::move(Other)) {}
67 MSVCPExpected( Expected<OtherT> &&Other, typename std::enable_if<std::is_convertible<OtherT, T>::value>::type * = nullptr) argument
74 MSVCPExpected( Expected<OtherT> &&Other, typename std::enable_if<!std::is_convertible<OtherT, T>::value>::type * = nullptr) argument
[all...]
H A DErrorOr.h94 ErrorOr(const ErrorOr &Other) { argument
95 copyConstruct(Other);
100 const ErrorOr<OtherT> &Other,
103 copyConstruct(Other);
108 const ErrorOr<OtherT> &Other,
111 copyConstruct(Other);
114 ErrorOr(ErrorOr &&Other) { argument
115 moveConstruct(std::move(Other));
120 ErrorOr<OtherT> &&Other,
123 moveConstruct(std::move(Other));
99 ErrorOr( const ErrorOr<OtherT> &Other, typename std::enable_if<std::is_convertible<OtherT, T>::value>::type * = nullptr) argument
107 ErrorOr( const ErrorOr<OtherT> &Other, typename std::enable_if< !std::is_convertible<OtherT, const T &>::value>::type * = nullptr) argument
119 ErrorOr( ErrorOr<OtherT> &&Other, typename std::enable_if<std::is_convertible<OtherT, T>::value>::type * = nullptr) argument
129 ErrorOr( ErrorOr<OtherT> &&Other, typename std::enable_if<!std::is_convertible<OtherT, T>::value>::type * = nullptr) argument
136 operator =(const ErrorOr &Other) argument
141 operator =(ErrorOr &&Other) argument
177 copyConstruct(const ErrorOr<OtherT> &Other) argument
200 copyAssign(const ErrorOr<OtherT> &Other) argument
209 moveConstruct(ErrorOr<OtherT> &&Other) argument
222 moveAssign(ErrorOr<OtherT> &&Other) argument
[all...]
/freebsd-11-stable/contrib/llvm-project/clang/include/clang/Driver/
H A DDistro.h90 bool operator==(const Distro &Other) const {
91 return DistroVal == Other.DistroVal;
94 bool operator!=(const Distro &Other) const {
95 return DistroVal != Other.DistroVal;
98 bool operator>=(const Distro &Other) const {
99 return DistroVal >= Other.DistroVal;
102 bool operator<=(const Distro &Other) const {
103 return DistroVal <= Other.DistroVal;
/freebsd-11-stable/contrib/llvm-project/llvm/utils/TableGen/
H A DAsmWriterInst.h64 bool operator!=(const AsmWriterOperand &Other) const {
65 if (OperandType != Other.OperandType || Str != Other.Str) return true;
67 return MIOpNo != Other.MIOpNo || MiModifier != Other.MiModifier;
70 bool operator==(const AsmWriterOperand &Other) const {
71 return !operator!=(Other);
90 unsigned MatchesAllButOneOp(const AsmWriterInst &Other) const;
/freebsd-11-stable/contrib/llvm-project/clang/include/clang/Sema/
H A DSemaConcept.h38 const AtomicConstraint &Other) const {
39 if (!ParameterMapping != !Other.ParameterMapping)
43 if (ParameterMapping->size() != Other.ParameterMapping->size())
50 C.getCanonicalTemplateArgument((*Other.ParameterMapping)[I].getArgument())
58 bool subsumes(ASTContext &C, const AtomicConstraint &Other) const {
71 if (ConstraintExpr != Other.ConstraintExpr)
75 return hasMatchingParameterMapping(C, Other);
100 NormalizedConstraint(ASTContext &C, const NormalizedConstraint &Other) { argument
101 if (Other.isAtomic()) {
102 Constraint = new (C) AtomicConstraint(*Other
111 NormalizedConstraint(NormalizedConstraint &&Other) argument
115 NormalizedConstraint &operator=(const NormalizedConstraint &Other) = delete; member in struct:clang::NormalizedConstraint
116 operator =(NormalizedConstraint &&Other) argument
[all...]
H A DLookup.h171 LookupResult(TemporaryToken _, const LookupResult &Other) argument
172 : SemaPtr(Other.SemaPtr), NameInfo(Other.NameInfo),
173 LookupKind(Other.LookupKind), IDNS(Other.IDNS), Redecl(Other.Redecl),
174 ExternalRedecl(Other.ExternalRedecl), HideTags(Other.HideTags),
175 AllowHidden(Other.AllowHidden),
176 TemplateNameLookup(Other
183 LookupResult(LookupResult &&Other) argument
203 operator =(LookupResult &&Other) argument
439 addAllDecls(const LookupResult &Other) argument
[all...]
/freebsd-11-stable/contrib/llvm-project/clang/include/clang/Basic/
H A DPartialDiagnostic.h193 PartialDiagnostic(const PartialDiagnostic &Other) argument
194 : DiagID(Other.DiagID), Allocator(Other.Allocator) {
195 if (Other.DiagStorage) {
197 *DiagStorage = *Other.DiagStorage;
201 PartialDiagnostic(PartialDiagnostic &&Other) argument
202 : DiagID(Other.DiagID), DiagStorage(Other.DiagStorage),
203 Allocator(Other.Allocator) {
204 Other
207 PartialDiagnostic(const PartialDiagnostic &Other, Storage *DiagStorage) argument
214 PartialDiagnostic(const Diagnostic &Other, StorageAllocator &Allocator) argument
233 operator =(const PartialDiagnostic &Other) argument
247 operator =(PartialDiagnostic &&Other) argument
[all...]
H A DFixedPoint.h67 getCommonSemantics(const FixedPointSemantics &Other) const;
130 APFixedPoint add(const APFixedPoint &Other, bool *Overflow = nullptr) const;
172 int compare(const APFixedPoint &Other) const;
173 bool operator==(const APFixedPoint &Other) const {
174 return compare(Other) == 0;
176 bool operator!=(const APFixedPoint &Other) const {
177 return compare(Other) != 0;
179 bool operator>(const APFixedPoint &Other) const { return compare(Other) > 0; }
180 bool operator<(const APFixedPoint &Other) cons
[all...]
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/fuzzer/
H A DFuzzerCommand.h39 explicit Command(const Command &Other) argument
40 : Args(Other.Args), CombinedOutAndErr(Other.CombinedOutAndErr),
41 OutputFile(Other.OutputFile) {}
43 Command &operator=(const Command &Other) { argument
44 Args = Other.Args;
45 CombinedOutAndErr = Other.CombinedOutAndErr;
46 OutputFile = Other.OutputFile;
85 auto IsMatch = [&](const std::string &Other) {
86 return Arg.compare(0, std::string::npos, Other,
155 Command(Command &&Other) = delete; member in class:fuzzer::final
156 Command &operator=(Command &&Other) = delete; member in class:fuzzer::final
[all...]
/freebsd-11-stable/contrib/llvm-project/llvm/tools/llvm-cov/
H A DRenderingSupport.h29 ColoredRawOstream(ColoredRawOstream &&Other) argument
30 : OS(Other.OS), IsColorUsed(Other.IsColorUsed) {
33 Other.IsColorUsed = false;
/freebsd-11-stable/contrib/llvm-project/llvm/lib/IR/
H A DConstantRange.cpp226 const ConstantRange &Other,
237 unsigned BitWidth = Other.getBitWidth();
246 -Other.getUnsignedMax());
249 APInt SMin = Other.getSignedMin(), SMax = Other.getSignedMax();
257 return getNonEmpty(Other.getUnsignedMax(), APInt::getMinValue(BitWidth));
260 APInt SMin = Other.getSignedMin(), SMax = Other.getSignedMax();
268 return makeExactMulNUWRegion(Other.getUnsignedMax());
270 return makeExactMulNSWRegion(Other
225 makeGuaranteedNoWrapRegion(Instruction::BinaryOps BinOp, const ConstantRange &Other, unsigned NoWrapKind) argument
296 makeExactNoWrapRegion(Instruction::BinaryOps BinOp, const APInt &Other, unsigned NoWrapKind) argument
[all...]
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/Object/
H A DTapiUniversal.h38 bool operator==(const ObjectForArch &Other) const {
39 return (Parent == Other.Parent) && (Index == Other.Index);
69 bool operator==(const object_iterator &Other) const {
70 return Obj == Other.Obj;
72 bool operator!=(const object_iterator &Other) const {
73 return !(*this == Other);
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/ADT/
H A DCachedHashString.h111 CachedHashString(const CachedHashString &Other) argument
112 : Size(Other.Size), Hash(Other.Hash) {
113 if (Other.isEmptyOrTombstone()) {
114 P = Other.P;
117 memcpy(P, Other.P, Size);
121 CachedHashString &operator=(CachedHashString Other) { argument
122 swap(*this, Other);
126 CachedHashString(CachedHashString &&Other) noexcept
127 : P(Other
[all...]
/freebsd-11-stable/contrib/llvm-project/clang/include/clang/Tooling/Inclusions/
H A DIncludeStyle.h63 bool operator==(const IncludeCategory &Other) const {
64 return Regex == Other.Regex && Priority == Other.Priority;
/freebsd-11-stable/contrib/llvm-project/clang/include/clang/StaticAnalyzer/Core/PathSensitive/
H A DAPSIntType.h91 bool operator==(const APSIntType &Other) const {
92 return BitWidth == Other.BitWidth && IsUnsigned == Other.IsUnsigned;
99 bool operator<(const APSIntType &Other) const {
101 std::tie(Other.BitWidth, Other.IsUnsigned);

Completed in 168 milliseconds

1234567891011>>