/freebsd/contrib/llvm-project/openmp/runtime/src/ |
H A D | kmp_atomic.h | 54 const std::complex<type_rhs> &rhs) { in __kmp_lhs_div_rhs() argument 57 type_rhs c = rhs.real(); in __kmp_lhs_div_rhs() 58 type_rhs d = rhs.imag(); in __kmp_lhs_div_rhs() 73 void operator/=(const __kmp_cmplx64_t &rhs) { 75 *this = __kmp_lhs_div_rhs(lhs, rhs); 78 __kmp_cmplx64_t operator/(const __kmp_cmplx64_t &rhs) { 80 return __kmp_lhs_div_rhs(lhs, rhs); 94 std::complex<float> rhs = b; member 95 return (lhs + rhs); 99 std::complex<float> rhs = b; member [all …]
|
/freebsd/contrib/llvm-project/libcxx/src/ |
H A D | ios.cpp | 245 void ios_base::copyfmt(const ios_base& rhs) { in copyfmt() argument 252 if (__event_cap_ < rhs.__event_size_) { in copyfmt() 253 size_t newesize = sizeof(event_callback) * rhs.__event_size_; in copyfmt() 258 size_t newisize = sizeof(int) * rhs.__event_size_; in copyfmt() 263 if (__iarray_cap_ < rhs.__iarray_size_) { in copyfmt() 264 size_t newsize = sizeof(long) * rhs.__iarray_size_; in copyfmt() 269 if (__parray_cap_ < rhs.__parray_size_) { in copyfmt() 270 size_t newsize = sizeof(void*) * rhs.__parray_size_; in copyfmt() 276 __fmtflags_ = rhs.__fmtflags_; in copyfmt() 277 __precision_ = rhs.__precision_; in copyfmt() [all …]
|
/freebsd/contrib/ntp/libntp/ |
H A D | vint64ops.c | 112 const vint64 * rhs in icmpv64() 118 res = (lhs->q_s > rhs->q_s) in icmpv64() 119 - (lhs->q_s < rhs->q_s); in icmpv64() 121 res = (lhs->d_s.hi > rhs->d_s.hi) in icmpv64() 122 - (lhs->d_s.hi < rhs->d_s.hi); in icmpv64() 124 res = (lhs->D_s.lo > rhs->D_s.lo) in icmpv64() 125 - (lhs->D_s.lo < rhs->D_s.lo); in icmpv64() 136 const vint64 * rhs in ucmpv64() 142 res = (lhs->Q_s > rhs->Q_s) in ucmpv64() 143 - (lhs->Q_s < rhs in ucmpv64() 111 icmpv64(const vint64 * lhs,const vint64 * rhs) icmpv64() argument 135 ucmpv64(const vint64 * lhs,const vint64 * rhs) ucmpv64() argument 158 addv64(const vint64 * lhs,const vint64 * rhs) addv64() argument 177 subv64(const vint64 * lhs,const vint64 * rhs) subv64() argument 196 addv64i32(const vint64 * lhs,int32_t rhs) addv64i32() argument 215 subv64i32(const vint64 * lhs,int32_t rhs) subv64i32() argument 234 addv64u32(const vint64 * lhs,uint32_t rhs) addv64u32() argument 253 subv64u32(const vint64 * lhs,uint32_t rhs) subv64u32() argument [all...] |
/freebsd/contrib/llvm-project/llvm/lib/Target/WebAssembly/ |
H A D | WebAssemblyInstrFloat.td | 27 defm _F32 : I<(outs F32:$dst), (ins F32:$lhs, F32:$rhs), (outs), (ins), 28 [(set F32:$dst, (node F32:$lhs, F32:$rhs))], 29 !strconcat("f32.", !strconcat(name, "\t$dst, $lhs, $rhs")), 31 defm _F64 : I<(outs F64:$dst), (ins F64:$lhs, F64:$rhs), (outs), (ins), 32 [(set F64:$dst, (node F64:$lhs, F64:$rhs))], 33 !strconcat("f64.", !strconcat(name, "\t$dst, $lhs, $rhs")), 37 defm _F32 : I<(outs I32:$dst), (ins F32:$lhs, F32:$rhs), (outs), (ins), 38 [(set I32:$dst, (setcc F32:$lhs, F32:$rhs, cond))], 39 !strconcat("f32.", !strconcat(name, "\t$dst, $lhs, $rhs")), 41 defm _F64 : I<(outs I32:$dst), (ins F64:$lhs, F64:$rhs), (outs), (ins), [all …]
|
H A D | WebAssemblyInstrInteger.td | 27 defm _I32 : I<(outs I32:$dst), (ins I32:$lhs, I32:$rhs), (outs), (ins), 28 [(set I32:$dst, (node I32:$lhs, I32:$rhs))], 29 !strconcat("i32.", !strconcat(name, "\t$dst, $lhs, $rhs")), 31 defm _I64 : I<(outs I64:$dst), (ins I64:$lhs, I64:$rhs), (outs), (ins), 32 [(set I64:$dst, (node I64:$lhs, I64:$rhs))], 33 !strconcat("i64.", !strconcat(name, "\t$dst, $lhs, $rhs")), 37 defm _I32 : I<(outs I32:$dst), (ins I32:$lhs, I32:$rhs), (outs), (ins), 38 [(set I32:$dst, (setcc I32:$lhs, I32:$rhs, cond))], 39 !strconcat("i32.", !strconcat(name, "\t$dst, $lhs, $rhs")), 41 defm _I64 : I<(outs I32:$dst), (ins I64:$lhs, I64:$rhs), (outs), (ins), [all …]
|
/freebsd/sys/ddb/ |
H A D | db_expr.c | 160 db_expr_t lhs, rhs; in db_mult_expr() local 169 if (!db_term(&rhs)) { in db_mult_expr() 178 lhs *= rhs; in db_mult_expr() 181 lhs &= rhs; in db_mult_expr() 184 if (rhs == 0) { in db_mult_expr() 189 lhs /= rhs; in db_mult_expr() 191 lhs %= rhs; in db_mult_expr() 193 lhs = roundup(lhs, rhs); in db_mult_expr() 205 db_expr_t lhs, rhs; in db_add_expr() local 213 if (!db_mult_expr(&rhs)) { in db_add_expr() [all …]
|
/freebsd/contrib/llvm-project/lldb/include/lldb/Utility/ |
H A D | Scalar.h | 126 Scalar &operator+=(Scalar rhs); 127 Scalar &operator<<=(const Scalar &rhs); // Shift left 128 Scalar &operator>>=(const Scalar &rhs); // Shift right (arithmetic) 129 Scalar &operator&=(const Scalar &rhs); 133 bool ShiftRightLogical(const Scalar &rhs); // Returns true on success 205 static Type PromoteToMaxType(Scalar &lhs, Scalar &rhs); 213 friend const Scalar operator+(const Scalar &lhs, const Scalar &rhs); 214 friend const Scalar operator-(Scalar lhs, Scalar rhs); 215 friend const Scalar operator/(Scalar lhs, Scalar rhs); 216 friend const Scalar operator*(Scalar lhs, Scalar rhs); [all …]
|
H A D | Iterable.h | 38 AdaptedConstIterator(const AdaptedConstIterator &rhs) : m_iter(rhs.m_iter) {} in AdaptedConstIterator() argument 41 AdaptedConstIterator &operator=(const AdaptedConstIterator &rhs) { 42 m_iter = rhs.m_iter; 50 bool operator==(const AdaptedConstIterator &rhs) { 51 return m_iter == rhs.m_iter; 54 bool operator!=(const AdaptedConstIterator &rhs) { 55 return m_iter != rhs.m_iter; 105 bool operator<(AdaptedConstIterator &rhs) { return m_iter < rhs.m_iter; } 107 bool operator<=(AdaptedConstIterator &rhs) { return m_iter <= rhs.m_iter; } 109 bool operator>(AdaptedConstIterator &rhs) { return m_iter > rhs.m_iter; } [all …]
|
/freebsd/contrib/llvm-project/lldb/source/API/ |
H A D | SBTypeNameSpecifier.cpp | 45 SBTypeNameSpecifier::SBTypeNameSpecifier(const lldb::SBTypeNameSpecifier &rhs) in SBTypeNameSpecifier() argument 46 : m_opaque_sp(rhs.m_opaque_sp) { in SBTypeNameSpecifier() 47 LLDB_INSTRUMENT_VA(this, rhs); in SBTypeNameSpecifier() 114 operator=(const lldb::SBTypeNameSpecifier &rhs) { in operator =() argument 115 LLDB_INSTRUMENT_VA(this, rhs); in operator =() 117 if (this != &rhs) { in operator =() 118 m_opaque_sp = rhs.m_opaque_sp; in operator =() 123 bool SBTypeNameSpecifier::operator==(lldb::SBTypeNameSpecifier &rhs) { in operator ==() argument 124 LLDB_INSTRUMENT_VA(this, rhs); in operator ==() 127 return !rhs.IsValid(); in operator ==() [all …]
|
H A D | SBTypeSynthetic.cpp | 41 SBTypeSynthetic::SBTypeSynthetic(const lldb::SBTypeSynthetic &rhs) in SBTypeSynthetic() argument 42 : m_opaque_sp(rhs.m_opaque_sp) { in SBTypeSynthetic() 43 LLDB_INSTRUMENT_VA(this, rhs); in SBTypeSynthetic() 128 operator=(const lldb::SBTypeSynthetic &rhs) { in operator =() argument 129 LLDB_INSTRUMENT_VA(this, rhs); in operator =() 131 if (this != &rhs) { in operator =() 132 m_opaque_sp = rhs.m_opaque_sp; in operator =() 137 bool SBTypeSynthetic::operator==(lldb::SBTypeSynthetic &rhs) { in operator ==() argument 138 LLDB_INSTRUMENT_VA(this, rhs); in operator ==() 141 return !rhs in operator ==() 145 IsEqualTo(lldb::SBTypeSynthetic & rhs) IsEqualTo() argument 163 operator !=(lldb::SBTypeSynthetic & rhs) operator !=() argument [all...] |
H A D | SBTypeFilter.cpp | 26 SBTypeFilter::SBTypeFilter(const lldb::SBTypeFilter &rhs) in SBTypeFilter() argument 27 : m_opaque_sp(rhs.m_opaque_sp) { in SBTypeFilter() 28 LLDB_INSTRUMENT_VA(this, rhs); in SBTypeFilter() 113 lldb::SBTypeFilter &SBTypeFilter::operator=(const lldb::SBTypeFilter &rhs) { in operator =() argument 114 LLDB_INSTRUMENT_VA(this, rhs); in operator =() 116 if (this != &rhs) { in operator =() 117 m_opaque_sp = rhs.m_opaque_sp; in operator =() 122 bool SBTypeFilter::operator==(lldb::SBTypeFilter &rhs) { in operator ==() argument 123 LLDB_INSTRUMENT_VA(this, rhs); in operator ==() 126 return !rhs in operator ==() 131 IsEqualTo(lldb::SBTypeFilter & rhs) IsEqualTo() argument 148 operator !=(lldb::SBTypeFilter & rhs) operator !=() argument [all...] |
H A D | SBTypeFormat.cpp | 33 SBTypeFormat::SBTypeFormat(const lldb::SBTypeFormat &rhs) in SBTypeFormat() argument 34 : m_opaque_sp(rhs.m_opaque_sp) { in SBTypeFormat() 35 LLDB_INSTRUMENT_VA(this, rhs); in SBTypeFormat() 110 lldb::SBTypeFormat &SBTypeFormat::operator=(const lldb::SBTypeFormat &rhs) { in operator =() argument 111 LLDB_INSTRUMENT_VA(this, rhs); in operator =() 113 if (this != &rhs) { in operator =() 114 m_opaque_sp = rhs.m_opaque_sp; in operator =() 119 bool SBTypeFormat::operator==(lldb::SBTypeFormat &rhs) { in operator ==() argument 120 LLDB_INSTRUMENT_VA(this, rhs); in operator ==() 123 return !rhs in operator ==() 127 IsEqualTo(lldb::SBTypeFormat & rhs) IsEqualTo() argument 139 operator !=(lldb::SBTypeFormat & rhs) operator !=() argument [all...] |
H A D | SBBroadcaster.cpp | 31 SBBroadcaster::SBBroadcaster(const SBBroadcaster &rhs) in SBBroadcaster() argument 32 : m_opaque_sp(rhs.m_opaque_sp), m_opaque_ptr(rhs.m_opaque_ptr) { in SBBroadcaster() 33 LLDB_INSTRUMENT_VA(this, rhs); in SBBroadcaster() 36 const SBBroadcaster &SBBroadcaster::operator=(const SBBroadcaster &rhs) { in operator =() argument 37 LLDB_INSTRUMENT_VA(this, rhs); in operator =() 39 if (this != &rhs) { in operator =() 40 m_opaque_sp = rhs.m_opaque_sp; in operator =() 41 m_opaque_ptr = rhs.m_opaque_ptr; in operator =() 143 bool SBBroadcaster::operator==(const SBBroadcaster &rhs) const { in operator ==() 144 LLDB_INSTRUMENT_VA(this, rhs); in operator ==() [all …]
|
H A D | SBTypeSummary.cpp | 28 const lldb::SBTypeSummaryOptions &rhs) { in SBTypeSummaryOptions() argument 29 LLDB_INSTRUMENT_VA(this, rhs); in SBTypeSummaryOptions() 31 m_opaque_up = clone(rhs.m_opaque_up); in SBTypeSummaryOptions() 163 SBTypeSummary::SBTypeSummary(const lldb::SBTypeSummary &rhs) in SBTypeSummary() argument 164 : m_opaque_sp(rhs.m_opaque_sp) { in SBTypeSummary() 165 LLDB_INSTRUMENT_VA(this, rhs); in SBTypeSummary() 306 lldb::SBTypeSummary &SBTypeSummary::operator=(const lldb::SBTypeSummary &rhs) { in operator =() argument 307 LLDB_INSTRUMENT_VA(this, rhs); in operator =() 309 if (this != &rhs) { in operator =() 310 m_opaque_sp = rhs in operator =() 315 operator ==(lldb::SBTypeSummary & rhs) operator ==() argument 323 IsEqualTo(lldb::SBTypeSummary & rhs) IsEqualTo() argument 363 operator !=(lldb::SBTypeSummary & rhs) operator !=() argument [all...] |
H A D | SBAddressRange.cpp | 29 SBAddressRange::SBAddressRange(const SBAddressRange &rhs) { in SBAddressRange() argument 30 LLDB_INSTRUMENT_VA(this, rhs); in SBAddressRange() 32 m_opaque_up = clone(rhs.m_opaque_up); in SBAddressRange() 42 const SBAddressRange &SBAddressRange::operator=(const SBAddressRange &rhs) { in operator =() argument 43 LLDB_INSTRUMENT_VA(this, rhs); in operator =() 45 if (this != &rhs) in operator =() 46 m_opaque_up = clone(rhs.m_opaque_up); in operator =() 50 bool SBAddressRange::operator==(const SBAddressRange &rhs) { in operator ==() argument 51 LLDB_INSTRUMENT_VA(this, rhs); in operator ==() 53 return ref().operator==(rhs.ref()); in operator ==() [all …]
|
H A D | SBTypeEnumMember.cpp | 32 SBTypeEnumMember::SBTypeEnumMember(const SBTypeEnumMember &rhs) { in SBTypeEnumMember() argument 33 LLDB_INSTRUMENT_VA(this, rhs); in SBTypeEnumMember() 35 m_opaque_sp = clone(rhs.m_opaque_sp); in SBTypeEnumMember() 38 SBTypeEnumMember &SBTypeEnumMember::operator=(const SBTypeEnumMember &rhs) { in operator =() argument 39 LLDB_INSTRUMENT_VA(this, rhs); in operator =() 41 if (this != &rhs) in operator =() 42 m_opaque_sp = clone(rhs.m_opaque_sp); in operator =() 109 SBTypeEnumMemberList::SBTypeEnumMemberList(const SBTypeEnumMemberList &rhs) in SBTypeEnumMemberList() argument 111 LLDB_INSTRUMENT_VA(this, rhs); in SBTypeEnumMemberList() 114 rhs_size = const_cast<SBTypeEnumMemberList &>(rhs).GetSize(); in SBTypeEnumMemberList() [all …]
|
H A D | SBCommandInterpreterRunOptions.cpp | 28 const SBCommandInterpreterRunOptions &rhs) { in SBCommandInterpreterRunOptions() argument 29 LLDB_INSTRUMENT_VA(this, rhs); in SBCommandInterpreterRunOptions() 31 m_opaque_up = std::make_unique<CommandInterpreterRunOptions>(rhs.ref()); in SBCommandInterpreterRunOptions() 37 const SBCommandInterpreterRunOptions &rhs) { in operator =() argument 38 LLDB_INSTRUMENT_VA(this, rhs); in operator =() 40 if (this == &rhs) in operator =() 42 *m_opaque_up = *rhs.m_opaque_up; in operator =() 197 const SBCommandInterpreterRunResult &rhs) in SBCommandInterpreterRunResult() argument 199 LLDB_INSTRUMENT_VA(this, rhs); in SBCommandInterpreterRunResult() 201 *m_opaque_up = *rhs.m_opaque_up; in SBCommandInterpreterRunResult() [all …]
|
H A D | SBType.cpp | 46 SBType::SBType(const SBType &rhs) { in SBType() argument 47 LLDB_INSTRUMENT_VA(this, rhs); in SBType() 49 if (this != &rhs) { in SBType() 50 m_opaque_sp = rhs.m_opaque_sp; in SBType() 58 bool SBType::operator==(SBType &rhs) { in operator ==() argument 59 LLDB_INSTRUMENT_VA(this, rhs); in operator ==() 62 return !rhs.IsValid(); in operator ==() 64 if (!rhs.IsValid()) in operator ==() 67 return *m_opaque_sp.get() == *rhs.m_opaque_sp.get(); in operator ==() 70 bool SBType::operator!=(SBType &rhs) { in operator !=() argument [all …]
|
/freebsd/contrib/llvm-project/lldb/source/Utility/ |
H A D | Scalar.cpp | 56 Scalar::Type Scalar::PromoteToMaxType(Scalar &lhs, Scalar &rhs) { in PromoteToMaxType() argument 70 PromotionKey rhs_key = rhs.GetPromoKey(); in PromoteToMaxType() 73 Promote(rhs, lhs); in PromoteToMaxType() 75 Promote(lhs, rhs); in PromoteToMaxType() 78 if (lhs.GetPromoKey() == rhs.GetPromoKey()) in PromoteToMaxType() 408 Scalar &Scalar::operator+=(Scalar rhs) { in operator +=() argument 410 if ((m_type = PromoteToMaxType(copy, rhs)) != Scalar::e_void) { in operator +=() 415 m_integer = copy.m_integer + rhs.m_integer; in operator +=() 419 m_float = copy.m_float + rhs.m_float; in operator +=() 426 Scalar &Scalar::operator<<=(const Scalar &rhs) { in operator <<=() argument [all …]
|
H A D | VMRange.cpp | 42 bool lldb_private::operator==(const VMRange &lhs, const VMRange &rhs) { in operator ==() argument 43 return lhs.GetBaseAddress() == rhs.GetBaseAddress() && in operator ==() 44 lhs.GetEndAddress() == rhs.GetEndAddress(); in operator ==() 47 bool lldb_private::operator!=(const VMRange &lhs, const VMRange &rhs) { in operator !=() argument 48 return !(lhs == rhs); in operator !=() 51 bool lldb_private::operator<(const VMRange &lhs, const VMRange &rhs) { in operator <() argument 52 if (lhs.GetBaseAddress() < rhs.GetBaseAddress()) in operator <() 54 else if (lhs.GetBaseAddress() > rhs.GetBaseAddress()) in operator <() 56 return lhs.GetEndAddress() < rhs.GetEndAddress(); in operator <() 59 bool lldb_private::operator<=(const VMRange &lhs, const VMRange &rhs) { in operator <=() argument [all …]
|
/freebsd/contrib/llvm-project/lldb/bindings/python/ |
H A D | python-extensions.swig | 3 def __eq__(self, rhs): 4 if not isinstance(rhs, type(self)): 7 return getattr(_lldb,self.__class__.__name__+"___eq__")(self, rhs) 9 def __ne__(self, rhs): 10 if not isinstance(rhs, type(self)): 13 return getattr(_lldb,self.__class__.__name__+"___ne__")(self, rhs) 19 def __eq__(self, rhs): 20 if not isinstance(rhs, type(self)): 23 return getattr(_lldb,self.__class__.__name__+"___eq__")(self, rhs) 25 def __ne__(self, rhs) [all...] |
/freebsd/contrib/processor-trace/libipt/test/src/ |
H A D | ptunit-asid.c | 264 struct pt_asid lhs, rhs; in match_default() local 268 pt_asid_init(&rhs); in match_default() 270 errcode = pt_asid_match(&lhs, &rhs); in match_default() 276 errcode = pt_asid_match(&lhs, &rhs); in match_default() 279 errcode = pt_asid_match(&rhs, &lhs); in match_default() 287 struct pt_asid lhs, rhs; in match_default_mixed() local 291 pt_asid_init(&rhs); in match_default_mixed() 293 errcode = pt_asid_match(&lhs, &rhs); in match_default_mixed() 297 rhs.vmcs = 0x42000ull; in match_default_mixed() 299 errcode = pt_asid_match(&lhs, &rhs); in match_default_mixed() [all …]
|
/freebsd/contrib/llvm-project/lldb/include/lldb/Target/ |
H A D | MemoryRegionInfo.h | 101 bool operator==(const MemoryRegionInfo &rhs) const { 102 return m_range == rhs.m_range && m_read == rhs.m_read && 103 m_write == rhs.m_write && m_execute == rhs.m_execute && 104 m_shared == rhs.m_shared && 105 m_mapped == rhs.m_mapped && m_name == rhs.m_name && 106 m_flash == rhs.m_flash && m_blocksize == rhs [all...] |
/freebsd/contrib/llvm-project/lldb/source/Core/ |
H A D | SourceLocationSpec.cpp | 28 bool SourceLocationSpec::operator==(const SourceLocationSpec &rhs) const { in operator ==() 29 return m_declaration == rhs.m_declaration && in operator ==() 30 m_check_inlines == rhs.GetCheckInlines() && in operator ==() 31 m_exact_match == rhs.GetExactMatch(); in operator ==() 34 bool SourceLocationSpec::operator!=(const SourceLocationSpec &rhs) const { in operator !=() 35 return !(*this == rhs); in operator !=() 38 bool SourceLocationSpec::operator<(const SourceLocationSpec &rhs) const { in operator <() 39 return SourceLocationSpec::Compare(*this, rhs) < 0; in operator <() 48 const SourceLocationSpec &rhs) { in Compare() argument 49 return Declaration::Compare(lhs.m_declaration, rhs.m_declaration); in Compare() [all …]
|
/freebsd/contrib/llvm-project/lldb/source/Target/ |
H A D | RegisterNumber.cpp | 46 const RegisterNumber &RegisterNumber::operator=(const RegisterNumber &rhs) { in operator =() argument 47 m_reg_ctx_sp = rhs.m_reg_ctx_sp; in operator =() 48 m_regnum = rhs.m_regnum; in operator =() 49 m_kind = rhs.m_kind; in operator =() 50 for (auto it : rhs.m_kind_regnum_map) in operator =() 52 m_name = rhs.m_name; in operator =() 56 bool RegisterNumber::operator==(RegisterNumber &rhs) { in operator ==() argument 57 if (IsValid() != rhs.IsValid()) in operator ==() 60 if (m_kind == rhs.m_kind) { in operator ==() 61 return m_regnum == rhs.m_regnum; in operator ==() [all …]
|