| /openbsd/src/gnu/llvm/clang/lib/Format/ |
| D | ContinuationIndenter.h | 360 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.IsAligned) [all …]
|
| /openbsd/src/games/phantasia/ |
| D | interplayer.c | 52 while (fread(&Other, SZ_PLAYERSTRUCT, 1, Playersfp) == 1) { in checkbattle() 53 if (Other.p_status != S_OFF in checkbattle() 54 && Other.p_status != S_NOTUSED in checkbattle() 55 && Other.p_status != S_HUNGUP in checkbattle() 56 && (Other.p_status != S_CLOAKED || Other.p_specialtype != SC_VALAR)) in checkbattle() 61 if (Player.p_x == Other.p_x in checkbattle() 62 && Player.p_y == Other.p_y in checkbattle() 67 && (Other.p_status == S_PLAYING || Other.p_status == S_INBATTLE) in checkbattle() 69 && Other.p_specialtype != SC_VALAR in checkbattle() 145 readrecord(&Other, foeplace); in battleplayer() [all …]
|
| /openbsd/src/gnu/llvm/clang/include/clang/Basic/ |
| D | PartialDiagnostic.h | 49 PartialDiagnostic(const PartialDiagnostic &Other) in PartialDiagnostic() argument 50 : StreamingDiagnostic(), DiagID(Other.DiagID) { in PartialDiagnostic() 51 Allocator = Other.Allocator; in PartialDiagnostic() 52 if (Other.DiagStorage) { in PartialDiagnostic() 54 *DiagStorage = *Other.DiagStorage; in PartialDiagnostic() 75 PartialDiagnostic(PartialDiagnostic &&Other) : DiagID(Other.DiagID) { in PartialDiagnostic() argument 76 Allocator = Other.Allocator; in PartialDiagnostic() 77 DiagStorage = Other.DiagStorage; in PartialDiagnostic() 78 Other.DiagStorage = nullptr; in PartialDiagnostic() 81 PartialDiagnostic(const PartialDiagnostic &Other, in PartialDiagnostic() argument [all …]
|
| /openbsd/src/gnu/llvm/llvm/include/llvm/IR/ |
| D | ConstantRange.h | 104 const ConstantRange &Other); 115 const ConstantRange &Other); 125 const APInt &Other); 129 bool icmp(CmpInst::Predicate Pred, const ConstantRange &Other) const; 170 const ConstantRange &Other, 176 const APInt &Other, 383 const ConstantRange &Other) const; 390 const ConstantRange &Other, 395 ConstantRange add(const ConstantRange &Other) const; 402 ConstantRange addWithNoWrap(const ConstantRange &Other, unsigned NoWrapKind, [all …]
|
| /openbsd/src/gnu/llvm/llvm/lib/IR/ |
| D | ConstantRange.cpp | 243 const ConstantRange &Other) const { in icmp() 244 return makeSatisfyingICmpRegion(Pred, Other).contains(*this); in icmp() 286 const ConstantRange &Other, in makeGuaranteedNoWrapRegion() argument 297 unsigned BitWidth = Other.getBitWidth(); in makeGuaranteedNoWrapRegion() 305 return getNonEmpty(APInt::getZero(BitWidth), -Other.getUnsignedMax()); in makeGuaranteedNoWrapRegion() 308 APInt SMin = Other.getSignedMin(), SMax = Other.getSignedMax(); in makeGuaranteedNoWrapRegion() 316 return getNonEmpty(Other.getUnsignedMax(), APInt::getMinValue(BitWidth)); in makeGuaranteedNoWrapRegion() 319 APInt SMin = Other.getSignedMin(), SMax = Other.getSignedMax(); in makeGuaranteedNoWrapRegion() 327 return makeExactMulNUWRegion(Other.getUnsignedMax()); in makeGuaranteedNoWrapRegion() 329 return makeExactMulNSWRegion(Other.getSignedMin()) in makeGuaranteedNoWrapRegion() [all …]
|
| /openbsd/src/gnu/llvm/llvm/include/llvm/CodeGen/ |
| D | MIRYamlMapping.h | 42 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; 195 bool operator==(const VirtualRegisterDefinition &Other) const { 196 return ID == Other.ID && Class == Other.Class && 197 PreferredRegister == Other.PreferredRegister; 216 bool operator==(const MachineFunctionLiveIn &Other) const { [all …]
|
| D | Register.h | 129 bool operator==(const Register &Other) const { return Reg == Other.Reg; } 130 bool operator!=(const Register &Other) const { return Reg != Other.Reg; } 131 bool operator==(const MCRegister &Other) const { return Reg == Other.id(); } 132 bool operator!=(const MCRegister &Other) const { return Reg != Other.id(); } 138 bool operator==(unsigned Other) const { return Reg == Other; } 139 bool operator!=(unsigned Other) const { return Reg != Other; } 140 bool operator==(int Other) const { return Reg == unsigned(Other); } 141 bool operator!=(int Other) const { return Reg != unsigned(Other); } 143 bool operator==(MCPhysReg Other) const { return Reg == unsigned(Other); } 144 bool operator!=(MCPhysReg Other) const { return Reg != unsigned(Other); }
|
| /openbsd/src/gnu/llvm/clang/include/clang/Sema/ |
| D | Lookup.h | 171 LookupResult(TemporaryToken _, const LookupResult &Other) in LookupResult() argument 172 : SemaPtr(Other.SemaPtr), NameInfo(Other.NameInfo), in LookupResult() 173 LookupKind(Other.LookupKind), IDNS(Other.IDNS), Redecl(Other.Redecl), in LookupResult() 174 ExternalRedecl(Other.ExternalRedecl), HideTags(Other.HideTags), in LookupResult() 175 AllowHidden(Other.AllowHidden), in LookupResult() 176 TemplateNameLookup(Other.TemplateNameLookup) {} in LookupResult() 183 LookupResult(LookupResult &&Other) in LookupResult() argument 184 : ResultKind(std::move(Other.ResultKind)), in LookupResult() 185 Ambiguity(std::move(Other.Ambiguity)), Decls(std::move(Other.Decls)), in LookupResult() 186 Paths(std::move(Other.Paths)), in LookupResult() [all …]
|
| D | SemaConcept.h | 37 const AtomicConstraint &Other) const { in hasMatchingParameterMapping() 38 if (!ParameterMapping != !Other.ParameterMapping) in hasMatchingParameterMapping() 42 if (ParameterMapping->size() != Other.ParameterMapping->size()) in hasMatchingParameterMapping() 49 C.getCanonicalTemplateArgument((*Other.ParameterMapping)[I].getArgument()) in hasMatchingParameterMapping() 57 bool subsumes(ASTContext &C, const AtomicConstraint &Other) const { in subsumes() 70 if (ConstraintExpr != Other.ConstraintExpr) in subsumes() 74 return hasMatchingParameterMapping(C, Other); in subsumes() 99 NormalizedConstraint(ASTContext &C, const NormalizedConstraint &Other) { in NormalizedConstraint() 100 if (Other.isAtomic()) { in NormalizedConstraint() 101 Constraint = new (C) AtomicConstraint(*Other.getAtomicConstraint()); in NormalizedConstraint() [all …]
|
| /openbsd/src/gnu/llvm/llvm/include/llvm/Support/ |
| D | ErrorOr.h | 93 ErrorOr(const ErrorOr &Other) { in ErrorOr() argument 94 copyConstruct(Other); in ErrorOr() 98 ErrorOr(const ErrorOr<OtherT> &Other, 100 copyConstruct(Other); 105 const ErrorOr<OtherT> &Other, 108 copyConstruct(Other); 111 ErrorOr(ErrorOr &&Other) { in ErrorOr() argument 112 moveConstruct(std::move(Other)); in ErrorOr() 116 ErrorOr(ErrorOr<OtherT> &&Other, 118 moveConstruct(std::move(Other)); [all …]
|
| D | MSVCErrorWorkarounds.h | 31 MSVCPError(MSVCPError &&Other) : Error(std::move(Other)) {} in MSVCPError() argument 33 MSVCPError &operator=(MSVCPError Other) { 34 Error::operator=(std::move(Other)); 50 MSVCPExpected(MSVCPExpected &&Other) : Expected<T>(std::move(Other)) {} in MSVCPExpected() argument 52 MSVCPExpected &operator=(MSVCPExpected &&Other) { 53 Expected<T>::operator=(std::move(Other)); 67 Expected<OtherT> &&Other, 69 : Expected<T>(std::move(Other)) {} 73 Expected<OtherT> &&Other, 75 : Expected<T>(std::move(Other)) {}
|
| D | ModRef.h | 72 Other = 2, enumerator 97 return enum_seq_inclusive(Location::ArgMem, Location::Other, in locations() 217 return isNoModRef(getModRef(Other)); in onlyAccessesInaccessibleOrArgMem() 221 MemoryEffects operator&(MemoryEffects Other) const { 222 return MemoryEffects(Data & Other.Data); 226 MemoryEffects &operator&=(MemoryEffects Other) { 227 Data &= Other.Data; 232 MemoryEffects operator|(MemoryEffects Other) const { 233 return MemoryEffects(Data | Other.Data); 237 MemoryEffects &operator|=(MemoryEffects Other) { [all …]
|
| /openbsd/src/gnu/llvm/clang/include/clang/AST/ |
| D | CharUnits.h | 74 CharUnits& operator+= (const CharUnits &Other) { 75 Quantity += Other.Quantity; 85 CharUnits& operator-= (const CharUnits &Other) { 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.Quantity; [all …]
|
| /openbsd/src/gnu/llvm/llvm/include/llvm/MC/ |
| D | MCRegister.h | 79 bool operator==(const MCRegister &Other) const { return Reg == Other.Reg; } 80 bool operator!=(const MCRegister &Other) const { return Reg != Other.Reg; } 86 bool operator==(unsigned Other) const { return Reg == Other; } 87 bool operator!=(unsigned Other) const { return Reg != Other; } 88 bool operator==(int Other) const { return Reg == unsigned(Other); } 89 bool operator!=(int Other) const { return Reg != unsigned(Other); } 91 bool operator==(MCPhysReg Other) const { return Reg == unsigned(Other); } 92 bool operator!=(MCPhysReg Other) const { return Reg != unsigned(Other); }
|
| D | MCSchedule.h | 55 bool operator==(const MCProcResourceDesc &Other) const { 56 return NumUnits == Other.NumUnits && SuperIdx == Other.SuperIdx 57 && BufferSize == Other.BufferSize; 67 bool operator==(const MCWriteProcResEntry &Other) const { 68 return ProcResourceIdx == Other.ProcResourceIdx && Cycles == Other.Cycles; 81 bool operator==(const MCWriteLatencyEntry &Other) const { 82 return Cycles == Other.Cycles && WriteResourceID == Other.WriteResourceID; 99 bool operator==(const MCReadAdvanceEntry &Other) const { 100 return UseIdx == Other.UseIdx && WriteResourceID == Other.WriteResourceID 101 && Cycles == Other.Cycles;
|
| /openbsd/src/gnu/llvm/llvm/include/llvm/ADT/ |
| D | APFixedPoint.h | 89 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, bool *Overflow = nullptr) const; 191 APFixedPoint sub(const APFixedPoint &Other, bool *Overflow = nullptr) const; 192 APFixedPoint mul(const APFixedPoint &Other, bool *Overflow = nullptr) const; 193 APFixedPoint div(const APFixedPoint &Other, bool *Overflow = nullptr) const; [all …]
|
| /openbsd/src/gnu/llvm/llvm/lib/CodeGen/ |
| D | RegAllocScore.cpp | 38 RegAllocScore &RegAllocScore::operator+=(const RegAllocScore &Other) { in operator +=() argument 39 CopyCounts += Other.copyCounts(); in operator +=() 40 LoadCounts += Other.loadCounts(); in operator +=() 41 StoreCounts += Other.storeCounts(); in operator +=() 42 LoadStoreCounts += Other.loadStoreCounts(); in operator +=() 43 CheapRematCounts += Other.cheapRematCounts(); in operator +=() 44 ExpensiveRematCounts += Other.expensiveRematCounts(); in operator +=() 48 bool RegAllocScore::operator==(const RegAllocScore &Other) const { in operator ==() 49 return copyCounts() == Other.copyCounts() && in operator ==() 50 loadCounts() == Other.loadCounts() && in operator ==() [all …]
|
| /openbsd/src/gnu/llvm/compiler-rt/lib/fuzzer/ |
| D | FuzzerCommand.h | 39 explicit Command(const Command &Other) in Command() argument 40 : Args(Other.Args), CombinedOutAndErr(Other.CombinedOutAndErr), in Command() 41 OutputFile(Other.OutputFile) {} in Command() 43 Command &operator=(const Command &Other) { 44 Args = Other.Args; 45 CombinedOutAndErr = Other.CombinedOutAndErr; 46 OutputFile = Other.OutputFile; 85 auto IsMatch = [&](const std::string &Other) { in hasFlag() 86 return Arg.compare(0, std::string::npos, Other, 0, Arg.length()) == 0; in hasFlag() 96 auto IsMatch = [&](const std::string &Other) { in getFlagValue() [all …]
|
| /openbsd/src/gnu/llvm/llvm/lib/Analysis/ |
| D | ValueLattice.cpp | 15 const ValueLatticeElement &Other, in getCompare() argument 18 if (isUnknown() || Other.isUnknown()) in getCompare() 23 if (isUndef() || Other.isUndef()) in getCompare() 26 if (isConstant() && Other.isConstant()) in getCompare() 28 Other.getConstant(), DL); in getCompare() 32 if ((isNotConstant() && Other.isConstant() && in getCompare() 33 getNotConstant() == Other.getConstant()) || in getCompare() 34 (isConstant() && Other.isNotConstant() && in getCompare() 35 getConstant() == Other.getNotConstant())) in getCompare() 42 if (!isConstantRange() || !Other.isConstantRange()) in getCompare() [all …]
|
| /openbsd/src/gnu/llvm/llvm/include/llvm/ProfileData/ |
| D | MemProf.h | 110 bool operator==(const PortableMemInfoBlock &Other) const { 112 if (Other.get##Name() != get##Name()) \ 119 bool operator!=(const PortableMemInfoBlock &Other) const { 120 return !operator==(Other); 157 Frame(const Frame &Other) { in Frame() 158 Function = Other.Function; in Frame() 159 SymbolName = Other.SymbolName; in Frame() 160 LineOffset = Other.LineOffset; in Frame() 161 Column = Other.Column; in Frame() 162 IsInlineFrame = Other.IsInlineFrame; in Frame() [all …]
|
| /openbsd/src/gnu/llvm/llvm/include/llvm/Analysis/ |
| D | TensorSpec.h | 68 bool operator==(const TensorSpec &Other) const { 69 return Name == Other.Name && Port == Other.Port && Type == Other.Type && 70 Shape == Other.Shape; 73 bool operator!=(const TensorSpec &Other) const { return !(*this == Other); } 86 TensorSpec(const std::string &NewName, const TensorSpec &Other) in TensorSpec() argument 87 : TensorSpec(NewName, Other.Port, Other.Type, Other.ElementSize, in TensorSpec() 88 Other.Shape) {} in TensorSpec()
|
| D | MustExecute.h | 284 MustBeExecutedIterator(const MustBeExecutedIterator &Other) = default; 286 MustBeExecutedIterator(MustBeExecutedIterator &&Other) in MustBeExecutedIterator() 287 : Visited(std::move(Other.Visited)), Explorer(Other.Explorer), in MustBeExecutedIterator() 288 CurInst(Other.CurInst), Head(Other.Head), Tail(Other.Tail) {} in MustBeExecutedIterator() 290 MustBeExecutedIterator &operator=(MustBeExecutedIterator &&Other) { 291 if (this != &Other) { 292 std::swap(Visited, Other.Visited); 293 std::swap(CurInst, Other.CurInst); 294 std::swap(Head, Other.Head); 295 std::swap(Tail, Other.Tail); [all …]
|
| /openbsd/src/gnu/usr.bin/perl/lib/unicore/auxiliary/ |
| D | GCBTest.txt | 25 ÷ 0020 ÷ 0020 ÷ # ÷ [0.2] SPACE (Other) ÷ [999.0] SPACE (Other) ÷ [0.3] 26 …020 × 0308 ÷ 0020 ÷ # ÷ [0.2] SPACE (Other) × [9.0] COMBINING DIAERESIS (Extend_ExtCccZwj) ÷ [999… 27 ÷ 0020 ÷ 000D ÷ # ÷ [0.2] SPACE (Other) ÷ [5.0] <CARRIAGE RETURN (CR)> (CR) ÷ [0.3] 28 ÷ 0020 × 0308 ÷ 000D ÷ # ÷ [0.2] SPACE (Other) × [9.0] COMBINING DIAERESIS (Extend_ExtCccZwj) ÷ [5… 29 ÷ 0020 ÷ 000A ÷ # ÷ [0.2] SPACE (Other) ÷ [5.0] <LINE FEED (LF)> (LF) ÷ [0.3] 30 ÷ 0020 × 0308 ÷ 000A ÷ # ÷ [0.2] SPACE (Other) × [9.0] COMBINING DIAERESIS (Extend_ExtCccZwj) ÷ [5… 31 ÷ 0020 ÷ 0001 ÷ # ÷ [0.2] SPACE (Other) ÷ [5.0] <START OF HEADING> (Control) ÷ [0.3] 32 ÷ 0020 × 0308 ÷ 0001 ÷ # ÷ [0.2] SPACE (Other) × [9.0] COMBINING DIAERESIS (Extend_ExtCccZwj) ÷ [5… 33 ÷ 0020 × 034F ÷ # ÷ [0.2] SPACE (Other) × [9.0] COMBINING GRAPHEME JOINER (Extend) ÷ [0.3] 34 ÷ 0020 × 0308 × 034F ÷ # ÷ [0.2] SPACE (Other) × [9.0] COMBINING DIAERESIS (Extend_ExtCccZwj) × [9… [all …]
|
| /openbsd/src/gnu/llvm/llvm/include/llvm/Transforms/Scalar/ |
| D | GVNExpression.h | 76 bool operator!=(const Expression &Other) const { return !(*this == Other); } 77 bool operator==(const Expression &Other) const { 78 if (getOpcode() != Other.getOpcode()) 85 getExpressionType() != Other.getExpressionType()) 88 return equals(Other); 100 virtual bool equals(const Expression &Other) const { return true; } in equals() argument 104 virtual bool exactlyEquals(const Expression &Other) const { in exactlyEquals() argument 105 return getExpressionType() == Other.getExpressionType() && equals(Other); in exactlyEquals() 213 bool equals(const Expression &Other) const override { in equals() argument 214 if (getOpcode() != Other.getOpcode()) in equals() [all …]
|
| /openbsd/src/gnu/llvm/llvm/utils/TableGen/ |
| D | AsmWriterInst.h | 66 bool operator!=(const AsmWriterOperand &Other) const { 67 if (OperandType != Other.OperandType || Str != Other.Str) return true; 69 return MIOpNo != Other.MIOpNo || MiModifier != Other.MiModifier || 70 PCRel != Other.PCRel; 73 bool operator==(const AsmWriterOperand &Other) const { 74 return !operator!=(Other); 93 unsigned MatchesAllButOneOp(const AsmWriterInst &Other) const;
|