Home
last modified time | relevance | path

Searched full:other (Results 1 – 25 of 8959) sorted by relevance

12345678910>>...359

/freebsd/contrib/llvm-project/llvm/include/llvm/Transforms/Vectorize/SandboxVectorizer/
H A DInterval.h45 bool operator==(const IntervalIterator &Other) const {
46 assert(&R == &Other.R && "Iterators belong to different regions!");
47 return Other.I == I;
49 bool operator!=(const IntervalIterator &Other) const {
50 return !(*this == Other);
132 bool operator==(const Interval &Other) const {
133 return Top == Other.Top && Bottom == Other.Bottom;
136 bool operator!=(const Interval &Other) const { return !(*this == Other); }
137 /// \Returns true if this interval comes before \p Other in program order.
139 bool comesBefore(const Interval &Other) const { in comesBefore() argument
[all …]
/freebsd/contrib/kyua/utils/
H A Ddatetime.cpp12 // documentation and/or other materials provided with the distribution.
118 /// \param other The object to compare to.
122 datetime::delta::operator==(const datetime::delta& other) const in operator ==()
124 return seconds == other.seconds && useconds == other.useconds; in operator ==()
130 /// \param other The object to compare to.
134 datetime::delta::operator!=(const datetime::delta& other) const in operator !=()
136 return !(*this == other); in operator !=()
142 /// \param other The object to compare to.
144 /// \return True if this time delta is shorter than other; false otherwise.
146 datetime::delta::operator<(const datetime::delta& other) const in operator <()
[all …]
H A Doptional.ipp12 // documentation and/or other materials provided with the distribution.
67 /// \param other The optional object to copy from.
69 utils::optional< T >::optional(const optional< T >& other) :
70 _data(other._data == NULL ? NULL : new T(*(other._data)))
118 /// \param other The optional object to copy from.
123 utils::optional< T >::operator=(const optional< T >& other)
125 T* new_data = other._data == NULL ? NULL : new T(*(other._data));
135 /// \param other The other object to compare this one to.
137 /// \return True if this object and other are equal; false otherwise.
140 utils::optional< T >::operator==(const optional< T >& other) const
[all …]
/freebsd/contrib/llvm-project/lldb/bindings/python/
H A Dpython-extensions.swig307 def __eq__(self, other):
308 return not self.__ne__(other)
367 def __add__(self, other):
368 return int(self) + int(other)
370 def __sub__(self, other):
371 return int(self) - int(other)
373 def __mul__(self, other):
374 return int(self) * int(other)
376 def __floordiv__(self, other):
377 return int(self) // int(other)
[all...]
/freebsd/contrib/llvm-project/clang/include/clang/Basic/
H A DPartialDiagnostic.h49 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 …]
/freebsd/contrib/llvm-project/llvm/include/llvm/CodeGen/
H A DMIRYamlMapping.h42 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;
198 bool operator==(const VirtualRegisterDefinition &Other) const {
199 return ID == Other.ID && Class == Other.Class &&
200 PreferredRegister == Other.PreferredRegister;
221 bool operator==(const MachineFunctionLiveIn &Other) const {
[all …]
H A DRegister.h110 constexpr bool operator==(const Register &Other) const {
111 return Reg == Other.Reg;
113 constexpr bool operator!=(const Register &Other) const {
114 return Reg != Other.Reg;
116 constexpr bool operator==(const MCRegister &Other) const {
117 return Reg == Other.id();
119 constexpr bool operator!=(const MCRegister &Other) const {
120 return Reg != Other.id();
126 constexpr bool operator==(unsigned Other) const { return Reg == Other; }
127 constexpr bool operator!=(unsigned Other) const { return Reg != Other; }
[all …]
/freebsd/contrib/llvm-project/llvm/include/llvm/IR/
H A DConstantRange.h21 // The other integral ranges use min/max values for special range values. For
101 /// predicate with any value contained within Other is contained in the
103 /// 'union over all y in Other . { x : icmp op x y is true }'. If the exact
107 /// Example: Pred = ult and Other = i8 [2, 5) returns Result = [0, 4)
109 makeAllowedICmpRegion(CmpInst::Predicate Pred, const ConstantRange &Other);
112 /// satisfy the given predicate with all values contained within Other.
114 /// 'intersection over all y in Other . { x : icmp op x y is true }'. If the
118 /// Example: Pred = ult and Other = i8 [2, 5) returns [0, 2)
120 makeSatisfyingICmpRegion(CmpInst::Predicate Pred, const ConstantRange &Other);
123 /// the given predicate with any value contained within Other. Formally, this
[all …]
/freebsd/contrib/llvm-project/llvm/lib/IR/
H A DConstantRange.cpp14 // ranges (other integral ranges use min/max values for special range values):
254 const ConstantRange &Other) const { in icmp()
255 if (isEmptySet() || Other.isEmptySet()) in icmp()
261 if (const APInt *R = Other.getSingleElement()) in icmp()
265 return inverse().contains(Other); in icmp()
267 return getUnsignedMax().ult(Other.getUnsignedMin()); in icmp()
269 return getUnsignedMax().ule(Other.getUnsignedMin()); in icmp()
271 return getUnsignedMin().ugt(Other.getUnsignedMax()); in icmp()
273 return getUnsignedMin().uge(Other.getUnsignedMax()); in icmp()
275 return getSignedMax().slt(Other.getSignedMin()); in icmp()
[all …]
H A DConstantFPRange.cpp165 const ConstantFPRange &Other) { in makeAllowedFCmpRegion() argument
166 if (Other.isEmptySet()) in makeAllowedFCmpRegion()
167 return Other; in makeAllowedFCmpRegion()
168 if (Other.containsNaN() && FCmpInst::isUnordered(Pred)) in makeAllowedFCmpRegion()
169 return getFull(Other.getSemantics()); in makeAllowedFCmpRegion()
170 if (Other.isNaNOnly() && FCmpInst::isOrdered(Pred)) in makeAllowedFCmpRegion()
171 return getEmpty(Other.getSemantics()); in makeAllowedFCmpRegion()
175 return getFull(Other.getSemantics()); in makeAllowedFCmpRegion()
177 return getEmpty(Other.getSemantics()); in makeAllowedFCmpRegion()
179 return getNonNaN(Other.getSemantics()); in makeAllowedFCmpRegion()
[all …]
/freebsd/contrib/llvm-project/llvm/include/llvm/Support/
H A DModRef.h67 /// Any other memory.
68 Other = 3, enumerator
72 Last = Other,
150 /// Create MemoryEffectsBase that can only access other memory.
152 return MemoryEffectsBase(Location::Other, MR);
251 /// Intersect with other MemoryEffectsBase.
252 MemoryEffectsBase operator&(MemoryEffectsBase Other) const {
253 return MemoryEffectsBase(Data & Other.Data);
256 /// Intersect (in-place) with other MemoryEffectsBase.
257 MemoryEffectsBase &operator&=(MemoryEffectsBase Other) {
[all …]
H A DErrorOr.h93 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,
107 copyConstruct(Other);
110 ErrorOr(ErrorOr &&Other) { in ErrorOr() argument
111 moveConstruct(std::move(Other)); in ErrorOr()
115 ErrorOr(ErrorOr<OtherT> &&Other,
117 moveConstruct(std::move(Other));
[all …]
/freebsd/contrib/llvm-project/clang/lib/Format/
H A DContinuationIndenter.h176 /// handled in \c addNextStateToQueue, and the penalty for other lines doesn't
358 bool operator<(const ParenState &Other) const {
359 if (Indent != Other.Indent)
360 return Indent < Other.Indent;
361 if (LastSpace != Other.LastSpace)
362 return LastSpace < Other.LastSpace;
363 if (NestedBlockIndent != Other.NestedBlockIndent)
364 return NestedBlockIndent < Other.NestedBlockIndent;
365 if (FirstLessLess != Other.FirstLessLess)
366 return FirstLessLess < Other.FirstLessLess;
[all …]
/freebsd/contrib/llvm-project/llvm/lib/Analysis/
H A DValueLattice.cpp16 const ValueLatticeElement &Other, in getCompare() argument
19 if (isUnknown() || Other.isUnknown()) in getCompare()
24 if (isUndef() || Other.isUndef()) in getCompare()
27 if (isConstant() && Other.isConstant()) in getCompare()
29 Other.getConstant(), DL); in getCompare()
33 if ((isNotConstant() && Other.isConstant() && in getCompare()
34 getNotConstant() == Other.getConstant()) || in getCompare()
35 (isConstant() && Other.isNotConstant() && in getCompare()
36 getConstant() == Other.getNotConstant())) in getCompare()
43 if (!isConstantRange() || !Other.isConstantRange()) in getCompare()
[all …]
/freebsd/contrib/llvm-project/clang/include/clang/AST/
H A DCharUnits.h74 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 …]
/freebsd/contrib/llvm-project/clang/include/clang/Sema/
H A DLookup.h170 // forcing other cases towards the constructor taking a DNInfo.
186 LookupResult(TemporaryToken _, const LookupResult &Other) in LookupResult() argument
187 : SemaPtr(Other.SemaPtr), NameInfo(Other.NameInfo), in LookupResult()
188 LookupKind(Other.LookupKind), IDNS(Other.IDNS), Redecl(Other.Redecl), in LookupResult()
189 ExternalRedecl(Other.ExternalRedecl), HideTags(Other.HideTags), in LookupResult()
190 AllowHidden(Other.AllowHidden), in LookupResult()
191 TemplateNameLookup(Other.TemplateNameLookup) {} in LookupResult()
198 LookupResult(LookupResult &&Other) in LookupResult() argument
199 : ResultKind(std::move(Other.ResultKind)), in LookupResult()
200 Ambiguity(std::move(Other.Ambiguity)), Decls(std::move(Other.Decls)), in LookupResult()
[all …]
/freebsd/tests/sys/acl/
H A Dtools-posix.test10 # documentation and/or other materials provided with the distribution.
45 > other::r--
50 > other::r--
62 > other::r--
76 > other::r-x
81 > other::r-x
89 > other::r--
101 > other::r-x
122 > other::r--
134 > other::r--
[all …]
/freebsd/contrib/llvm-project/lld/ELF/
H A DSymbols.cpp113 // to that routine as well as other places where we write in getSymVA()
327 // with the same name defined in other ELF executable or DSO.
388 void Symbol::mergeProperties(const Symbol &other) { in mergeProperties() argument
390 if (!other.isShared() && other.visibility() != STV_DEFAULT) { in mergeProperties()
391 uint8_t v = visibility(), ov = other.visibility(); in mergeProperties()
396 void Symbol::resolve(Ctx &ctx, const Undefined &other) { in resolve() argument
397 if (other.visibility() != STV_DEFAULT) { in resolve()
398 uint8_t v = visibility(), ov = other.visibility(); in resolve()
406 if (isPlaceholder() || (isShared() && other.visibility() != STV_DEFAULT) || in resolve()
407 (isUndefined() && other.binding != STB_WEAK && other.discardedSecIdx)) { in resolve()
[all …]
/freebsd/contrib/llvm-project/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())
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 …]
/freebsd/tools/regression/poll/l/
H A Dsockpoll.out5 ok 4 state other side after large write: expected POLLIN | POLLOUT; got POLLIN | POLLOUT
6 not ok 5 state other side after close: expected POLLIN | POLLHUP; got POLLIN | POLLOUT | POLLHUP
7 not ok 6 state other side after reading input: expected POLLHUP; got POLLIN | POLLOUT | POLLHUP
9 ok 8 state other side after shutdown(SHUT_WR): expected POLLIN | POLLOUT; got POLLIN | POLLOUT
10 ok 9 state other side after reading EOF: expected POLLIN | POLLOUT; got POLLIN | POLLOUT
11 ok 10 state after data from other side: expected POLLIN | POLLOUT; got POLLIN | POLLOUT
17 ok 16 state other side after shutdown(SHUT_RD): expected POLLOUT; got POLLOUT
19 not ok 18 state other side after shutdown(SHUT_WR): expected POLLIN | POLLOUT; got POLLIN | POLLOUT…
20 ok 19 state other side after shutdown(SHUT_RD): expected POLLOUT; got POLLOUT
21 ok 20 state other side after write: expected POLLIN | POLLOUT; got POLLIN | POLLOUT
[all …]
/freebsd/tools/regression/poll/14/
H A Dsockpoll.out5 ok 4 state other side after large write: expected POLLIN | POLLOUT; got POLLIN | POLLOUT
6 ok 5 state other side after close: expected POLLIN | POLLHUP; got POLLIN | POLLHUP
7 not ok 6 state other side after reading input: expected POLLHUP; got POLLIN | POLLHUP
9 ok 8 state other side after shutdown(SHUT_WR): expected POLLIN | POLLOUT; got POLLIN | POLLOUT
10 ok 9 state other side after reading EOF: expected POLLIN | POLLOUT; got POLLIN | POLLOUT
11 ok 10 state after data from other side: expected POLLIN | POLLOUT; got POLLIN | POLLOUT
17 ok 16 state other side after shutdown(SHUT_RD): expected POLLOUT; got POLLOUT
19 ok 18 state other side after shutdown(SHUT_WR): expected POLLIN | POLLOUT; got POLLIN | POLLOUT
20 ok 19 state other side after shutdown(SHUT_RD): expected POLLOUT; got POLLOUT
21 ok 20 state other side after write: expected POLLIN | POLLOUT; got POLLIN | POLLOUT
[all …]
/freebsd/contrib/llvm-project/libc/src/__support/CPP/
H A Dstring_view.h47 LIBC_INLINE bool equals(string_view Other) const { in equals() argument
48 return (Len == Other.Len && in equals()
49 compareMemory(Data, Other.Data, Other.Len) == 0); in equals()
103 /// is lexicographically less than, equal to, or greater than the \p Other.
104 LIBC_INLINE int compare(string_view Other) const { in compare() argument
106 if (int Res = compareMemory(Data, Other.Data, min(Len, Other.Len))) in compare()
109 if (Len == Other.Len) in compare()
111 return Len < Other.Len ? -1 : 1; in compare()
114 LIBC_INLINE bool operator==(string_view Other) const { return equals(Other); }
115 LIBC_INLINE bool operator!=(string_view Other) const {
[all …]
/freebsd/contrib/llvm-project/llvm/include/llvm/MC/
H A DMCRegister.h79 constexpr bool operator==(const MCRegister &Other) const {
80 return Reg == Other.Reg;
82 constexpr bool operator!=(const MCRegister &Other) const {
83 return Reg != Other.Reg;
89 constexpr bool operator==(unsigned Other) const { return Reg == Other; }
90 constexpr bool operator!=(unsigned Other) const { return Reg != Other; }
91 constexpr bool operator==(int Other) const { return Reg == unsigned(Other); }
92 constexpr bool operator!=(int Other) const { return Reg != unsigned(Other); }
94 constexpr bool operator==(MCPhysReg Other) const {
95 return Reg == unsigned(Other);
[all …]
/freebsd/contrib/llvm-project/llvm/lib/CodeGen/
H A DRegAllocScore.cpp38 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 …]
/freebsd/crypto/openssh/regress/
H A Dallow-deny-users.sh11 other="nobody"
37 test_auth "$other $me" "" false "user in DenyUsers allowed"
38 test_auth "$me $other" "" false "user in DenyUsers allowed"
39 test_auth "" "$other" false "user not in AllowUsers allowed"
40 test_auth "" "$other $me" true "user in AllowUsers denied"
41 test_auth "" "$me $other" true "user in AllowUsers denied"
42 test_auth "$me $other" "$me $other" false "user in both DenyUsers and AllowUsers allowe…
43 test_auth "$other $me" "$other $me" false "user in both DenyUsers and AllowUsers allowe…

12345678910>>...359