| /src/external/bsd/ntp/dist/include/ |
| vint64ops.h | 14 /* 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);
|
| /src/external/gpl3/gdb.old/dist/gdb/arch/ |
| riscv.h | 69 bool operator== (const struct riscv_gdbarch_features &rhs) const 71 return (xlen == rhs.xlen && flen == rhs.flen 72 && embedded == rhs.embedded && vlen == rhs.vlen 73 && has_fflags_reg == rhs.has_fflags_reg 74 && has_frm_reg == rhs.has_frm_reg 75 && has_fcsr_reg == rhs.has_fcsr_reg); 79 bool operator!= (const struct riscv_gdbarch_features &rhs) const 81 return !((*this) == rhs); [all...] |
| arc.h | 44 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);
|
| /src/external/gpl3/gdb/dist/gdb/arch/ |
| riscv.h | 69 bool operator== (const struct riscv_gdbarch_features &rhs) const 71 return (xlen == rhs.xlen && flen == rhs.flen 72 && embedded == rhs.embedded && vlen == rhs.vlen 73 && has_fflags_reg == rhs.has_fflags_reg 74 && has_frm_reg == rhs.has_frm_reg 75 && has_fcsr_reg == rhs.has_fcsr_reg); 79 bool operator!= (const struct riscv_gdbarch_features &rhs) const 81 return !((*this) == rhs); [all...] |
| arc.h | 44 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);
|
| /src/external/gpl3/gcc/dist/libsanitizer/sanitizer_common/ |
| sanitizer_range.h | 26 inline bool operator==(const Range &lhs, const Range &rhs) { 27 return lhs.begin == rhs.begin && lhs.end == rhs.end; 30 inline bool operator!=(const Range &lhs, const Range &rhs) { 31 return !(lhs == rhs);
|
| /src/external/gpl3/gcc/dist/gcc/ |
| diagnostic-spec.h | 79 /* Set *THIS to the bitwise OR of *THIS and RHS. */ 80 nowarn_spec_t& operator|= (const nowarn_spec_t &rhs) 82 m_bits |= rhs.m_bits; 86 /* Set *THIS to the bitwise AND of *THIS and RHS. */ 87 nowarn_spec_t& operator&= (const nowarn_spec_t &rhs) 89 m_bits &= rhs.m_bits; 93 /* Set *THIS to the bitwise exclusive OR of *THIS and RHS. */ 94 nowarn_spec_t& operator^= (const nowarn_spec_t &rhs) 96 m_bits ^= rhs.m_bits; 105 /* Return the bitwise OR of LHS and RHS. * [all...] |
| /src/external/gpl3/gcc.old/dist/gcc/ |
| diagnostic-spec.h | 77 /* Set *THIS to the bitwise OR of *THIS and RHS. */ 78 nowarn_spec_t& operator|= (const nowarn_spec_t &rhs) 80 m_bits |= rhs.m_bits; 84 /* Set *THIS to the bitwise AND of *THIS and RHS. */ 85 nowarn_spec_t& operator&= (const nowarn_spec_t &rhs) 87 m_bits &= rhs.m_bits; 91 /* Set *THIS to the bitwise exclusive OR of *THIS and RHS. */ 92 nowarn_spec_t& operator^= (const nowarn_spec_t &rhs) 94 m_bits ^= rhs.m_bits; 103 /* Return the bitwise OR of LHS and RHS. * [all...] |
| /src/external/apache2/llvm/dist/libcxx/src/ |
| ios.cpp | 283 ios_base::copyfmt(const ios_base& rhs) 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.__precision_ [all...] |
| /src/external/gpl3/gdb.old/dist/gdb/testsuite/gdb.cp/ |
| method-call-in-c.cc | 32 foo_type &operator+= (const baz_type &rhs) 34 var += (rhs.a + rhs.b + rhs.c);
|
| pass-by-ref-2.cc | 34 ByRef (const ByRef &rhs); 44 ByRef::ByRef (const ByRef &rhs) 116 Inlined (const Inlined &rhs) 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) 179 FourCCtor::FourCCtor (const FourCCtor &rhs) 184 FourCCtor::FourCCtor (volatile FourCCtor &rhs) 208 TwoMCtor (TwoMCtor &&rhs) = default; member in class:TwoMCtor 234 TwoMCtorAndCCtor (const TwoMCtorAndCCtor &rhs) = default; member in class:TwoMCtorAndCCtor 239 TwoMCtorAndCCtor (TwoMCtorAndCCtor &&rhs) = default; member in class:TwoMCtorAndCCtor [all...] |
| /src/external/lgpl3/gmp/dist/ |
| asl.h | 50 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_BITS) [all...] |
| /src/external/gpl3/gdb/dist/gdb/testsuite/gdb.cp/ |
| method-call-in-c.cc | 32 foo_type &operator+= (const baz_type &rhs) 34 var += (rhs.a + rhs.b + rhs.c);
|
| pass-by-ref-2.cc | 34 ByRef (const ByRef &rhs); 44 ByRef::ByRef (const ByRef &rhs) 116 Inlined (const Inlined &rhs) 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) 179 FourCCtor::FourCCtor (const FourCCtor &rhs) 184 FourCCtor::FourCCtor (volatile FourCCtor &rhs) 208 TwoMCtor (TwoMCtor &&rhs) = default; member in class:TwoMCtor 234 TwoMCtorAndCCtor (const TwoMCtorAndCCtor &rhs) = default; member in class:TwoMCtorAndCCtor 239 TwoMCtorAndCCtor (TwoMCtorAndCCtor &&rhs) = default; member in class:TwoMCtorAndCCtor [all...] |
| /src/external/bsd/ntp/dist/libntp/ |
| vint64ops.c | 114 const vint64 * rhs 120 res = (lhs->q_s > rhs->q_s) 121 - (lhs->q_s < rhs->q_s); 123 res = (lhs->d_s.hi > rhs->d_s.hi) 124 - (lhs->d_s.hi < rhs->d_s.hi); 126 res = (lhs->D_s.lo > rhs->D_s.lo) 127 - (lhs->D_s.lo < rhs->D_s.lo); 138 const vint64 * rhs 144 res = (lhs->Q_s > rhs->Q_s) 145 - (lhs->Q_s < rhs->Q_s) [all...] |
| /src/external/gpl3/gdb.old/dist/gdbsupport/ |
| x86-xstate.h | 61 const x86_xsave_layout &rhs) 63 return lhs.sizeof_xsave == rhs.sizeof_xsave 64 && lhs.avx_offset == rhs.avx_offset 65 && lhs.k_offset == rhs.k_offset 66 && lhs.zmm_h_offset == rhs.zmm_h_offset 67 && lhs.zmm_offset == rhs.zmm_offset 68 && lhs.pkru_offset == rhs.pkru_offset; 72 const x86_xsave_layout &rhs) 74 return !(lhs == rhs);
|
| /src/external/gpl3/gdb/dist/gdbsupport/ |
| x86-xstate.h | 63 const x86_xsave_layout &rhs) 65 return lhs.sizeof_xsave == rhs.sizeof_xsave 66 && lhs.avx_offset == rhs.avx_offset 67 && lhs.k_offset == rhs.k_offset 68 && lhs.zmm_h_offset == rhs.zmm_h_offset 69 && lhs.zmm_offset == rhs.zmm_offset 70 && lhs.pkru_offset == rhs.pkru_offset; 74 const x86_xsave_layout &rhs) 76 return !(lhs == rhs);
|
| /src/external/gpl3/gcc.old/dist/gcc/d/dmd/ |
| intrange.d | 107 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.negative [all...] |
| /src/sys/ddb/ |
| db_expr.c | 147 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...] |
| /src/external/lgpl3/gmp/dist/demos/ |
| pexpr.c | 105 struct {struct expr *lhs, *rhs;} ops; member in struct:expr::__anon23289::__anon23290 864 RHS and left hand side lhs. Put the result in R. */ 866 makeexp (expr_t *r, enum op_t op, expr_t lhs, expr_t rhs) 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...] |
| /src/external/gpl3/gdb.old/dist/gdb/dwarf2/ |
| frame.h | 114 operator= (dwarf2_frame_state_reg_info rhs) 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.prev = nullptr [all...] |
| /src/external/gpl3/gdb/dist/gdb/dwarf2/ |
| frame.h | 114 operator= (dwarf2_frame_state_reg_info rhs) 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.prev = nullptr [all...] |
| /src/external/mit/isl/dist/ |
| isl_int_sioimath.c | 52 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); [all...] |
| /src/external/apache2/llvm/dist/llvm/utils/unittest/googletest/include/gtest/internal/ |
| gtest-string.h | 103 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);
|
| /src/external/gpl3/gcc.old/dist/gcc/config/tilegx/ |
| tilegx-multiply.h | 43 unsigned char rhs; member in struct:tilegx_multiply_insn_seq_entry
|