/freebsd/contrib/kyua/utils/ |
H A D | datetime.cpp | 12 // 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 D | optional.ipp | 12 // 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 D | python-extensions.swig | 307 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/llvm/lib/IR/ |
H A D | ConstantRange.cpp | 14 // ranges (other integral ranges use min/max values for special range values): 243 const ConstantRange &Other) const { in icmp() 244 if (isEmptySet() || Other.isEmptySet()) in icmp() 250 if (const APInt *R = Other.getSingleElement()) in icmp() 254 return inverse().contains(Other); in icmp() 256 return getUnsignedMax().ult(Other.getUnsignedMin()); in icmp() 258 return getUnsignedMax().ule(Other.getUnsignedMin()); in icmp() 260 return getUnsignedMin().ugt(Other.getUnsignedMax()); in icmp() 262 return getUnsignedMin().uge(Other.getUnsignedMax()); in icmp() 264 return getSignedMax().slt(Other.getSignedMin()); in icmp() [all …]
|
/freebsd/contrib/llvm-project/clang/include/clang/Basic/ |
H A 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 …]
|
/freebsd/contrib/llvm-project/llvm/include/llvm/CodeGen/ |
H A 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; 197 bool operator==(const VirtualRegisterDefinition &Other) const { 198 return ID == Other.ID && Class == Other.Class && 199 PreferredRegister == Other.PreferredRegister; 218 bool operator==(const MachineFunctionLiveIn &Other) const { [all …]
|
H A D | Register.h | 119 constexpr bool operator==(const Register &Other) const { 120 return Reg == Other.Reg; 122 constexpr bool operator!=(const Register &Other) const { 123 return Reg != Other.Reg; 125 constexpr bool operator==(const MCRegister &Other) const { 126 return Reg == Other.id(); 128 constexpr bool operator!=(const MCRegister &Other) const { 129 return Reg != Other.id(); 136 constexpr bool operator==(unsigned Other) const { return Reg == Other; } 137 constexpr bool operator!=(unsigned Other) const { return Reg != Other; } [all …]
|
/freebsd/contrib/llvm-project/llvm/include/llvm/IR/ |
H A D | ConstantRange.h | 21 // The other integral ranges use min/max values for special range values. For 96 /// 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 [all …]
|
/freebsd/contrib/llvm-project/llvm/include/llvm/Support/ |
H A 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, 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 …]
|
H A D | ModRef.h | 64 /// Any other memory. 65 Other = 2, enumerator 69 Last = Other, 223 /// Intersect with other MemoryEffectsBase. 224 MemoryEffectsBase operator&(MemoryEffectsBase Other) const { 225 return MemoryEffectsBase(Data & Other.Data); 228 /// Intersect (in-place) with other MemoryEffectsBase. 229 MemoryEffectsBase &operator&=(MemoryEffectsBase Other) { 230 Data &= Other.Data; 234 /// Union with other MemoryEffectsBase. [all …]
|
/freebsd/contrib/llvm-project/clang/lib/Format/ |
H A D | ContinuationIndenter.h | 176 /// handled in \c addNextStateToQueue, and the penalty for other lines doesn't 355 bool operator<(const ParenState &Other) const { 356 if (Indent != Other.Indent) 357 return Indent < Other.Indent; 358 if (LastSpace != Other.LastSpace) 359 return LastSpace < Other.LastSpace; 360 if (NestedBlockIndent != Other.NestedBlockIndent) 361 return NestedBlockIndent < Other.NestedBlockIndent; 362 if (FirstLessLess != Other.FirstLessLess) 363 return FirstLessLess < Other.FirstLessLess; [all …]
|
/freebsd/contrib/llvm-project/lld/ELF/ |
H A D | Symbols.cpp | 125 // to that routine as well as other places where we write in getSymVA() 350 // with the same name defined in other ELF executable or DSO. 386 void Symbol::mergeProperties(const Symbol &other) { in mergeProperties() argument 387 if (other.exportDynamic) in mergeProperties() 391 if (!other.isShared() && other.visibility() != STV_DEFAULT) { in mergeProperties() 392 uint8_t v = visibility(), ov = other.visibility(); in mergeProperties() 397 void Symbol::resolve(const Undefined &other) { in resolve() argument 398 if (other.visibility() != STV_DEFAULT) { in resolve() 399 uint8_t v = visibility(), ov = other.visibility(); in resolve() 407 if (isPlaceholder() || (isShared() && other.visibility() != STV_DEFAULT) || in resolve() [all …]
|
/freebsd/contrib/llvm-project/clang/include/clang/AST/ |
H A 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 …]
|
/freebsd/contrib/llvm-project/clang/include/clang/Sema/ |
H A D | Lookup.h | 170 // 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 D | tools-posix.test | 10 # 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/tools/regression/poll/l/ |
H A D | sockpoll.out | 5 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 D | sockpoll.out | 5 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/llvm/lib/CodeGen/ |
H A D | RegAllocScore.cpp | 37 RegAllocScore &RegAllocScore::operator+=(const RegAllocScore &Other) { 38 CopyCounts += Other.copyCounts(); in operator +=() argument 39 LoadCounts += Other.loadCounts(); in operator +=() 40 StoreCounts += Other.storeCounts(); in operator +=() 41 LoadStoreCounts += Other.loadStoreCounts(); in operator +=() 42 CheapRematCounts += Other.cheapRematCounts(); in operator +=() 43 ExpensiveRematCounts += Other.expensiveRematCounts(); in operator +=() 47 bool RegAllocScore::operator==(const RegAllocScore &Other) const { 48 return copyCounts() == Other.copyCounts() && in operator ==() 49 loadCounts() == Other in operator ==() [all...] |
/freebsd/crypto/openssh/regress/ |
H A D | allow-deny-users.sh | 11 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…
|
/freebsd/contrib/llvm-project/llvm/include/llvm/MC/ |
H A D | MCRegister.h | 84 constexpr bool operator==(const MCRegister &Other) const { 85 return Reg == Other.Reg; 87 constexpr bool operator!=(const MCRegister &Other) const { 88 return Reg != Other.Reg; 95 constexpr bool operator==(unsigned Other) const { return Reg == Other; } 96 constexpr bool operator!=(unsigned Other) const { return Reg != Other; } 97 constexpr bool operator==(int Other) const { return Reg == unsigned(Other); } 98 constexpr bool operator!=(int Other) const { return Reg != unsigned(Other); } 100 constexpr bool operator==(MCPhysReg Other) const { 101 return Reg == unsigned(Other); [all …]
|
/freebsd/contrib/kyua/model/ |
H A D | context.cpp | 12 // documentation and/or other materials provided with the distribution. 61 /// \param other The object to compare to. 65 operator==(const impl& other) const in operator ==() 67 return _cwd == other._cwd && _env == other._env; in operator ==() 111 /// \param other The other object to compare this one to. 113 /// \return True if this object and other are equal; false otherwise. 115 model::context::operator==(const context& other) const in operator ==() 117 return *_pimpl == *other._pimpl; in operator ==() 123 /// \param other The other object to compare this one to. 125 /// \return True if this object and other are different; false otherwise. [all …]
|
/freebsd/contrib/llvm-project/llvm/include/llvm/Transforms/Scalar/ |
H A 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 …]
|
/freebsd/contrib/llvm-project/llvm/include/llvm/ADT/ |
H A 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 …]
|
/freebsd/lib/libpmc/pmu-events/arch/x86/goldmont/ |
H A D | cache.json | 80 …other caching agents (typically another processor) in the system, one of those caching agents indi… 140 …to the L1 cache. Typically a load will receive this indication when some other load or prefetch m… 264 … reads (demand & prefetch) that miss the L2 cache with a snoop hit in the other processor module, … 272 … reads (demand & prefetch) that miss the L2 cache with a snoop hit in the other processor module, … 277 … reads (demand & prefetch) that miss the L2 cache with a snoop hit in the other processor module, … 285 … reads (demand & prefetch) that miss the L2 cache with a snoop hit in the other processor module, … 290 …mand & prefetch) that true miss for the L2 cache with a snoop miss in the other processor module.", 298 …mand & prefetch) that true miss for the L2 cache with a snoop miss in the other processor module. … 329 …ed by L1 or L2 prefetchers that miss the L2 cache with a snoop hit in the other processor module, … 337 …ed by L1 or L2 prefetchers that miss the L2 cache with a snoop hit in the other processor module, … [all …]
|
/freebsd/contrib/llvm-project/clang/include/clang/InstallAPI/ |
H A D | HeaderFile.h | 93 bool operator==(const HeaderFile &Other) const { 95 Umbrella) == std::tie(Other.Type, Other.FullPath, 96 Other.IncludeName, Other.Language, 97 Other.Excluded, Other.Extra, 98 Other.Umbrella); 101 bool operator<(const HeaderFile &Other) const { 107 if (isExtra() && Other.isExtra()) 108 return std::tie(Type, Umbrella) < std::tie(Other.Type, Other.Umbrella); 111 std::tie(Other.Type, Other.Umbrella, Other.Extra, Other.FullPath);
|