Home
last modified time | relevance | path

Searched refs:Other (Results 1 – 25 of 1064) sorted by relevance

12345678910>>...43

/openbsd/gnu/llvm/clang/lib/Format/
H A DContinuationIndenter.h361 if (Indent != Other.Indent)
362 return Indent < Other.Indent;
363 if (LastSpace != Other.LastSpace)
364 return LastSpace < Other.LastSpace;
369 if (IsAligned != Other.IsAligned)
385 if (ColonPos != Other.ColonPos)
386 return ColonPos < Other.ColonPos;
465 if (NextToken != Other.NextToken)
467 if (Column != Other.Column)
468 return Column < Other.Column;
[all …]
/openbsd/games/phantasia/
H A Dinterplayer.c56 && (Other.p_status != S_CLOAKED || Other.p_specialtype != SC_VALAR)) in checkbattle()
67 && (Other.p_status == S_PLAYING || Other.p_status == S_INBATTLE) in checkbattle()
303 collecttaxes(Other.p_gold, Other.p_gems); in battleplayer()
499 tampered(Other.p_tampered, Other.p_1scratch, Other.p_2scratch); in checktampered()
742 || Circle >= CIRCLE(Other.p_x, Other.p_y) in userlist()
753 Other.p_name, Other.p_x, Other.p_y); in userlist()
757 Other.p_name, descrlocation(&Other, TRUE)); in userlist()
759 printw("%6.0f %s %-9.9s%s\n", Other.p_level, descrtype(&Other, TRUE), in userlist()
760 Other.p_login, descrstatus(&Other)); in userlist()
812 if (Other.p_specialtype == SC_KING && Other.p_status != S_NOTUSED) in throneroom()
[all …]
/openbsd/gnu/llvm/clang/include/clang/Basic/
H A DPartialDiagnostic.h51 Allocator = Other.Allocator; in PartialDiagnostic()
52 if (Other.DiagStorage) { in PartialDiagnostic()
75 PartialDiagnostic(PartialDiagnostic &&Other) : DiagID(Other.DiagID) { in PartialDiagnostic() argument
76 Allocator = Other.Allocator; in PartialDiagnostic()
83 : DiagID(Other.DiagID) { in PartialDiagnostic()
86 if (Other.DiagStorage) in PartialDiagnostic()
91 : DiagID(Other.getID()) { in PartialDiagnostic()
98 AddTaggedVal(Other.getRawArg(I), Other.getArgKind(I)); in PartialDiagnostic()
111 DiagID = Other.DiagID;
112 if (Other.DiagStorage) {
[all …]
/openbsd/gnu/llvm/llvm/include/llvm/IR/
H A DConstantRange.h395 ConstantRange add(const ConstantRange &Other) const;
407 ConstantRange sub(const ConstantRange &Other) const;
429 ConstantRange smax(const ConstantRange &Other) const;
433 ConstantRange umax(const ConstantRange &Other) const;
437 ConstantRange smin(const ConstantRange &Other) const;
441 ConstantRange umin(const ConstantRange &Other) const;
446 ConstantRange udiv(const ConstantRange &Other) const;
453 ConstantRange sdiv(const ConstantRange &Other) const;
458 ConstantRange urem(const ConstantRange &Other) const;
463 ConstantRange srem(const ConstantRange &Other) const;
[all …]
/openbsd/gnu/llvm/llvm/lib/IR/
H A DConstantRange.cpp308 APInt SMin = Other.getSignedMin(), SMax = Other.getSignedMax(); in makeGuaranteedNoWrapRegion()
319 APInt SMin = Other.getSignedMin(), SMax = Other.getSignedMax(); in makeGuaranteedNoWrapRegion()
394 return (Upper - Lower).ult(Other.Upper - Other.Lower); in isSizeStrictlySmallerThan()
463 return Lower.ule(Other.getLower()) && Other.getUpper().ule(Upper); in contains()
470 return Other.getUpper().ule(Upper) && Lower.ule(Other.getLower()); in contains()
881 return add(Other); in binaryOp()
883 return sub(Other); in binaryOp()
895 return shl(Other); in binaryOp()
909 return add(Other); in binaryOp()
911 return sub(Other); in binaryOp()
[all …]
/openbsd/gnu/llvm/llvm/include/llvm/CodeGen/
H A DMIRYamlMapping.h196 return ID == Other.ID && Class == Other.Class &&
258 return ID == Other.ID && Name == Other.Name && Type == Other.Type &&
259 Offset == Other.Offset && Size == Other.Size &&
326 return ID == Other.ID && Type == Other.Type && Offset == Other.Offset &&
327 Size == Other.Size && Alignment == Other.Alignment &&
440 return Reg == Other.Reg && ArgNo == Other.ArgNo;
450 return BlockNum == Other.BlockNum && Offset == Other.Offset;
500 std::tie(Other.SrcInst, Other.SrcOp, Other.DstInst, Other.DstOp);
529 return ID == Other.ID && Value == Other.Value &&
550 return ID == Other.ID && Blocks == Other.Blocks;
[all …]
H A DRegister.h129 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/gnu/llvm/clang/include/clang/Sema/
H A DLookup.h172 : 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()
185 Ambiguity(std::move(Other.Ambiguity)), Decls(std::move(Other.Decls)), in LookupResult()
189 SemaPtr(std::move(Other.SemaPtr)), NameInfo(std::move(Other.NameInfo)), in LookupResult()
191 LookupKind(std::move(Other.LookupKind)), IDNS(std::move(Other.IDNS)), in LookupResult()
199 Other.Paths = nullptr; in LookupResult()
200 Other.Diagnose = false; in LookupResult()
222 Other.Paths = nullptr;
223 Other.Diagnose = false;
[all …]
H A DSemaConcept.h38 if (!ParameterMapping != !Other.ParameterMapping) in hasMatchingParameterMapping()
70 if (ConstraintExpr != Other.ConstraintExpr) in subsumes()
74 return hasMatchingParameterMapping(C, Other); in subsumes()
100 if (Other.isAtomic()) { in NormalizedConstraint()
105 NormalizedConstraint(C, Other.getLHS()), in NormalizedConstraint()
107 Other.getCompoundKind()); in NormalizedConstraint()
110 NormalizedConstraint(NormalizedConstraint &&Other): in NormalizedConstraint()
111 Constraint(Other.Constraint) { in NormalizedConstraint()
112 Other.Constraint = nullptr; in NormalizedConstraint()
116 if (&Other != this) {
[all …]
/openbsd/gnu/llvm/llvm/include/llvm/Support/
H A DErrorOr.h93 ErrorOr(const ErrorOr &Other) { in ErrorOr() argument
94 copyConstruct(Other); in ErrorOr()
100 copyConstruct(Other);
108 copyConstruct(Other);
111 ErrorOr(ErrorOr &&Other) { in ErrorOr() argument
125 ErrorOr<OtherT> &&Other,
131 copyAssign(Other);
136 moveAssign(std::move(Other));
172 if (!Other.HasError) { in copyConstruct()
199 new (this) ErrorOr(Other); in copyAssign()
[all …]
H A DMSVCErrorWorkarounds.h31 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)) {}
H A DModRef.h72 Other = 2, enumerator
217 return isNoModRef(getModRef(Other)); in onlyAccessesInaccessibleOrArgMem()
222 return MemoryEffects(Data & Other.Data);
226 MemoryEffects &operator&=(MemoryEffects Other) {
227 Data &= Other.Data;
233 return MemoryEffects(Data | Other.Data);
238 Data |= Other.Data;
243 bool operator==(MemoryEffects Other) const {
244 return Data == Other.Data;
248 bool operator!=(MemoryEffects Other) const {
[all …]
/openbsd/gnu/llvm/clang/include/clang/AST/
H A DCharUnits.h75 Quantity += Other.Quantity;
86 Quantity -= Other.Quantity;
99 return Quantity == Other.Quantity;
102 return Quantity != Other.Quantity;
107 return Quantity < Other.Quantity;
110 return Quantity <= Other.Quantity;
113 return Quantity > Other.Quantity;
116 return Quantity >= Other.Quantity;
163 return Quantity / Other.Quantity;
169 return Quantity % Other.Quantity;
[all …]
/openbsd/gnu/llvm/llvm/include/llvm/MC/
H A DMCRegister.h79 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); }
H A DMCSchedule.h55 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/gnu/llvm/llvm/include/llvm/ADT/
H A DAPFixedPoint.h111 bool operator==(FixedPointSemantics Other) const {
112 return Width == Other.Width && LsbWeight == Other.LsbWeight &&
113 IsSigned == Other.IsSigned && IsSaturated == Other.IsSaturated &&
116 bool operator!=(FixedPointSemantics Other) const { return !(*this == Other); }
245 int compare(const APFixedPoint &Other) const;
247 return compare(Other) == 0;
250 return compare(Other) != 0;
252 bool operator>(const APFixedPoint &Other) const { return compare(Other) > 0; }
253 bool operator<(const APFixedPoint &Other) const { return compare(Other) < 0; }
255 return compare(Other) >= 0;
[all …]
/openbsd/gnu/llvm/llvm/lib/CodeGen/
H A DRegAllocScore.cpp39 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 +=()
49 return copyCounts() == Other.copyCounts() && in operator ==()
50 loadCounts() == Other.loadCounts() && in operator ==()
51 storeCounts() == Other.storeCounts() && in operator ==()
52 loadStoreCounts() == Other.loadStoreCounts() && in operator ==()
[all …]
/openbsd/gnu/llvm/compiler-rt/lib/fuzzer/
H A DFuzzerCommand.h39 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()
96 auto IsMatch = [&](const std::string &Other) { in getFlagValue()
155 Command(Command &&Other) = delete;
[all …]
/openbsd/gnu/llvm/llvm/lib/Analysis/
H A DValueLattice.cpp15 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/gnu/llvm/llvm/include/llvm/ProfileData/
H A DMemProf.h120 return !operator==(Other);
157 Frame(const Frame &Other) { in Frame()
158 Function = Other.Function; in Frame()
161 Column = Other.Column; in Frame()
171 return Other.Function == Function && Other.LineOffset == LineOffset &&
172 Other.Column == Column && Other.IsInlineFrame == IsInlineFrame;
176 Function = Other.Function;
179 Column = Other.Column;
184 bool operator!=(const Frame &Other) const { return !operator==(Other); }
273 if (Other.Info != Info)
[all …]
/openbsd/gnu/llvm/llvm/include/llvm/Analysis/
H A DTensorSpec.h68 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()
/openbsd/gnu/llvm/llvm/lib/CodeGen/LiveDebugValues/
H A DInstrRefBasedImpl.h87 std::make_pair(Other.SpillBase, Other.SpillOffset);
92 std::make_tuple(Other.SpillBase, Other.SpillOffset.getFixed(),
155 bool operator!=(const ValueIDNum &Other) const { return !(*this == Other); }
230 return !(*this == Other);
258 std::tie(Other.DIExpr, Other.Indirect, Other.IsVariadic);
262 return !(*this == Other);
319 return Loc == Other.Loc;
353 bool operator==(const DbgOpID &Other) const { return RawID == Other.RawID; }
354 bool operator!=(const DbgOpID &Other) const { return !(*this == Other); }
507 if (std::tie(Kind, Properties) != std::tie(Other.Kind, Other.Properties))
[all …]
/openbsd/gnu/llvm/libcxx/utils/data/unicode/
H A DGraphemeBreakTest.txt25 ÷ 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…
57 ÷ 0020 ÷ 0378 ÷ # ÷ [0.2] SPACE (Other) ÷ [999.0] <reserved-0378> (Other) ÷ [0.3]
58 … 0308 ÷ 0378 ÷ # ÷ [0.2] SPACE (Other) × [9.0] COMBINING DIAERESIS (Extend_ExtCccZwj) ÷ [999.0] <…
569 ÷ 0378 ÷ 0020 ÷ # ÷ [0.2] <reserved-0378> (Other) ÷ [999.0] SPACE (Other) ÷ [0.3]
570 … ÷ 0020 ÷ # ÷ [0.2] <reserved-0378> (Other) × [9.0] COMBINING DIAERESIS (Extend_ExtCccZwj) ÷ [999…
601 ÷ 0378 ÷ 0378 ÷ # ÷ [0.2] <reserved-0378> (Other) ÷ [999.0] <reserved-0378> (Other) ÷ [0.3]
602 …78 ÷ # ÷ [0.2] <reserved-0378> (Other) × [9.0] COMBINING DIAERESIS (Extend_ExtCccZwj) ÷ [999.0] <…
605 …× 200D ÷ 0646 ÷ # ÷ [0.2] SPACE (Other) × [9.0] ZERO WIDTH JOINER (ZWJ_ExtCccZwj) ÷ [999.0] ARABI…
606 … ÷ 0020 ÷ # ÷ [0.2] ARABIC LETTER NOON (Other) × [9.0] ZERO WIDTH JOINER (ZWJ_ExtCccZwj) ÷ [999.0…
[all …]
/openbsd/gnu/usr.bin/perl/lib/unicore/auxiliary/
H A DGCBTest.txt25 ÷ 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…
57 ÷ 0020 ÷ 0378 ÷ # ÷ [0.2] SPACE (Other) ÷ [999.0] <reserved-0378> (Other) ÷ [0.3]
58 … 0308 ÷ 0378 ÷ # ÷ [0.2] SPACE (Other) × [9.0] COMBINING DIAERESIS (Extend_ExtCccZwj) ÷ [999.0] <…
569 ÷ 0378 ÷ 0020 ÷ # ÷ [0.2] <reserved-0378> (Other) ÷ [999.0] SPACE (Other) ÷ [0.3]
570 … ÷ 0020 ÷ # ÷ [0.2] <reserved-0378> (Other) × [9.0] COMBINING DIAERESIS (Extend_ExtCccZwj) ÷ [999…
601 ÷ 0378 ÷ 0378 ÷ # ÷ [0.2] <reserved-0378> (Other) ÷ [999.0] <reserved-0378> (Other) ÷ [0.3]
602 …78 ÷ # ÷ [0.2] <reserved-0378> (Other) × [9.0] COMBINING DIAERESIS (Extend_ExtCccZwj) ÷ [999.0] <…
605 …× 200D ÷ 0646 ÷ # ÷ [0.2] SPACE (Other) × [9.0] ZERO WIDTH JOINER (ZWJ_ExtCccZwj) ÷ [999.0] ARABI…
606 … ÷ 0020 ÷ # ÷ [0.2] ARABIC LETTER NOON (Other) × [9.0] ZERO WIDTH JOINER (ZWJ_ExtCccZwj) ÷ [999.0…
[all …]
/openbsd/gnu/llvm/llvm/include/llvm/Transforms/Scalar/
H A DGVNExpression.h76 bool operator!=(const Expression &Other) const { return !(*this == Other); }
77 bool operator==(const Expression &Other) const {
78 if (getOpcode() != Other.getOpcode())
88 return equals(Other);
105 return getExpressionType() == Other.getExpressionType() && equals(Other); in exactlyEquals()
214 if (getOpcode() != Other.getOpcode()) in equals()
290 if (!this->BasicExpression::equals(Other)) in equals()
355 return Expression::exactlyEquals(Other) && in exactlyEquals()
395 return Expression::exactlyEquals(Other) && in exactlyEquals()
455 if (!this->BasicExpression::equals(Other)) in equals()
[all …]

12345678910>>...43