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

1234567891011>>

/netbsd-current/external/bsd/ntp/dist/include/
H A Dvint64ops.h14 /* signed/unsigned compare. returns 1/0/-1 if lhs >/=/< rhs */
15 extern int icmpv64(const vint64 * lhs, const vint64 * rhs);
16 extern int ucmpv64(const vint64 * lhs, const vint64 * rhs);
19 extern vint64 addv64(const vint64 *lhs, const vint64 *rhs);
20 extern vint64 addv64i32(const vint64 * lhs, int32_t rhs);
21 extern vint64 addv64u32(const vint64 * lhs, uint32_t rhs);
23 extern vint64 subv64(const vint64 *lhs, const vint64 *rhs);
24 extern vint64 subv64i32(const vint64 * lhs, int32_t rhs);
25 extern vint64 subv64u32(const vint64 * lhs, uint32_t rhs);
/netbsd-current/external/gpl3/gdb/dist/gdb/arch/
H A Driscv.h68 bool operator== (const struct riscv_gdbarch_features &rhs) const
70 return (xlen == rhs.xlen && flen == rhs.flen
71 && embedded == rhs.embedded && vlen == rhs.vlen
72 && has_fflags_reg == rhs.has_fflags_reg
73 && has_frm_reg == rhs.has_frm_reg
74 && has_fcsr_reg == rhs.has_fcsr_reg);
78 bool operator!= (const struct riscv_gdbarch_features &rhs) const
80 return !((*this) == rhs);
[all...]
H A Darc.h44 bool operator== (const struct arc_arch_features &rhs) const
46 return (reg_size == rhs.reg_size && isa == rhs.isa);
50 bool operator!= (const struct arc_arch_features &rhs) const
52 return !(*this == rhs);
/netbsd-current/external/gpl3/gdb.old/dist/gdb/arch/
H A Driscv.h50 bool operator== (const struct riscv_gdbarch_features &rhs) const
52 return (xlen == rhs.xlen && flen == rhs.flen);
56 bool operator!= (const struct riscv_gdbarch_features &rhs) const
58 return !((*this) == rhs);
H A Darc.h44 bool operator== (const struct arc_gdbarch_features &rhs) const
46 return (reg_size == rhs.reg_size && isa == rhs.isa);
50 bool operator!= (const struct arc_gdbarch_features &rhs) const
52 return !(*this == rhs);
/netbsd-current/external/gpl3/gcc/dist/gcc/
H A Ddiagnostic-spec.h78 nowarn_spec_t& operator|= (const nowarn_spec_t &rhs) argument
80 m_bits |= rhs.m_bits;
85 nowarn_spec_t& operator&= (const nowarn_spec_t &rhs) argument
87 m_bits &= rhs.m_bits;
92 nowarn_spec_t& operator^= (const nowarn_spec_t &rhs) argument
94 m_bits ^= rhs.m_bits;
106 operator| (const nowarn_spec_t &lhs, const nowarn_spec_t &rhs) argument
108 return nowarn_spec_t (lhs) |= rhs;
114 operator& (const nowarn_spec_t &lhs, const nowarn_spec_t &rhs) argument
116 return nowarn_spec_t (lhs) &= rhs;
122 operator ==(const nowarn_spec_t &lhs, const nowarn_spec_t &rhs) argument
130 operator !=(const nowarn_spec_t &lhs, const nowarn_spec_t &rhs) argument
[all...]
/netbsd-current/external/apache2/llvm/dist/libcxx/src/
H A Dios.cpp283 ios_base::copyfmt(const ios_base& rhs) argument
291 if (__event_cap_ < rhs.__event_size_)
293 size_t newesize = sizeof(event_callback) * rhs.__event_size_;
298 size_t newisize = sizeof(int) * rhs.__event_size_;
303 if (__iarray_cap_ < rhs.__iarray_size_)
305 size_t newsize = sizeof(long) * rhs.__iarray_size_;
310 if (__parray_cap_ < rhs.__parray_size_)
312 size_t newsize = sizeof(void*) * rhs.__parray_size_;
318 __fmtflags_ = rhs.__fmtflags_;
319 __precision_ = rhs
356 move(ios_base& rhs) argument
[all...]
/netbsd-current/external/gpl3/gcc.old/dist/gcc/d/dmd/root/
H A Drootobject.c22 size_t rhs = (size_t)obj; local
23 if (lhs < rhs)
25 else if (lhs > rhs)
/netbsd-current/external/lgpl3/gmp/dist/
H A Dasl.h50 mp_limb_t& operator op##=(const type& rhs) { \
51 limbo = (limbo op rhs.limbo) & GMP_NUMB_MASK; \
55 mp_limb_t& operator op##=(const type& rhs) { \
56 limbo = limbo op rhs.limbo; \
66 mp_limb_t(const unsigned int rhs) { limbo = rhs & GMP_NUMB_MASK; }
67 // mp_limb_t(const mp_limb_t& rhs) { limbo = rhs.limbo; } // Causes havoc
76 mp_limb_t& operator<<=(const unsigned int rhs) {
77 GMP_ASSERT_ALWAYS (rhs < GMP_LIMB_BIT
[all...]
/netbsd-current/external/gpl3/gdb/dist/gdb/testsuite/gdb.cp/
H A Dmethod-call-in-c.cc32 foo_type &operator+= (const baz_type &rhs) argument
34 var += (rhs.a + rhs.b + rhs.c);
H A Dpass-by-ref-2.cc34 ByRef (const ByRef &rhs);
44 ByRef::ByRef (const ByRef &rhs) argument
116 Inlined (const Inlined &rhs) argument
161 FourCCtor (FourCCtor &rhs);
162 FourCCtor (const FourCCtor &rhs);
163 FourCCtor (volatile FourCCtor &rhs);
164 FourCCtor (const volatile FourCCtor &rhs);
174 FourCCtor::FourCCtor (FourCCtor &rhs) argument
179 FourCCtor::FourCCtor (const FourCCtor &rhs) argument
184 FourCCtor::FourCCtor (volatile FourCCtor &rhs) argument
189 FourCCtor(const volatile FourCCtor &rhs) argument
208 TwoMCtor (TwoMCtor &&rhs) = default; member in class:TwoMCtor
218 TwoMCtor(const TwoMCtor &&rhs) argument
234 TwoMCtorAndCCtor (const TwoMCtorAndCCtor &rhs) = default; member in class:TwoMCtorAndCCtor
239 TwoMCtorAndCCtor (TwoMCtorAndCCtor &&rhs) = default; member in class:TwoMCtorAndCCtor
249 TwoMCtorAndCCtor(const TwoMCtorAndCCtor &&rhs) argument
[all...]
/netbsd-current/external/bsd/ntp/dist/libntp/
H A Dvint64ops.c132 const vint64 * rhs
138 res = (lhs->q_s > rhs->q_s)
139 - (lhs->q_s < rhs->q_s);
141 res = (lhs->d_s.hi > rhs->d_s.hi)
142 - (lhs->d_s.hi < rhs->d_s.hi);
144 res = (lhs->D_s.lo > rhs->D_s.lo)
145 - (lhs->D_s.lo < rhs->D_s.lo);
156 const vint64 * rhs
162 res = (lhs->Q_s > rhs->Q_s)
163 - (lhs->Q_s < rhs
[all...]
/netbsd-current/external/gpl3/gcc/dist/gcc/d/dmd/
H A Dintrange.d107 SignExtendedNumber opBinary(string op : "&")(SignExtendedNumber rhs) const
109 return SignExtendedNumber(value & rhs.value);
112 SignExtendedNumber opBinary(string op : "|")(SignExtendedNumber rhs)
114 return SignExtendedNumber(value | rhs.value);
117 SignExtendedNumber opBinary(string op : "^")(SignExtendedNumber rhs)
119 return SignExtendedNumber(value ^ rhs.value);
122 SignExtendedNumber opBinary(string op : "+")(SignExtendedNumber rhs)
124 uinteger_t sum = value + rhs.value;
125 bool carry = sum < value && sum < rhs.value;
126 if (negative != rhs
[all...]
/netbsd-current/sys/ddb/
H A Ddb_expr.c147 db_expr_t lhs, rhs; local
155 if (!db_term(&rhs)) {
160 lhs *= rhs;
162 if (rhs == 0) {
167 lhs /= rhs;
169 lhs %= rhs;
171 lhs = ((lhs+rhs-1)/rhs)*rhs;
183 db_expr_t lhs, rhs; local
209 db_expr_t lhs, rhs; local
226 lhs <<= rhs; local
[all...]
/netbsd-current/external/gpl3/gdb.old/dist/gdb/testsuite/gdb.cp/
H A Dpass-by-ref-2.cc34 ByRef (const ByRef &rhs);
44 ByRef::ByRef (const ByRef &rhs) argument
116 Inlined (const Inlined &rhs) argument
161 FourCCtor (FourCCtor &rhs);
162 FourCCtor (const FourCCtor &rhs);
163 FourCCtor (volatile FourCCtor &rhs);
164 FourCCtor (const volatile FourCCtor &rhs);
174 FourCCtor::FourCCtor (FourCCtor &rhs) argument
179 FourCCtor::FourCCtor (const FourCCtor &rhs) argument
184 FourCCtor::FourCCtor (volatile FourCCtor &rhs) argument
189 FourCCtor(const volatile FourCCtor &rhs) argument
208 TwoMCtor (TwoMCtor &&rhs) = default; member in class:TwoMCtor
218 TwoMCtor(const TwoMCtor &&rhs) argument
234 TwoMCtorAndCCtor (const TwoMCtorAndCCtor &rhs) = default; member in class:TwoMCtorAndCCtor
239 TwoMCtorAndCCtor (TwoMCtorAndCCtor &&rhs) = default; member in class:TwoMCtorAndCCtor
249 TwoMCtorAndCCtor(const TwoMCtorAndCCtor &&rhs) argument
[all...]
/netbsd-current/external/lgpl3/gmp/dist/demos/
H A Dpexpr.c105 struct {struct expr *lhs, *rhs;} ops; member in struct:expr::__anon15742::__anon15743
866 makeexp (expr_t *r, enum op_t op, expr_t lhs, expr_t rhs) argument
872 res -> operands.ops.rhs = rhs;
884 if (e->operands.ops.rhs != NULL)
885 free_expr (e->operands.ops.rhs);
897 mpz_t lhs, rhs; local
905 mpz_init (lhs); mpz_init (rhs);
907 mpz_eval_expr (rhs, e->operands.ops.rhs);
1313 mpz_t lhs, rhs; local
[all...]
/netbsd-current/external/gpl3/gdb.old/dist/gdb/dwarf2/
H A Dframe.h112 operator= (dwarf2_frame_state_reg_info rhs) argument
114 swap (*this, rhs);
119 dwarf2_frame_state_reg_info (dwarf2_frame_state_reg_info &&rhs) noexcept
120 : reg (std::move (rhs.reg)), cfa_offset (rhs.cfa_offset),
121 cfa_reg (rhs.cfa_reg), cfa_how (rhs.cfa_how), cfa_exp (rhs.cfa_exp),
122 prev (rhs.prev)
124 rhs
150 swap(dwarf2_frame_state_reg_info& lhs, dwarf2_frame_state_reg_info& rhs) argument
[all...]
/netbsd-current/external/gpl3/gdb/dist/gdb/dwarf2/
H A Dframe.h114 operator= (dwarf2_frame_state_reg_info rhs) argument
116 swap (*this, rhs);
121 dwarf2_frame_state_reg_info (dwarf2_frame_state_reg_info &&rhs) noexcept
122 : reg (std::move (rhs.reg)), cfa_offset (rhs.cfa_offset),
123 cfa_reg (rhs.cfa_reg), cfa_how (rhs.cfa_how), cfa_exp (rhs.cfa_exp),
124 prev (rhs.prev)
126 rhs
152 swap(dwarf2_frame_state_reg_info& lhs, dwarf2_frame_state_reg_info& rhs) argument
[all...]
/netbsd-current/external/mit/isl/dist/
H A Disl_int_sioimath.c52 extern void isl_sioimath_swap(isl_sioimath_ptr lhs, isl_sioimath_ptr rhs);
54 unsigned long rhs);
56 unsigned long rhs);
59 isl_sioimath_src rhs);
61 isl_sioimath_src rhs);
63 isl_sioimath_src rhs);
65 unsigned long rhs);
67 signed long rhs);
69 unsigned long rhs);
71 unsigned long rhs);
84 isl_sioimath_smallgcd(int32_t lhs, int32_t rhs) argument
103 isl_sioimath_gcd(isl_sioimath_ptr dst, isl_sioimath_src lhs, isl_sioimath_src rhs) argument
125 isl_sioimath_lcm(isl_sioimath_ptr dst, isl_sioimath_src lhs, isl_sioimath_src rhs) argument
[all...]
/netbsd-current/external/apache2/llvm/dist/llvm/utils/unittest/googletest/include/gtest/internal/
H A Dgtest-string.h103 static bool CStringEquals(const char* lhs, const char* rhs);
117 static bool WideCStringEquals(const wchar_t* lhs, const wchar_t* rhs);
126 const char* rhs);
141 const wchar_t* rhs);
/netbsd-current/external/gpl3/gcc.old/dist/gcc/config/tilegx/
H A Dtilegx-multiply.h43 unsigned char rhs; member in struct:tilegx_multiply_insn_seq_entry
/netbsd-current/external/gpl3/gcc.old/dist/gcc/config/tilepro/
H A Dtilepro-multiply.h46 unsigned char rhs; member in struct:tilepro_multiply_insn_seq_entry
/netbsd-current/external/gpl3/gdb.old/dist/gdbsupport/
H A Dgdb_ref_ptr.h166 const ref_ptr<T, Policy> &rhs)
168 return lhs.get () == rhs.get ();
172 inline bool operator== (const ref_ptr<T, Policy> &lhs, const T *rhs) argument
174 return lhs.get () == rhs;
184 inline bool operator== (const T *lhs, const ref_ptr<T, Policy> &rhs) argument
186 return lhs == rhs.get ();
190 inline bool operator== (const std::nullptr_t, const ref_ptr<T, Policy> &rhs) argument
192 return nullptr == rhs.get ();
197 const ref_ptr<T, Policy> &rhs)
199 return lhs.get () != rhs
165 operator ==(const ref_ptr<T, Policy> &lhs, const ref_ptr<T, Policy> &rhs) argument
196 operator !=(const ref_ptr<T, Policy> &lhs, const ref_ptr<T, Policy> &rhs) argument
203 operator !=(const ref_ptr<T, Policy> &lhs, const T *rhs) argument
215 operator !=(const T *lhs, const ref_ptr<T, Policy> &rhs) argument
221 operator !=(const std::nullptr_t, const ref_ptr<T, Policy> &rhs) argument
[all...]
/netbsd-current/external/gpl3/gcc/dist/gcc/config/tilegx/
H A Dtilegx-multiply.h43 unsigned char rhs; member in struct:tilegx_multiply_insn_seq_entry
/netbsd-current/external/gpl3/gcc/dist/gcc/config/tilepro/
H A Dtilepro-multiply.h46 unsigned char rhs; member in struct:tilepro_multiply_insn_seq_entry

Completed in 376 milliseconds

1234567891011>>