Searched refs:rhs (Results 1 - 25 of 561) sorted by relevance

1234567891011>>

/freebsd-13-stable/contrib/ntp/include/
H A Dvint64ops.h12 /* signed/unsigned compare. returns 1/0/-1 if lhs >/=/< rhs */
13 extern int icmpv64(const vint64 * lhs, const vint64 * rhs);
14 extern int ucmpv64(const vint64 * lhs, const vint64 * rhs);
17 extern vint64 addv64(const vint64 *lhs, const vint64 *rhs);
18 extern vint64 addv64i32(const vint64 * lhs, int32_t rhs);
19 extern vint64 addv64u32(const vint64 * lhs, uint32_t rhs);
21 extern vint64 subv64(const vint64 *lhs, const vint64 *rhs);
22 extern vint64 subv64i32(const vint64 * lhs, int32_t rhs);
23 extern vint64 subv64u32(const vint64 * lhs, uint32_t rhs);
/freebsd-13-stable/contrib/llvm-project/lldb/source/Utility/
H A DVMRange.cpp44 bool lldb_private::operator==(const VMRange &lhs, const VMRange &rhs) {
45 return lhs.GetBaseAddress() == rhs.GetBaseAddress() &&
46 lhs.GetEndAddress() == rhs.GetEndAddress();
49 bool lldb_private::operator!=(const VMRange &lhs, const VMRange &rhs) {
50 return !(lhs == rhs);
53 bool lldb_private::operator<(const VMRange &lhs, const VMRange &rhs) {
54 if (lhs.GetBaseAddress() < rhs.GetBaseAddress())
56 else if (lhs.GetBaseAddress() > rhs.GetBaseAddress())
58 return lhs.GetEndAddress() < rhs.GetEndAddress();
61 bool lldb_private::operator<=(const VMRange &lhs, const VMRange &rhs) {
[all...]
/freebsd-13-stable/contrib/llvm-project/openmp/runtime/src/
H A Dkmp_atomic.h27 // if the rhs is cmplx80 or cmplx128 typedef'ed datatype.
54 const std::complex<type_rhs> &rhs) {
57 type_rhs c = rhs.real();
58 type_rhs d = rhs.imag();
73 void operator/=(const __kmp_cmplx64_t &rhs) { argument
75 *this = __kmp_lhs_div_rhs(lhs, rhs);
78 __kmp_cmplx64_t operator/(const __kmp_cmplx64_t &rhs) { argument
80 return __kmp_lhs_div_rhs(lhs, rhs);
94 std::complex<float> rhs = b; local
95 return (lhs + rhs);
53 __kmp_lhs_div_rhs(const std::complex<type_lhs> &lhs, const std::complex<type_rhs> &rhs) argument
99 std::complex<float> rhs = b; local
104 std::complex<float> rhs = b; local
130 operator /=(const __kmp_cmplx32_t &rhs) argument
135 operator /(const __kmp_cmplx32_t &rhs) argument
140 operator /=(const kmp_cmplx64 &rhs) argument
145 operator /(const kmp_cmplx64 &rhs) argument
160 operator /=(const __kmp_cmplx80_t &rhs) argument
165 operator /(const __kmp_cmplx80_t &rhs) argument
180 operator /=(const __kmp_cmplx128_t &rhs) argument
185 operator /(const __kmp_cmplx128_t &rhs) argument
227 _Quad rhs = b.q; local
233 _Quad rhs = b.q; local
238 _Quad rhs = b.q; local
244 _Quad rhs = b.q; local
258 kmp_cmplx128 rhs = b.q; local
263 kmp_cmplx128 rhs = b.q; local
268 kmp_cmplx128 rhs = b.q; local
274 kmp_cmplx128 rhs = b.q; local
290 _Quad rhs = b.q; local
296 _Quad rhs = b.q; local
301 _Quad rhs = b.q; local
307 _Quad rhs = b.q; local
321 kmp_cmplx128 rhs = b.q; local
326 kmp_cmplx128 rhs = b.q; local
331 kmp_cmplx128 rhs = b.q; local
337 kmp_cmplx128 rhs = b.q; local
[all...]
/freebsd-13-stable/contrib/llvm-project/lldb/source/Plugins/Process/Utility/
H A DGDBRemoteSignals.cpp15 GDBRemoteSignals::GDBRemoteSignals(const lldb::UnixSignalsSP &rhs) argument
16 : UnixSignals(*rhs) {}
/freebsd-13-stable/contrib/llvm-project/lldb/source/Core/
H A DModuleChild.cpp18 const ModuleChild &ModuleChild::operator=(const ModuleChild &rhs) { argument
19 if (this != &rhs)
20 m_module_wp = rhs.m_module_wp;
/freebsd-13-stable/contrib/llvm-project/libcxx/src/
H A Dios.cpp299 ios_base::copyfmt(const ios_base& rhs) argument
307 if (__event_cap_ < rhs.__event_size_)
309 size_t newesize = sizeof(event_callback) * rhs.__event_size_;
314 size_t newisize = sizeof(int) * rhs.__event_size_;
319 if (__iarray_cap_ < rhs.__iarray_size_)
321 size_t newsize = sizeof(long) * rhs.__iarray_size_;
326 if (__parray_cap_ < rhs.__parray_size_)
328 size_t newsize = sizeof(void*) * rhs.__parray_size_;
334 __fmtflags_ = rhs.__fmtflags_;
335 __precision_ = rhs
372 move(ios_base& rhs) argument
[all...]
/freebsd-13-stable/contrib/llvm-project/lldb/bindings/interface/
H A DSBMemoryRegionInfo.i21 SBMemoryRegionInfo (const lldb::SBMemoryRegionInfo &rhs);
50 operator == (const lldb::SBMemoryRegionInfo &rhs) const;
53 operator != (const lldb::SBMemoryRegionInfo &rhs) const;
H A DSBTypeNameSpecifier.i25 SBTypeNameSpecifier (const lldb::SBTypeNameSpecifier &rhs);
35 IsEqualTo (lldb::SBTypeNameSpecifier &rhs);
51 operator == (lldb::SBTypeNameSpecifier &rhs);
54 operator != (lldb::SBTypeNameSpecifier &rhs);
/freebsd-13-stable/contrib/llvm-project/lldb/include/lldb/Utility/
H A DRegularExpression.h38 RegularExpression(const RegularExpression &rhs);
39 RegularExpression(RegularExpression &&rhs) = default; member in class:lldb_private::RegularExpression
41 RegularExpression &operator=(RegularExpression &&rhs) = default; member in class:lldb_private::RegularExpression
42 RegularExpression &operator=(const RegularExpression &rhs) = default; member in class:lldb_private::RegularExpression
81 bool operator==(const RegularExpression &rhs) const {
82 return GetText() == rhs.GetText();
H A DUserID.h68 bool operator()(const UserID &rhs) const { return m_uid == rhs.GetID(); }
80 inline bool operator==(const UserID &lhs, const UserID &rhs) { argument
81 return lhs.GetID() == rhs.GetID();
84 inline bool operator!=(const UserID &lhs, const UserID &rhs) { argument
85 return lhs.GetID() != rhs.GetID();
H A DConstString.h49 /// Copies the string value in \a rhs into this object.
51 /// \param[in] rhs
53 ConstString(const ConstString &rhs) : m_string(rhs.m_string) {} argument
105 /// the C string value in \a rhs, \b false otherwise.
106 bool operator()(const char *lhs, const char *rhs) const {
107 return lhs == rhs;
129 /// Assigns the string in this object with the value from \a rhs.
131 /// \param[in] rhs
136 ConstString operator=(ConstString rhs) { argument
[all...]
H A DScalar.h159 Scalar &operator+=(const Scalar &rhs);
160 Scalar &operator<<=(const Scalar &rhs); // Shift left
161 Scalar &operator>>=(const Scalar &rhs); // Shift right (arithmetic)
162 Scalar &operator&=(const Scalar &rhs);
166 bool ShiftRightLogical(const Scalar &rhs); // Returns true on success
273 friend const Scalar operator+(const Scalar &lhs, const Scalar &rhs);
274 friend const Scalar operator-(const Scalar &lhs, const Scalar &rhs);
275 friend const Scalar operator/(const Scalar &lhs, const Scalar &rhs);
276 friend const Scalar operator*(const Scalar &lhs, const Scalar &rhs);
277 friend const Scalar operator&(const Scalar &lhs, const Scalar &rhs);
[all...]
/freebsd-13-stable/lib/libdevdctl/
H A Dguid.h77 bool operator==(const Guid& rhs) const;
78 bool operator!=(const Guid& rhs) const;
117 Guid::operator==(const Guid& rhs) const
119 return (m_GUID == rhs.m_GUID);
123 Guid::operator!=(const Guid& rhs) const
125 return (m_GUID != rhs.m_GUID);
/freebsd-13-stable/contrib/llvm-project/lldb/source/Symbol/
H A DCompilerDecl.cpp40 const lldb_private::CompilerDecl &rhs) {
41 return lhs.GetTypeSystem() == rhs.GetTypeSystem() &&
42 lhs.GetOpaqueDecl() == rhs.GetOpaqueDecl();
46 const lldb_private::CompilerDecl &rhs) {
47 return lhs.GetTypeSystem() != rhs.GetTypeSystem() ||
48 lhs.GetOpaqueDecl() != rhs.GetOpaqueDecl();
39 operator ==(const lldb_private::CompilerDecl &lhs, const lldb_private::CompilerDecl &rhs) argument
45 operator !=(const lldb_private::CompilerDecl &lhs, const lldb_private::CompilerDecl &rhs) argument
/freebsd-13-stable/contrib/llvm-project/lldb/include/lldb/Target/
H A DStackID.h28 StackID(const StackID &rhs) argument
29 : m_pc(rhs.m_pc), m_cfa(rhs.m_cfa), m_symbol_scope(rhs.m_symbol_scope) {}
56 const StackID &operator=(const StackID &rhs) { argument
57 if (this != &rhs) {
58 m_pc = rhs.m_pc;
59 m_cfa = rhs.m_cfa;
60 m_symbol_scope = rhs.m_symbol_scope;
91 bool operator==(const StackID &lhs, const StackID &rhs);
[all...]
H A DMemoryRegionInfo.h90 bool operator==(const MemoryRegionInfo &rhs) const {
91 return m_range == rhs.m_range && m_read == rhs.m_read &&
92 m_write == rhs.m_write && m_execute == rhs.m_execute &&
93 m_mapped == rhs.m_mapped && m_name == rhs.m_name &&
94 m_flash == rhs.m_flash && m_blocksize == rhs.m_blocksize;
97 bool operator!=(const MemoryRegionInfo &rhs) cons
110 operator <(const MemoryRegionInfo &lhs, const MemoryRegionInfo &rhs) argument
115 operator <(const MemoryRegionInfo &lhs, lldb::addr_t rhs) argument
119 operator <(lldb::addr_t lhs, const MemoryRegionInfo &rhs) argument
[all...]
/freebsd-13-stable/contrib/ntp/libntp/
H A Dvint64ops.c130 const vint64 * rhs
136 res = (lhs->q_s > rhs->q_s)
137 - (lhs->q_s < rhs->q_s);
139 res = (lhs->d_s.hi > rhs->d_s.hi)
140 - (lhs->d_s.hi < rhs->d_s.hi);
142 res = (lhs->D_s.lo > rhs->D_s.lo)
143 - (lhs->D_s.lo < rhs->D_s.lo);
154 const vint64 * rhs
160 res = (lhs->Q_s > rhs->Q_s)
161 - (lhs->Q_s < rhs
[all...]
/freebsd-13-stable/contrib/llvm-project/lldb/source/Target/
H A DRegisterNumber.cpp48 const RegisterNumber &RegisterNumber::operator=(const RegisterNumber &rhs) { argument
49 m_reg_ctx_sp = rhs.m_reg_ctx_sp;
50 m_regnum = rhs.m_regnum;
51 m_kind = rhs.m_kind;
52 for (auto it : rhs.m_kind_regnum_map)
54 m_name = rhs.m_name;
58 bool RegisterNumber::operator==(RegisterNumber &rhs) { argument
59 if (IsValid() != rhs.IsValid())
62 if (m_kind == rhs.m_kind) {
63 return m_regnum == rhs
75 operator !=(RegisterNumber &rhs) argument
[all...]
H A DStackID.cpp33 bool lldb_private::operator==(const StackID &lhs, const StackID &rhs) { argument
34 if (lhs.GetCallFrameAddress() != rhs.GetCallFrameAddress())
38 SymbolContextScope *rhs_scope = rhs.GetSymbolContextScope();
42 return lhs.GetPC() == rhs.GetPC();
47 bool lldb_private::operator!=(const StackID &lhs, const StackID &rhs) { argument
48 if (lhs.GetCallFrameAddress() != rhs.GetCallFrameAddress())
52 SymbolContextScope *rhs_scope = rhs.GetSymbolContextScope();
55 return lhs.GetPC() != rhs.GetPC();
60 bool lldb_private::operator<(const StackID &lhs, const StackID &rhs) { argument
62 const lldb::addr_t rhs_cfa = rhs
[all...]
/freebsd-13-stable/contrib/llvm-project/lldb/source/Plugins/SymbolFile/DWARF/
H A DUniqueDWARFASTType.h33 UniqueDWARFASTType(const UniqueDWARFASTType &rhs) argument
34 : m_type_sp(rhs.m_type_sp), m_die(rhs.m_die),
35 m_declaration(rhs.m_declaration), m_byte_size(rhs.m_byte_size) {}
39 UniqueDWARFASTType &operator=(const UniqueDWARFASTType &rhs) { argument
40 if (this != &rhs) {
41 m_type_sp = rhs.m_type_sp;
42 m_die = rhs.m_die;
43 m_declaration = rhs
[all...]
H A DDWARFDeclContext.h29 bool NameMatches(const Entry &rhs) const {
30 if (name == rhs.name)
32 else if (name && rhs.name)
33 return strcmp(name, rhs.name) == 0;
50 bool operator==(const DWARFDeclContext &rhs) const;
51 bool operator!=(const DWARFDeclContext &rhs) const { return !(*this == rhs); }
/freebsd-13-stable/sys/ddb/
H A Ddb_expr.c163 db_expr_t lhs, rhs; local
172 if (!db_term(&rhs)) {
181 lhs *= rhs;
184 lhs &= rhs;
187 if (rhs == 0) {
192 lhs /= rhs;
194 lhs %= rhs;
196 lhs = roundup(lhs, rhs);
208 db_expr_t lhs, rhs; local
216 if (!db_mult_expr(&rhs)) {
245 db_expr_t lhs, rhs; local
264 lhs <<= rhs; local
280 db_expr_t lhs, rhs; local
330 db_expr_t lhs, rhs; local
355 db_expr_t lhs, rhs; local
[all...]
/freebsd-13-stable/contrib/llvm-project/lldb/source/API/
H A DSBTypeNameSpecifier.cpp41 SBTypeNameSpecifier::SBTypeNameSpecifier(const lldb::SBTypeNameSpecifier &rhs) argument
42 : m_opaque_sp(rhs.m_opaque_sp) {
44 (const lldb::SBTypeNameSpecifier &), rhs);
102 operator=(const lldb::SBTypeNameSpecifier &rhs) { argument
105 SBTypeNameSpecifier, operator=,(const lldb::SBTypeNameSpecifier &), rhs);
107 if (this != &rhs) {
108 m_opaque_sp = rhs.m_opaque_sp;
113 bool SBTypeNameSpecifier::operator==(lldb::SBTypeNameSpecifier &rhs) { argument
115 bool, SBTypeNameSpecifier, operator==,(lldb::SBTypeNameSpecifier &), rhs);
118 return !rhs
122 IsEqualTo(lldb::SBTypeNameSpecifier &rhs) argument
137 operator !=(lldb::SBTypeNameSpecifier &rhs) argument
[all...]
/freebsd-13-stable/contrib/llvm-project/lldb/include/lldb/API/
H A DSBTypeNameSpecifier.h25 SBTypeNameSpecifier(const lldb::SBTypeNameSpecifier &rhs);
42 lldb::SBTypeNameSpecifier &operator=(const lldb::SBTypeNameSpecifier &rhs);
44 bool IsEqualTo(lldb::SBTypeNameSpecifier &rhs);
46 bool operator==(lldb::SBTypeNameSpecifier &rhs);
48 bool operator!=(lldb::SBTypeNameSpecifier &rhs);
/freebsd-13-stable/contrib/bmake/unit-tests/
H A Dvarmod-match.exp2 lhs = "One Two Three Four", rhs = "One Two Three Four", op = !=
4 lhs = "five six seven", rhs = "five six seven", op = !=
6 lhs = "One Three five", rhs = "One Three five", op = !=
9 lhs = "$", rhs = "$", op = !=
11 lhs = "any-asterisk", rhs = "any-asterisk", op = !=

Completed in 242 milliseconds

1234567891011>>