Searched refs:Other (Results 51 - 75 of 440) sorted by relevance

1234567891011>>

/freebsd-11-stable/contrib/llvm-project/clang/include/clang/Basic/
H A DABI.h70 bool Equals(const VirtualAdjustment &Other) const {
71 return memcmp(this, &Other, sizeof(Other)) == 0;
138 bool Equals(const VirtualAdjustment &Other) const {
139 return memcmp(this, &Other, sizeof(Other)) == 0;
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/Object/
H A DSymbolicFile.h124 bool operator==(const BasicSymbolRef &Other) const;
125 bool operator<(const BasicSymbolRef &Other) const;
183 inline bool BasicSymbolRef::operator==(const BasicSymbolRef &Other) const {
184 return SymbolPimpl == Other.SymbolPimpl;
187 inline bool BasicSymbolRef::operator<(const BasicSymbolRef &Other) const {
188 return SymbolPimpl < Other.SymbolPimpl;
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/Support/
H A DBinaryStreamWriter.h39 BinaryStreamWriter(const BinaryStreamWriter &Other) argument
40 : Stream(Other.Stream), Offset(Other.Offset) {}
42 BinaryStreamWriter &operator=(const BinaryStreamWriter &Other) { argument
43 Stream = Other.Stream;
44 Offset = Other.Offset;
H A DAutomaton.h51 bool operator<(const NfaStatePair &Other) const {
53 std::make_tuple(Other.FromDfaState, Other.ToDfaState);
205 Automaton(const Automaton &Other) argument
206 : M(Other.M), State(Other.State), Transcribe(Other.Transcribe) {
208 if (Other.Transcriber)
210 Other.Transcriber->getTransitionInfo());
/freebsd-11-stable/contrib/llvm-project/clang/lib/Basic/
H A DFixedPoint.cpp63 int APFixedPoint::compare(const APFixedPoint &Other) const {
65 llvm::APSInt OtherVal = Other.getValue();
68 unsigned OtherScale = Other.getScale();
128 const FixedPointSemantics &Other) const {
129 unsigned CommonScale = std::max(getScale(), Other.getScale());
131 std::max(getIntegralBits(), Other.getIntegralBits()) + CommonScale;
133 bool ResultIsSigned = isSigned() || Other.isSigned();
134 bool ResultIsSaturated = isSaturated() || Other.isSaturated();
139 Other.hasUnsignedPadding() && !ResultIsSaturated;
152 APFixedPoint APFixedPoint::add(const APFixedPoint &Other, argument
[all...]
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/Analysis/
H A DMemoryDependenceAnalysis.h99 Other enumerator in enum:llvm::MemDepResult::DepType
102 /// If DepType is "Other", the upper part of the sum type is an encoding of
121 PointerSumTypeMember<Other, PointerEmbeddedInt<OtherType, 3>>>;
140 return MemDepResult(ValueTy::create<Other>(NonLocal));
143 return MemDepResult(ValueTy::create<Other>(NonFuncLocal));
146 return MemDepResult(ValueTy::create<Other>(Unknown));
160 return Value.is<Other>() && Value.cast<Other>() == NonLocal;
166 return Value.is<Other>() && Value.cast<Other>()
[all...]
/freebsd-11-stable/contrib/llvm-project/llvm/lib/CodeGen/SelectionDAG/
H A DSelectionDAGAddressAnalysis.cpp22 bool BaseIndexOffset::equalBaseIndex(const BaseIndexOffset &Other, argument
26 if (!Base.getNode() || !Other.Base.getNode())
28 if (!hasValidOffset() || !Other.hasValidOffset())
31 Off = *Other.Offset - *Offset;
33 if ((Other.Index == Index) && (Other.IsIndexSignExt == IsIndexSignExt)) {
35 if (Other.Base == Base)
40 if (auto *B = dyn_cast<GlobalAddressSDNode>(Other.Base))
48 if (auto *B = dyn_cast<ConstantPoolSDNode>(Other.Base)) {
67 if (auto *B = dyn_cast<FrameIndexSDNode>(Other
146 contains(const SelectionDAG &DAG, int64_t BitSize, const BaseIndexOffset &Other, int64_t OtherBitSize, int64_t &BitOffset) const argument
[all...]
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/Transforms/Utils/
H A DSizeOpts.h38 Other, // Others. member in class:llvm::PGSOQueryType
95 PGSOQueryType QueryType = PGSOQueryType::Other);
101 PGSOQueryType QueryType = PGSOQueryType::Other);
/freebsd-11-stable/contrib/llvm-project/llvm/lib/CodeGen/
H A DSafeStackColoring.h64 bool Overlaps(const LiveRange &Other) const {
65 return bv.anyCommon(Other.bv);
68 void Join(const LiveRange &Other) { bv |= Other.bv; } argument
/freebsd-11-stable/contrib/llvm-project/clang/lib/Lex/
H A DMacroInfo.cpp74 bool MacroInfo::isIdenticalTo(const MacroInfo &Other, Preprocessor &PP, argument
79 if (ReplacementTokens.size() != Other.ReplacementTokens.size() ||
80 getNumParams() != Other.getNumParams() ||
81 isFunctionLike() != Other.isFunctionLike() ||
82 isC99Varargs() != Other.isC99Varargs() ||
83 isGNUVarargs() != Other.isGNUVarargs())
88 for (param_iterator I = param_begin(), OI = Other.param_begin(),
97 const Token &B = Other.ReplacementTokens[i];
119 if (AArgNum != Other.getParameterNum(B.getIdentifierInfo()))
/freebsd-11-stable/contrib/llvm-project/clang/include/clang/Edit/
H A DEditedSource.h58 bool operator==(const MacroArgUse &Other) const {
60 std::tie(Other.Identifier, Other.ImmediateExpansionLoc,
61 Other.UseLoc);
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/MC/
H A DMCSymbolELF.h29 void setOther(unsigned Other);
H A DMCContext.h206 bool operator<(const ELFSectionKey &Other) const {
207 if (SectionName != Other.SectionName)
208 return SectionName < Other.SectionName;
209 if (GroupName != Other.GroupName)
210 return GroupName < Other.GroupName;
211 return UniqueID < Other.UniqueID;
226 bool operator<(const COFFSectionKey &Other) const {
227 if (SectionName != Other.SectionName)
228 return SectionName < Other.SectionName;
229 if (GroupName != Other
[all...]
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/MCA/
H A DInstruction.h157 WriteState(const WriteState &Other) = default; member in class:llvm::mca::WriteState
158 WriteState &operator=(const WriteState &Other) = default; member in class:llvm::mca::WriteState
203 void setDependentWrite(const WriteState *Other) { DependentWrite = Other; } argument
307 bool operator<(const CycleSegment &Other) const {
308 return Begin < Other.Begin;
387 InstrDesc(const InstrDesc &Other) = delete; member in struct:llvm::mca::InstrDesc
388 InstrDesc &operator=(const InstrDesc &Other) = delete; member in struct:llvm::mca::InstrDesc
569 bool operator==(const InstRef &Other) const { return Data == Other
[all...]
/freebsd-11-stable/contrib/llvm-project/llvm/lib/ExecutionEngine/RuntimeDyld/
H A DRuntimeDyldImpl.h201 inline bool operator==(const RelocationValueRef &Other) const {
202 return SectionID == Other.SectionID && Offset == Other.Offset &&
203 Addend == Other.Addend && SymbolName == Other.SymbolName &&
204 IsStubThumb == Other.IsStubThumb;
206 inline bool operator<(const RelocationValueRef &Other) const {
207 if (SectionID != Other.SectionID)
208 return SectionID < Other.SectionID;
209 if (Offset != Other
[all...]
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/Remarks/
H A DRemarkStringTable.h52 StringTable(const ParsedStringTable &Other);
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/DebugInfo/PDB/
H A DPDBTypes.h441 Variant(const Variant &Other) { argument
442 *this = Other;
468 return Value.Enum == Other.Value.Enum;
470 bool operator==(const Variant &Other) const {
471 if (Type != Other.Type)
493 bool operator!=(const Variant &Other) const { return !(*this == Other); }
494 Variant &operator=(const Variant &Other) { argument
495 if (this == &Other)
499 Type = Other
[all...]
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/AMDGPU/Utils/
H A DAMDGPUBaseInfo.h381 bool dominates(const Waitcnt &Other) const {
382 return VmCnt <= Other.VmCnt && ExpCnt <= Other.ExpCnt &&
383 LgkmCnt <= Other.LgkmCnt && VsCnt <= Other.VsCnt;
386 Waitcnt combined(const Waitcnt &Other) const {
387 return Waitcnt(std::min(VmCnt, Other.VmCnt), std::min(ExpCnt, Other.ExpCnt),
388 std::min(LgkmCnt, Other.LgkmCnt),
389 std::min(VsCnt, Other
[all...]
/freebsd-11-stable/contrib/llvm-project/clang/include/clang/Sema/
H A DDelayedDiagnostic.h278 DelayedDiagnosticPool(DelayedDiagnosticPool &&Other) argument
279 : Parent(Other.Parent), Diagnostics(std::move(Other.Diagnostics)) {
280 Other.Diagnostics.clear();
283 DelayedDiagnosticPool &operator=(DelayedDiagnosticPool &&Other) { argument
284 Parent = Other.Parent;
285 Diagnostics = std::move(Other.Diagnostics);
286 Other.Diagnostics.clear();
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/Mips/MCTargetDesc/
H A DMipsABIInfo.h59 bool operator<(const MipsABIInfo Other) const {
60 return ThisABI < Other.GetEnumValue();
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/MCA/Stages/
H A DExecuteStage.h46 ExecuteStage(const ExecuteStage &Other) = delete; member in class:llvm::mca::final
47 ExecuteStage &operator=(const ExecuteStage &Other) = delete; member in class:llvm::mca::final
H A DStage.h31 Stage(const Stage &Other) = delete; member in class:llvm::mca::Stage
32 Stage &operator=(const Stage &Other) = delete; member in class:llvm::mca::Stage
/freebsd-11-stable/contrib/llvm-project/clang/lib/CodeGen/
H A DCodeGenTBAA.h79 bool operator==(const TBAAAccessInfo &Other) const {
80 return Kind == Other.Kind &&
81 BaseType == Other.BaseType &&
82 AccessType == Other.AccessType &&
83 Offset == Other.Offset &&
84 Size == Other.Size;
87 bool operator!=(const TBAAAccessInfo &Other) const {
88 return !(*this == Other);
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/ExecutionEngine/Orc/
H A DOrcABISupport.h82 GenericIndirectStubsInfo(GenericIndirectStubsInfo &&Other) argument
83 : NumStubs(Other.NumStubs), StubsMem(std::move(Other.StubsMem)) {
84 Other.NumStubs = 0;
87 GenericIndirectStubsInfo &operator=(GenericIndirectStubsInfo &&Other) { argument
88 NumStubs = Other.NumStubs;
89 Other.NumStubs = 0;
90 StubsMem = std::move(Other.StubsMem);
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/DebugInfo/DWARF/
H A DDWARFDebugAranges.h69 bool operator<(const RangeEndpoint &Other) const {
70 return Address < Other.Address;

Completed in 359 milliseconds

1234567891011>>