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

1234567891011>>

/freebsd-current/contrib/llvm-project/llvm/include/llvm/MC/
H A DMCRegister.h84 constexpr bool operator==(const MCRegister &Other) const {
85 return Reg == Other.Reg;
87 constexpr bool operator!=(const MCRegister &Other) const {
88 return Reg != Other.Reg;
95 constexpr bool operator==(unsigned Other) const { return Reg == Other; }
96 constexpr bool operator!=(unsigned Other) const { return Reg != Other; }
97 constexpr 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;
/freebsd-current/contrib/llvm-project/clang/lib/Format/
H A DContinuationIndenter.h360 bool operator<(const ParenState &Other) const {
361 if (Indent != Other.Indent)
362 return Indent < Other.Indent;
363 if (LastSpace != Other.LastSpace)
364 return LastSpace < Other.LastSpace;
365 if (NestedBlockIndent != Other.NestedBlockIndent)
366 return NestedBlockIndent < Other.NestedBlockIndent;
367 if (FirstLessLess != Other.FirstLessLess)
368 return FirstLessLess < Other.FirstLessLess;
369 if (IsAligned != Other
[all...]
/freebsd-current/contrib/llvm-project/llvm/include/llvm/CodeGen/
H A DRegister.h119 constexpr bool operator==(const Register &Other) const {
120 return Reg == Other.Reg;
122 constexpr bool operator!=(const Register &Other) const {
123 return Reg != Other.Reg;
125 constexpr bool operator==(const MCRegister &Other) const {
126 return Reg == Other.id();
128 constexpr bool operator!=(const MCRegister &Other) const {
129 return Reg != Other.id();
136 constexpr bool operator==(unsigned Other) const { return Reg == Other; }
[all...]
H A DMachineSizeOpts.h30 PGSOQueryType QueryType = PGSOQueryType::Other);
36 PGSOQueryType QueryType = PGSOQueryType::Other);
42 PGSOQueryType QueryType = PGSOQueryType::Other);
/freebsd-current/contrib/llvm-project/llvm/lib/Analysis/
H A DValueLattice.cpp15 const ValueLatticeElement &Other,
18 if (isUnknown() || Other.isUnknown())
23 if (isUndef() || Other.isUndef())
26 if (isConstant() && Other.isConstant())
28 Other.getConstant(), DL);
32 if ((isNotConstant() && Other.isConstant() &&
33 getNotConstant() == Other.getConstant()) ||
34 (isConstant() && Other.isNotConstant() &&
35 getConstant() == Other.getNotConstant()))
42 if (!isConstantRange() || !Other
14 getCompare(CmpInst::Predicate Pred, Type *Ty, const ValueLatticeElement &Other, const DataLayout &DL) const argument
[all...]
/freebsd-current/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-current/contrib/llvm-project/llvm/include/llvm/Passes/
H A DOptimizationLevel.h114 bool operator==(const OptimizationLevel &Other) const {
115 return SizeLevel == Other.SizeLevel && SpeedLevel == Other.SpeedLevel;
117 bool operator!=(const OptimizationLevel &Other) const {
118 return SizeLevel != Other.SizeLevel || SpeedLevel != Other.SpeedLevel;
/freebsd-current/contrib/llvm-project/clang/include/clang/AST/
H A DCharUnits.h74 CharUnits& operator+= (const CharUnits &Other) { argument
75 Quantity += Other.Quantity;
85 CharUnits& operator-= (const CharUnits &Other) { argument
86 Quantity -= Other.Quantity;
98 bool operator== (const CharUnits &Other) const {
99 return Quantity == Other.Quantity;
101 bool operator!= (const CharUnits &Other) const {
102 return Quantity != Other.Quantity;
106 bool operator< (const CharUnits &Other) const {
107 return Quantity < Other
[all...]
H A DASTImportError.h27 Unknown /// Other error.
35 ASTImportError(const ASTImportError &Other) : Error(Other.Error) {} argument
36 ASTImportError &operator=(const ASTImportError &Other) { argument
37 Error = Other.Error;
/freebsd-current/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));
67 Expected<OtherT> &&Other,
69 : Expected<T>(std::move(Other)) {}
66 MSVCPExpected( Expected<OtherT> &&Other, std::enable_if_t<std::is_convertible<OtherT, T>::value> * = nullptr) argument
72 MSVCPExpected( Expected<OtherT> &&Other, std::enable_if_t<!std::is_convertible<OtherT, T>::value> * = nullptr) argument
[all...]
H A DErrorOr.h93 ErrorOr(const ErrorOr &Other) { argument
94 copyConstruct(Other);
98 ErrorOr(const ErrorOr<OtherT> &Other, argument
100 copyConstruct(Other);
105 const ErrorOr<OtherT> &Other,
107 copyConstruct(Other);
110 ErrorOr(ErrorOr &&Other) { argument
111 moveConstruct(std::move(Other));
115 ErrorOr(ErrorOr<OtherT> &&Other, argument
117 moveConstruct(std::move(Other));
104 ErrorOr( const ErrorOr<OtherT> &Other, std::enable_if_t<!std::is_convertible_v<OtherT, const T &>> * = nullptr) argument
123 ErrorOr( ErrorOr<OtherT> &&Other, std::enable_if_t<!std::is_convertible_v<OtherT, T>> * = nullptr) argument
129 operator =(const ErrorOr &Other) argument
134 operator =(ErrorOr &&Other) argument
170 copyConstruct(const ErrorOr<OtherT> &Other) argument
193 copyAssign(const ErrorOr<OtherT> &Other) argument
202 moveConstruct(ErrorOr<OtherT> &&Other) argument
215 moveAssign(ErrorOr<OtherT> &&Other) argument
[all...]
/freebsd-current/contrib/llvm-project/llvm/include/llvm/Support/FileSystem/
H A DUniqueID.h34 bool operator==(const UniqueID &Other) const {
35 return Device == Other.Device && File == Other.File;
37 bool operator!=(const UniqueID &Other) const { return !(*this == Other); }
38 bool operator<(const UniqueID &Other) const {
40 if (Device < Other.Device)
42 if (Other.Device < Device)
44 return File < Other.File;
/freebsd-current/contrib/llvm-project/llvm/lib/CodeGen/
H A DRegAllocScore.cpp37 RegAllocScore &RegAllocScore::operator+=(const RegAllocScore &Other) { argument
38 CopyCounts += Other.copyCounts();
39 LoadCounts += Other.loadCounts();
40 StoreCounts += Other.storeCounts();
41 LoadStoreCounts += Other.loadStoreCounts();
42 CheapRematCounts += Other.cheapRematCounts();
43 ExpensiveRematCounts += Other.expensiveRematCounts();
47 bool RegAllocScore::operator==(const RegAllocScore &Other) const {
48 return copyCounts() == Other.copyCounts() &&
49 loadCounts() == Other
[all...]
/freebsd-current/contrib/llvm-project/clang/include/clang/Basic/
H A DPartialDiagnostic.h49 PartialDiagnostic(const PartialDiagnostic &Other) argument
50 : StreamingDiagnostic(), DiagID(Other.DiagID) {
51 Allocator = Other.Allocator;
52 if (Other.DiagStorage) {
54 *DiagStorage = *Other.DiagStorage;
75 PartialDiagnostic(PartialDiagnostic &&Other) : DiagID(Other.DiagID) { argument
76 Allocator = Other.Allocator;
77 DiagStorage = Other.DiagStorage;
78 Other
81 PartialDiagnostic(const PartialDiagnostic &Other, DiagnosticStorage *DiagStorage_) argument
90 PartialDiagnostic(const Diagnostic &Other, DiagStorageAllocator &Allocator_) argument
110 operator =(const PartialDiagnostic &Other) argument
124 operator =(PartialDiagnostic &&Other) argument
[all...]
/freebsd-current/contrib/llvm-project/clang/include/clang/Analysis/FlowSensitive/
H A DNoopLattice.h27 bool operator==(const NoopLattice &Other) const { return true; }
29 LatticeJoinEffect join(const NoopLattice &Other) { argument
/freebsd-current/contrib/llvm-project/clang/include/clang/Sema/
H A DSemaConcept.h37 const AtomicConstraint &Other) const {
38 if (!ParameterMapping != !Other.ParameterMapping)
42 if (ParameterMapping->size() != Other.ParameterMapping->size())
49 C.getCanonicalTemplateArgument((*Other.ParameterMapping)[I].getArgument())
57 bool subsumes(ASTContext &C, const AtomicConstraint &Other) const {
70 if (ConstraintExpr != Other.ConstraintExpr)
74 return hasMatchingParameterMapping(C, Other);
99 NormalizedConstraint(ASTContext &C, const NormalizedConstraint &Other) { argument
100 if (Other.isAtomic()) {
101 Constraint = new (C) AtomicConstraint(*Other
110 NormalizedConstraint(NormalizedConstraint &&Other) argument
114 NormalizedConstraint &operator=(const NormalizedConstraint &Other) = delete; member in struct:clang::NormalizedConstraint
115 operator =(NormalizedConstraint &&Other) argument
[all...]
/freebsd-current/contrib/llvm-project/llvm/utils/TableGen/
H A DAsmWriterInst.h65 bool operator!=(const AsmWriterOperand &Other) const {
66 if (OperandType != Other.OperandType || Str != Other.Str) return true;
68 return MIOpNo != Other.MIOpNo || MiModifier != Other.MiModifier ||
69 PCRel != Other.PCRel;
72 bool operator==(const AsmWriterOperand &Other) const {
73 return !operator!=(Other);
92 unsigned MatchesAllButOneOp(const AsmWriterInst &Other) const;
/freebsd-current/contrib/llvm-project/llvm/include/llvm/Analysis/
H A DTensorSpec.h72 bool operator==(const TensorSpec &Other) const {
73 return Name == Other.Name && Port == Other.Port && Type == Other.Type &&
74 Shape == Other.Shape;
77 bool operator!=(const TensorSpec &Other) const { return !(*this == Other); }
90 TensorSpec(const std::string &NewName, const TensorSpec &Other) argument
91 : TensorSpec(NewName, Other.Port, Other
[all...]
H A DAssumeBundleQueries.h104 bool operator==(RetainedKnowledge Other) const {
105 return AttrKind == Other.AttrKind && WasOn == Other.WasOn &&
106 ArgValue == Other.ArgValue;
108 bool operator!=(RetainedKnowledge Other) const { return !(*this == Other); }
111 bool operator<(RetainedKnowledge Other) const {
112 assert(((AttrKind == Other.AttrKind && WasOn == Other.WasOn) ||
113 AttrKind == Attribute::None || Other
[all...]
/freebsd-current/contrib/llvm-project/llvm/include/llvm/ADT/
H A DAPFixedPoint.h89 getCommonSemantics(const FixedPointSemantics &Other) const;
111 bool operator==(FixedPointSemantics Other) const {
112 return Width == Other.Width && LsbWeight == Other.LsbWeight &&
113 IsSigned == Other.IsSigned && IsSaturated == Other.IsSaturated &&
114 HasUnsignedPadding == Other.HasUnsignedPadding;
116 bool operator!=(FixedPointSemantics Other) const { return !(*this == Other); }
190 APFixedPoint add(const APFixedPoint &Other, boo
[all...]
/freebsd-current/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-current/contrib/ncurses/progs/
H A Dtparm_type.h46 Other = -1 enumerator in enum:__anon5179
/freebsd-current/contrib/llvm-project/clang/include/clang/Tooling/Inclusions/
H A DIncludeStyle.h66 bool operator==(const IncludeCategory &Other) const {
67 return Regex == Other.Regex && Priority == Other.Priority &&
68 RegexIsCaseSensitive == Other.RegexIsCaseSensitive;
/freebsd-current/contrib/llvm-project/compiler-rt/lib/fuzzer/
H A DFuzzerCommand.h40 explicit Command(const Command &Other) argument
41 : Args(Other.Args), CombinedOutAndErr(Other.CombinedOutAndErr),
42 OutputFile(Other.OutputFile) {}
44 Command &operator=(const Command &Other) { argument
45 Args = Other.Args;
46 CombinedOutAndErr = Other.CombinedOutAndErr;
47 OutputFile = Other.OutputFile;
86 auto IsMatch = [&](const std::string &Other) {
87 return Arg.compare(0, std::string::npos, Other,
156 Command(Command &&Other) = delete; member in class:fuzzer::final
157 Command &operator=(Command &&Other) = delete; member in class:fuzzer::final
[all...]

Completed in 363 milliseconds

1234567891011>>