Home
last modified time | relevance | path

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

12345678910>>...16

/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/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...]
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/include/llvm/CodeGen/
H A DMIRYamlMapping.h42 bool operator==(const StringValue &Other) const { in operator ==()
43 return Value == Other.Value; in operator ==()
83 bool operator==(const BlockStringValue &Other) const { in operator ==()
84 return Value == Other.Value; in operator ==()
107 bool operator==(const UnsignedValue &Other) const { in operator ==()
108 return Value == Other.Value; in operator ==()
162 bool operator==(const VirtualRegisterDefinition &Other) const { in operator ==()
163 return ID == Other.ID && Class == Other.Class && in operator ==()
164 PreferredRegister == Other in operator ==()
[all...]
H A DRegister.h120 bool operator==(const Register &Other) const { return Reg == Other.Reg; } in operator ==()
121 bool operator!=(const Register &Other) const { return Reg != Other.Reg; } in operator !=()
122 bool operator==(const MCRegister &Other) const { return Reg == Other.id(); } in operator ==()
123 bool operator!=(const MCRegister &Other) const { return Reg != Other.id(); } in operator !=()
129 bool operator==(unsigned Other) const { return Reg == Other; } in operator ==()
[all...]
H A DLiveInterval.h185 bool operator<(const Segment &Other) const {
186 return std::tie(start, end) < std::tie(Other.start, Other.end);
188 bool operator==(const Segment &Other) const {
189 return start == Other.start && end == Other.end;
192 bool operator!=(const Segment &Other) const {
193 return !(*this == Other);
236 LiveRange(const LiveRange &Other, BumpPtrAllocator &Allocator) {
237 assert(Other
[all...]
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Target/AArch64/
H A DAArch64StackOffset.h53 StackOffset(const StackOffset &Other) in StackOffset() argument
54 : Bytes(Other.Bytes), ScalableBytes(Other.ScalableBytes) {} in StackOffset()
58 StackOffset &operator+=(const StackOffset::Part &Other) { in operator +=() argument
59 const TypeSize Size = Other.second.getSizeInBits(); in operator +=()
61 ScalableBytes += Other.first * ((int64_t)Size.getKnownMinSize() / 8); in operator +=()
63 Bytes += Other.first * ((int64_t)Size.getFixedSize() / 8); in operator +=()
67 StackOffset &operator+=(const StackOffset &Other) { in operator +=() argument
68 Bytes += Other.Bytes; in operator +=()
69 ScalableBytes += Other in operator +=()
79 operator -=(const StackOffset &Other) operator -=() argument
[all...]
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/IR/
H A DConstantRange.cpp226 const ConstantRange &Other, in makeGuaranteedNoWrapRegion()
237 unsigned BitWidth = Other.getBitWidth(); in makeGuaranteedNoWrapRegion()
246 -Other.getUnsignedMax()); in makeGuaranteedNoWrapRegion()
249 APInt SMin = Other.getSignedMin(), SMax = Other.getSignedMax(); in makeGuaranteedNoWrapRegion()
257 return getNonEmpty(Other.getUnsignedMax(), APInt::getMinValue(BitWidth)); in makeGuaranteedNoWrapRegion()
260 APInt SMin = Other.getSignedMin(), SMax = Other.getSignedMax(); in makeGuaranteedNoWrapRegion()
268 return makeExactMulNUWRegion(Other.getUnsignedMax()); in makeGuaranteedNoWrapRegion()
270 return makeExactMulNSWRegion(Other in makeGuaranteedNoWrapRegion()
225 makeGuaranteedNoWrapRegion(Instruction::BinaryOps BinOp, const ConstantRange &Other, unsigned NoWrapKind) makeGuaranteedNoWrapRegion() argument
296 makeExactNoWrapRegion(Instruction::BinaryOps BinOp, const APInt &Other, unsigned NoWrapKind) makeExactNoWrapRegion() argument
[all...]
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/include/llvm/MC/
H A DMCRegister.h76 bool operator==(const MCRegister &Other) const { return Reg == Other.Reg; } in operator ==()
77 bool operator!=(const MCRegister &Other) const { return Reg != Other.Reg; } in operator !=()
83 bool operator==(unsigned Other) const { return Reg == Other; } in operator ==()
84 bool operator!=(unsigned Other) const { return Reg != Other; } in operator !=()
85 bool operator==(int Other) const { return Reg == unsigned(Other); } in operator ==()
[all...]
H A DMCSchedule.h56 bool operator==(const MCProcResourceDesc &Other) const { in operator ==()
57 return NumUnits == Other.NumUnits && SuperIdx == Other.SuperIdx in operator ==()
58 && BufferSize == Other.BufferSize; in operator ==()
68 bool operator==(const MCWriteProcResEntry &Other) const { in operator ==()
69 return ProcResourceIdx == Other.ProcResourceIdx && Cycles == Other.Cycles; in operator ==()
82 bool operator==(const MCWriteLatencyEntry &Other) const { in operator ==()
83 return Cycles == Other.Cycles && WriteResourceID == Other in operator ==()
[all...]
H A DMCContext.h206 bool operator<(const ELFSectionKey &Other) const { in operator <()
207 if (SectionName != Other.SectionName) in operator <()
208 return SectionName < Other.SectionName; in operator <()
209 if (GroupName != Other.GroupName) in operator <()
210 return GroupName < Other.GroupName; in operator <()
211 return UniqueID < Other.UniqueID; in operator <()
226 bool operator<(const COFFSectionKey &Other) const { in operator <()
227 if (SectionName != Other.SectionName) in operator <()
228 return SectionName < Other.SectionName; in operator <()
229 if (GroupName != Other in operator <()
[all...]
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/include/llvm/Support/
H A DErrorOr.h94 ErrorOr(const ErrorOr &Other) { in ErrorOr() argument
95 copyConstruct(Other); in ErrorOr()
100 const ErrorOr<OtherT> &Other, in ErrorOr()
103 copyConstruct(Other); in ErrorOr()
108 const ErrorOr<OtherT> &Other, in ErrorOr()
111 copyConstruct(Other); in ErrorOr()
114 ErrorOr(ErrorOr &&Other) { in ErrorOr() argument
115 moveConstruct(std::move(Other)); in ErrorOr()
120 ErrorOr<OtherT> &&Other, in ErrorOr()
123 moveConstruct(std::move(Other)); in ErrorOr()
99 ErrorOr( const ErrorOr<OtherT> &Other, typename std::enable_if<std::is_convertible<OtherT, T>::value>::type * = nullptr) ErrorOr() argument
107 ErrorOr( const ErrorOr<OtherT> &Other, typename std::enable_if< !std::is_convertible<OtherT, const T &>::value>::type * = nullptr) ErrorOr() argument
119 ErrorOr( ErrorOr<OtherT> &&Other, typename std::enable_if<std::is_convertible<OtherT, T>::value>::type * = nullptr) ErrorOr() argument
129 ErrorOr( ErrorOr<OtherT> &&Other, typename std::enable_if<!std::is_convertible<OtherT, T>::value>::type * = nullptr) ErrorOr() argument
136 operator =(const ErrorOr &Other) operator =() argument
141 operator =(ErrorOr &&Other) operator =() argument
177 copyConstruct(const ErrorOr<OtherT> &Other) copyConstruct() argument
200 copyAssign(const ErrorOr<OtherT> &Other) copyAssign() argument
209 moveConstruct(ErrorOr<OtherT> &&Other) moveConstruct() argument
222 moveAssign(ErrorOr<OtherT> &&Other) moveAssign() argument
[all...]
H A DMSVCErrorWorkarounds.h31 MSVCPError(MSVCPError &&Other) : Error(std::move(Other)) {} in MSVCPError() argument
33 MSVCPError &operator=(MSVCPError Other) { in operator =() argument
34 Error::operator=(std::move(Other)); in operator =()
50 MSVCPExpected(MSVCPExpected &&Other) : Expected<T>(std::move(Other)) {} in MSVCPExpected() argument
52 MSVCPExpected &operator=(MSVCPExpected &&Other) { in operator =() argument
53 Expected<T>::operator=(std::move(Other)); in operator =()
68 Expected<OtherT> &&Other, in MSVCPExpected()
71 : Expected<T>(std::move(Other)) {} in MSVCPExpected()
67 MSVCPExpected( Expected<OtherT> &&Other, typename std::enable_if<std::is_convertible<OtherT, T>::value>::type * = nullptr) MSVCPExpected() argument
74 MSVCPExpected( Expected<OtherT> &&Other, typename std::enable_if<!std::is_convertible<OtherT, T>::value>::type * = nullptr) MSVCPExpected() argument
[all...]
H A DBinaryStreamRef.h40 BinaryStreamRefBase(const BinaryStreamRefBase &Other) = default; member in llvm::BinaryStreamRefBase
41 BinaryStreamRefBase &operator=(const BinaryStreamRefBase &Other) = default; member in llvm::BinaryStreamRefBase
43 BinaryStreamRefBase &operator=(BinaryStreamRefBase &&Other) = default; member in llvm::BinaryStreamRefBase
44 BinaryStreamRefBase(BinaryStreamRefBase &&Other) = default; member in llvm::BinaryStreamRefBase
124 bool operator==(const RefType &Other) const { in operator ==()
125 if (BorrowedImpl != Other.BorrowedImpl) in operator ==()
127 if (ViewOffset != Other.ViewOffset) in operator ==()
129 if (Length != Other.Length) in operator ==()
173 BinaryStreamRef(const BinaryStreamRef &Other) = default; member in llvm::BinaryStreamRef
174 BinaryStreamRef &operator=(const BinaryStreamRef &Other) member in llvm::BinaryStreamRef
175 BinaryStreamRef(BinaryStreamRef &&Other) = default; global() member in llvm::BinaryStreamRef
176 BinaryStreamRef &operator=(BinaryStreamRef &&Other) = default; global() member in llvm::BinaryStreamRef
246 WritableBinaryStreamRef(const WritableBinaryStreamRef &Other) = default; global() member in llvm::WritableBinaryStreamRef
248 operator=(const WritableBinaryStreamRef &Other) = default; global() member in llvm::WritableBinaryStreamRef
250 WritableBinaryStreamRef(WritableBinaryStreamRef &&Other) = default; global() member in llvm::WritableBinaryStreamRef
251 WritableBinaryStreamRef &operator=(WritableBinaryStreamRef &&Other) = default; global() member in llvm::WritableBinaryStreamRef
[all...]
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-subzero/include/llvm/Support/
H A DErrorOr.h104 ErrorOr(const ErrorOr &Other) { in ErrorOr() argument
105 copyConstruct(Other); in ErrorOr()
110 const ErrorOr<OtherT> &Other, in ErrorOr()
113 copyConstruct(Other); in ErrorOr()
118 const ErrorOr<OtherT> &Other, in ErrorOr()
121 copyConstruct(Other); in ErrorOr()
124 ErrorOr(ErrorOr &&Other) { in ErrorOr() argument
125 moveConstruct(std::move(Other)); in ErrorOr()
130 ErrorOr<OtherT> &&Other, in ErrorOr()
133 moveConstruct(std::move(Other)); in ErrorOr()
109 ErrorOr( const ErrorOr<OtherT> &Other, typename std::enable_if<std::is_convertible<OtherT, T>::value>::type * = nullptr) ErrorOr() argument
117 ErrorOr( const ErrorOr<OtherT> &Other, typename std::enable_if< !std::is_convertible<OtherT, const T &>::value>::type * = nullptr) ErrorOr() argument
129 ErrorOr( ErrorOr<OtherT> &&Other, typename std::enable_if<std::is_convertible<OtherT, T>::value>::type * = nullptr) ErrorOr() argument
139 ErrorOr( ErrorOr<OtherT> &&Other, typename std::enable_if<!std::is_convertible<OtherT, T>::value>::type * = nullptr) ErrorOr() argument
146 operator =(const ErrorOr &Other) operator =() argument
151 operator =(ErrorOr &&Other) operator =() argument
187 copyConstruct(const ErrorOr<OtherT> &Other) copyConstruct() argument
210 copyAssign(const ErrorOr<OtherT> &Other) copyAssign() argument
219 moveConstruct(ErrorOr<OtherT> &&Other) moveConstruct() argument
232 moveAssign(ErrorOr<OtherT> &&Other) moveAssign() argument
[all...]
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/include/llvm/Analysis/
H A DValueLattice.h82 ValueLatticeElement(const ValueLatticeElement &Other) : Tag(undefined) { in ValueLatticeElement() argument
83 *this = Other; in ValueLatticeElement()
88 ValueLatticeElement &operator=(const ValueLatticeElement &Other) { in operator =() argument
91 if (isConstantRange() && !Other.isConstantRange()) in operator =()
96 if ((isConstant() || isNotConstant()) && !Other.isConstant() && in operator =()
97 !Other.isNotConstant()) in operator =()
100 switch (Other.Tag) { in operator =()
103 new (&Range) ConstantRange(Other.Range); in operator =()
105 Range = Other.Range; in operator =()
109 ConstVal = Other in operator =()
[all...]
H A DMustExecute.h283 MustBeExecutedIterator(const MustBeExecutedIterator &Other) in MustBeExecutedIterator()
284 : Visited(Other.Visited), Explorer(Other.Explorer), in MustBeExecutedIterator()
285 CurInst(Other.CurInst) {} in MustBeExecutedIterator()
287 MustBeExecutedIterator(MustBeExecutedIterator &&Other) in MustBeExecutedIterator()
288 : Visited(std::move(Other.Visited)), Explorer(Other.Explorer), in MustBeExecutedIterator()
289 CurInst(Other.CurInst) {} in MustBeExecutedIterator()
291 MustBeExecutedIterator &operator=(MustBeExecutedIterator &&Other) { in operator =()
292 if (this != &Other) { in operator =()
[all...]
H A DMemoryLocation.h114 // `Other`.
115 LocationSize unionWith(LocationSize Other) const { in unionWith()
116 if (Other == *this) in unionWith()
119 if (!hasValue() || !Other.hasValue()) in unionWith()
122 return upperBound(std::max(getValue(), Other.getValue())); in unionWith()
140 bool operator==(const LocationSize &Other) const { in operator ==()
141 return Value == Other.Value; in operator ==()
144 bool operator!=(const LocationSize &Other) const { in operator !=()
145 return !(*this == Other); in operator !=()
266 bool operator==(const MemoryLocation &Other) cons
[all...]
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/include/llvm/Transforms/Scalar/
H A DGVNExpression.h76 bool operator!=(const Expression &Other) const { return !(*this == Other); } in operator !=()
77 bool operator==(const Expression &Other) const { in operator ==()
78 if (getOpcode() != Other.getOpcode()) in operator ==()
85 getExpressionType() != Other.getExpressionType()) in operator ==()
88 return equals(Other); in operator ==()
100 virtual bool equals(const Expression &Other) const { return true; } in equals()
104 virtual bool exactlyEquals(const Expression &Other) const { in exactlyEquals()
105 return getExpressionType() == Other.getExpressionType() && equals(Other); in exactlyEquals()
[all...]
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/include/llvm/ADT/
H A DSmallSet.h64 SmallSetIterator(const SmallSetIterator &Other) : isSmall(Other.isSmall) { in SmallSetIterator() argument
66 VecIter = Other.VecIter; in SmallSetIterator()
70 new (&SetIter) SetIterTy(Other.SetIter); in SmallSetIterator()
73 SmallSetIterator(SmallSetIterator &&Other) : isSmall(Other.isSmall) { in SmallSetIterator() argument
75 VecIter = std::move(Other.VecIter); in SmallSetIterator()
79 new (&SetIter) SetIterTy(std::move(Other.SetIter)); in SmallSetIterator()
82 SmallSetIterator& operator=(const SmallSetIterator& Other) { in operator =() argument
88 isSmall = Other in operator =()
96 operator =(SmallSetIterator&& Other) operator =() argument
[all...]
H A DCachedHashString.h111 CachedHashString(const CachedHashString &Other) in CachedHashString() argument
112 : Size(Other.Size), Hash(Other.Hash) { in CachedHashString()
113 if (Other.isEmptyOrTombstone()) { in CachedHashString()
114 P = Other.P; in CachedHashString()
117 memcpy(P, Other.P, Size); in CachedHashString()
121 CachedHashString &operator=(CachedHashString Other) { in operator =() argument
122 swap(*this, Other); in operator =()
126 CachedHashString(CachedHashString &&Other) noexcept
127 : P(Other
[all...]
H A DAny.h49 StorageImpl &operator=(const StorageImpl &Other) = delete; member
50 StorageImpl(const StorageImpl &Other) = delete; member
56 Any(const Any &Other) in Any() argument
57 : Storage(Other.Storage ? Other.Storage->clone() : nullptr) {} in Any()
84 Any(Any &&Other) : Storage(std::move(Other.Storage)) {} in Any() argument
86 Any &swap(Any &Other) { in swap() argument
87 std::swap(Storage, Other.Storage); in swap()
91 Any &operator=(Any Other) { in operator =() argument
[all...]
/third_party/rust/crates/serde/test_suite/tests/
H A Dtest_identifier.rs149 Other, in unit_fallthrough()
152 assert_de_tokens(&F::Other, &[Token::U8(42)]); in unit_fallthrough()
153 assert_de_tokens(&F::Other, &[Token::U16(42)]); in unit_fallthrough()
154 assert_de_tokens(&F::Other, &[Token::U32(42)]); in unit_fallthrough()
155 assert_de_tokens(&F::Other, &[Token::U64(42)]); in unit_fallthrough()
156 assert_de_tokens(&F::Other, &[Token::Str("x")]); in unit_fallthrough()
166 Other(String), in newtype_fallthrough()
169 assert_de_tokens(&F::Other("x".to_owned()), &[Token::Str("x")]); in newtype_fallthrough()
179 Other(T), in newtype_fallthrough_generic()
182 assert_de_tokens(&F::Other(4 in newtype_fallthrough_generic()
[all...]
/third_party/typescript/tests/baselines/reference/
H A DtsxElementResolution.js11 class Other {}
23 var d = <Other />;
33 var Other = /** @class */ (function () {
34 function Other() {
36 return Other;
53 var d = <Other />;
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/include/llvm/Object/
H A DTapiUniversal.h38 bool operator==(const ObjectForArch &Other) const { in operator ==()
39 return (Parent == Other.Parent) && (Index == Other.Index); in operator ==()
69 bool operator==(const object_iterator &Other) const { in operator ==()
70 return Obj == Other.Obj; in operator ==()
72 bool operator!=(const object_iterator &Other) const { in operator !=()
73 return !(*this == Other); in operator !=()
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Transforms/ObjCARC/
H A DPtrState.cpp102 bool RRInfo::Merge(const RRInfo &Other) { in Merge() argument
104 if (ReleaseMetadata != Other.ReleaseMetadata) in Merge()
108 KnownSafe &= Other.KnownSafe; in Merge()
109 IsTailCallRelease &= Other.IsTailCallRelease; in Merge()
110 CFGHazardAfflicted |= Other.CFGHazardAfflicted; in Merge()
113 Calls.insert(Other.Calls.begin(), Other.Calls.end()); in Merge()
117 bool Partial = ReverseInsertPts.size() != Other.ReverseInsertPts.size(); in Merge()
118 for (Instruction *Inst : Other.ReverseInsertPts) in Merge()
150 void PtrState::Merge(const PtrState &Other, boo argument
[all...]
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Transforms/Scalar/
H A DLowerConstantIntrinsics.cpp63 BasicBlock *Target, *Other; in replaceConditionalBranchesOnConstant() local
66 Other = BI->getSuccessor(0); in replaceConditionalBranchesOnConstant()
69 Other = BI->getSuccessor(1); in replaceConditionalBranchesOnConstant()
72 Other = nullptr; in replaceConditionalBranchesOnConstant()
74 if (Target && Target != Other) { in replaceConditionalBranchesOnConstant()
76 Other->removePredecessor(Source); in replaceConditionalBranchesOnConstant()
79 if (pred_begin(Other) == pred_end(Other)) in replaceConditionalBranchesOnConstant()

Completed in 34 milliseconds

12345678910>>...16