Home
last modified time | relevance | path

Searched refs:rhs (Results 1 – 25 of 1112) sorted by relevance

12345678910>>...45

/netbsd/external/apache2/llvm/dist/libcxx/src/
H A Dios.cpp367 __fn_ = rhs.__fn_; in move()
368 rhs.__fn_ = 0; in move()
370 rhs.__index_ = 0; in move()
372 rhs.__event_size_ = 0; in move()
374 rhs.__event_cap_ = 0; in move()
376 rhs.__iarray_ = 0; in move()
378 rhs.__iarray_size_ = 0; in move()
380 rhs.__iarray_cap_ = 0; in move()
382 rhs.__parray_ = 0; in move()
384 rhs.__parray_size_ = 0; in move()
[all …]
/netbsd/external/gpl3/gcc/dist/gcc/d/dmd/
H A Dintrange.d161 return rhs.value == 0 ? rhs : this;
169 uinteger_t aAbs = copySign(rhs.value, rhs.negative);
194 uinteger_t aAbs = copySign(rhs.value, rhs.negative);
228 uinteger_t aAbs = copySign(rhs.value, rhs.negative);
279 if (rhs.negative || rhs.value > 63)
640 return this & ~rhs | ~this & rhs;
645 return IntRange(imin + rhs.imin, imax + rhs.imax);
650 return IntRange(imin - rhs.imax, imax - rhs.imin);
667 if (rhs.imax.value == 0 && rhs.imin.value == 0)
683 return IntRange(imin / rhs.imax, imax / rhs.imin);
[all …]
H A Dintrange.c138 return rhs.value == 0 ? rhs : *this;
146 uinteger_t aAbs = copySign(rhs.value, rhs.negative);
171 uinteger_t aAbs = copySign(rhs.value, rhs.negative);
205 uinteger_t aAbs = copySign(rhs.value, rhs.negative);
256 if (rhs.negative || rhs.value > 63)
488 return IntRange(minAnd(*this, rhs), maxAnd(*this, rhs));
533 return IntRange(minOr(*this, rhs), maxOr(*this, rhs));
575 return (*this & (~rhs)) | (~(*this) & rhs);
580 return IntRange(imin + rhs.imin, imax + rhs.imax);
585 return IntRange(imin - rhs.imax, imax - rhs.imin);
[all …]
/netbsd/external/lgpl3/gmp/dist/demos/
H A Dpexpr.c872 res -> operands.ops.rhs = rhs; in makeexp()
907 mpz_eval_expr (rhs, e->operands.ops.rhs); in mpz_eval_expr()
914 mpz_eval_expr (rhs, e->operands.ops.rhs); in mpz_eval_expr()
921 mpz_eval_expr (rhs, e->operands.ops.rhs); in mpz_eval_expr()
928 mpz_eval_expr (rhs, e->operands.ops.rhs); in mpz_eval_expr()
934 mpz_eval_expr (rhs, e->operands.ops.rhs); in mpz_eval_expr()
935 mpz_abs (rhs, rhs); in mpz_eval_expr()
949 mpz_eval_expr (rhs, e->operands.ops.rhs); in mpz_eval_expr()
1150 mpz_eval_expr (rhs, e->operands.ops.rhs); in mpz_eval_expr()
1173 mpz_eval_expr (rhs, e->operands.ops.rhs); in mpz_eval_expr()
[all …]
/netbsd/external/bsd/ntp/dist/libntp/
H A Dvint64ops.c132 const vint64 * rhs in icmpv64() argument
179 const vint64 *rhs in addv64() argument
188 M_ADD(res.D_s.hi, res.D_s.lo, rhs->D_s.hi, rhs->D_s.lo); in addv64()
198 const vint64 *rhs in subv64() argument
207 M_SUB(res.D_s.hi, res.D_s.lo, rhs->D_s.hi, rhs->D_s.lo); in subv64()
224 res.q_s += rhs; in addv64i32()
226 M_ADD(res.D_s.hi, res.D_s.lo, -(rhs < 0), rhs); in addv64i32()
243 res.q_s -= rhs; in subv64i32()
245 M_SUB(res.D_s.hi, res.D_s.lo, -(rhs < 0), rhs); in subv64i32()
262 res.Q_s += rhs; in addv64u32()
[all …]
/netbsd/external/gpl3/gcc.old/dist/gcc/d/dmd/
H A Dintrange.c138 return rhs.value == 0 ? rhs : *this;
146 uinteger_t aAbs = copySign(rhs.value, rhs.negative);
171 uinteger_t aAbs = copySign(rhs.value, rhs.negative);
205 uinteger_t aAbs = copySign(rhs.value, rhs.negative);
256 if (rhs.negative || rhs.value > 63)
488 return IntRange(minAnd(*this, rhs), maxAnd(*this, rhs));
533 return IntRange(minOr(*this, rhs), maxOr(*this, rhs));
575 return (*this & (~rhs)) | (~(*this) & rhs);
580 return IntRange(imin + rhs.imin, imax + rhs.imax);
585 return IntRange(imin - rhs.imax, imax - rhs.imin);
[all …]
/netbsd/external/apache2/llvm/dist/llvm/lib/Target/WebAssembly/
H A DWebAssemblyInstrFloat.td89 def : Pat<(seteq f32:$lhs, f32:$rhs), (EQ_F32 f32:$lhs, f32:$rhs)>;
90 def : Pat<(setne f32:$lhs, f32:$rhs), (NE_F32 f32:$lhs, f32:$rhs)>;
91 def : Pat<(setlt f32:$lhs, f32:$rhs), (LT_F32 f32:$lhs, f32:$rhs)>;
92 def : Pat<(setle f32:$lhs, f32:$rhs), (LE_F32 f32:$lhs, f32:$rhs)>;
93 def : Pat<(setgt f32:$lhs, f32:$rhs), (GT_F32 f32:$lhs, f32:$rhs)>;
94 def : Pat<(setge f32:$lhs, f32:$rhs), (GE_F32 f32:$lhs, f32:$rhs)>;
95 def : Pat<(seteq f64:$lhs, f64:$rhs), (EQ_F64 f64:$lhs, f64:$rhs)>;
96 def : Pat<(setne f64:$lhs, f64:$rhs), (NE_F64 f64:$lhs, f64:$rhs)>;
97 def : Pat<(setlt f64:$lhs, f64:$rhs), (LT_F64 f64:$lhs, f64:$rhs)>;
98 def : Pat<(setle f64:$lhs, f64:$rhs), (LE_F64 f64:$lhs, f64:$rhs)>;
[all …]
H A DWebAssemblyInstrInteger.td28 [(set I32:$dst, (node I32:$lhs, I32:$rhs))],
32 [(set I64:$dst, (node I64:$lhs, I64:$rhs))],
38 [(set I32:$dst, (setcc I32:$lhs, I32:$rhs, cond))],
97 def : Pat<(rotl I32:$lhs, (and I32:$rhs, 31)), (ROTL_I32 I32:$lhs, I32:$rhs)>;
98 def : Pat<(rotr I32:$lhs, (and I32:$rhs, 31)), (ROTR_I32 I32:$lhs, I32:$rhs)>;
99 def : Pat<(rotl I64:$lhs, (and I64:$rhs, 63)), (ROTL_I64 I64:$lhs, I64:$rhs)>;
100 def : Pat<(rotr I64:$lhs, (and I64:$rhs, 63)), (ROTR_I64 I64:$lhs, I64:$rhs)>;
115 (SELECT_I32 I32:$lhs, I32:$rhs, I32:$cond)>;
117 (SELECT_I64 I64:$lhs, I64:$rhs, I32:$cond)>;
121 (SELECT_I32 I32:$rhs, I32:$lhs, I32:$cond)>;
[all …]
/netbsd/external/gpl3/gcc.old/dist/libphobos/src/std/experimental/
H A Dcheckedint.d286 this(U)(U rhs)
494 return payload < rhs ? -1 : payload > rhs;
505 return payload < rhs ? -1 : payload > rhs;
528 return -rhs.hook.hookOpCmp(rhs.payload, get); in opCmp()
546 if (rhs < 0 && rhs >= lhs) in hookOpCmp()
555 return lhs < rhs ? -1 : lhs > rhs; in hookOpCmp()
566 return lhs < rhs ? -1 : lhs > rhs; in hookOpCmp()
1480 return lhs < rhs ? -1 : lhs > rhs;
1643 return lhs < rhs ? -1 : lhs > rhs;
1732 return rhs != defaultValue!Rhs && rhs != 0;
[all …]
/netbsd/external/gpl3/gcc/dist/libphobos/src/std/
H A Dcheckedint.d731 return payload < rhs ? -1 : payload > rhs;
742 return payload < rhs ? -1 : payload > rhs;
765 return -rhs.hook.hookOpCmp(rhs.payload, get);
785 if (rhs < 0 && rhs >= lhs)
794 return lhs < rhs ? -1 : lhs > rhs;
805 return lhs < rhs ? -1 : lhs > rhs;
1269 int hookOpCmp(Lhs, Rhs)(Lhs lhs, Rhs rhs) { return (lhs > rhs) - (lhs < rhs); }
1817 return lhs < rhs ? -1 : lhs > rhs;
2033 return lhs < rhs ? -1 : lhs > rhs;
2122 return rhs != defaultValue!Rhs && rhs != 0;
[all …]
/netbsd/external/gpl3/gcc/dist/gcc/cp/
H A Dlogic.cc378 if (disjunction_p (rhs) || (conjunction_p (rhs) && d2)) in dnf_size_r()
402 if (disjunction_p (rhs) || (conjunction_p (rhs) && d2)) in dnf_size_r()
420 if (disjunction_p (rhs) || (conjunction_p (rhs) && d2)) in dnf_size_r()
444 if (disjunction_p (rhs) || (conjunction_p (rhs) && d2)) in dnf_size_r()
501 if ((disjunction_p (rhs) && d2) || conjunction_p (rhs)) in cnf_size_r()
510 if ((disjunction_p (rhs) && d2) || conjunction_p (rhs)) in cnf_size_r()
541 if ((disjunction_p (rhs) && d2) || conjunction_p (rhs)) in cnf_size_r()
550 if ((disjunction_p (rhs) && d2) || conjunction_p (rhs)) in cnf_size_r()
723 tree rhs; member
743 if (!constraints_equivalent_p (e1->rhs, e2->rhs)) in equal()
[all …]
/netbsd/external/gpl3/gcc.old/dist/gcc/cp/
H A Dlogic.cc387 if (disjunction_p (rhs) || (conjunction_p (rhs) && d2)) in dnf_size_r()
411 if (disjunction_p (rhs) || (conjunction_p (rhs) && d2)) in dnf_size_r()
429 if (disjunction_p (rhs) || (conjunction_p (rhs) && d2)) in dnf_size_r()
453 if (disjunction_p (rhs) || (conjunction_p (rhs) && d2)) in dnf_size_r()
511 if ((disjunction_p (rhs) && d2) || conjunction_p (rhs)) in cnf_size_r()
520 if ((disjunction_p (rhs) && d2) || conjunction_p (rhs)) in cnf_size_r()
552 if ((disjunction_p (rhs) && d2) || conjunction_p (rhs)) in cnf_size_r()
561 if ((disjunction_p (rhs) && d2) || conjunction_p (rhs)) in cnf_size_r()
789 tree rhs; member
809 if (!constraints_equivalent_p (e1->rhs, e2->rhs)) in equal()
[all …]
/netbsd/external/gpl3/gdb/dist/libdecnumber/
H A DdecNumber.c807 || rhs->exponent!=0 || decNumberIsSpecial(rhs) || decNumberIsNegative(rhs)) { in decNumberAnd()
1203 if (rhs->exponent!=0 || decNumberIsSpecial(rhs) || decNumberIsNegative(rhs)) { in decNumberInvert()
1816 || rhs->exponent!=0 || decNumberIsSpecial(rhs) || decNumberIsNegative(rhs)) { in decNumberOr()
3239 || rhs->exponent!=0 || decNumberIsSpecial(rhs) || decNumberIsNegative(rhs)) { in decNumberXor()
3988 t=lhs; lhs=rhs; rhs=t; in decAddOp()
4057 rhs->lsu, D2U(rhs->digits), in decAddOp()
4759 rhs->lsu, D2U(rhs->digits), in decDivideOp()
5317 h=rhs->exponent+rhs->digits; in decExpOp()
5634 if (rhs->lsu[0]==0 && rhs->lsu[1]==1 && rhs->digits==2) { /* ln(10) */
6060 rhs->lsu, D2U(rhs->digits), 0);
[all …]
/netbsd/external/gpl3/gdb.old/dist/libdecnumber/
H A DdecNumber.c807 || rhs->exponent!=0 || decNumberIsSpecial(rhs) || decNumberIsNegative(rhs)) { in decNumberAnd()
1203 if (rhs->exponent!=0 || decNumberIsSpecial(rhs) || decNumberIsNegative(rhs)) { in decNumberInvert()
1816 || rhs->exponent!=0 || decNumberIsSpecial(rhs) || decNumberIsNegative(rhs)) { in decNumberOr()
3239 || rhs->exponent!=0 || decNumberIsSpecial(rhs) || decNumberIsNegative(rhs)) { in decNumberXor()
3988 t=lhs; lhs=rhs; rhs=t; in decAddOp()
4057 rhs->lsu, D2U(rhs->digits), in decAddOp()
4759 rhs->lsu, D2U(rhs->digits), in decDivideOp()
5317 h=rhs->exponent+rhs->digits; in decExpOp()
5634 if (rhs->lsu[0]==0 && rhs->lsu[1]==1 && rhs->digits==2) { /* ln(10) */
6060 rhs->lsu, D2U(rhs->digits), 0);
[all …]
/netbsd/external/gpl3/gcc.old/dist/libdecnumber/
H A DdecNumber.c807 || rhs->exponent!=0 || decNumberIsSpecial(rhs) || decNumberIsNegative(rhs)) { in decNumberAnd()
1203 if (rhs->exponent!=0 || decNumberIsSpecial(rhs) || decNumberIsNegative(rhs)) { in decNumberInvert()
1816 || rhs->exponent!=0 || decNumberIsSpecial(rhs) || decNumberIsNegative(rhs)) { in decNumberOr()
3239 || rhs->exponent!=0 || decNumberIsSpecial(rhs) || decNumberIsNegative(rhs)) { in decNumberXor()
3988 t=lhs; lhs=rhs; rhs=t; in decAddOp()
4057 rhs->lsu, D2U(rhs->digits), in decAddOp()
4759 rhs->lsu, D2U(rhs->digits), in decDivideOp()
5317 h=rhs->exponent+rhs->digits; in decExpOp()
5634 if (rhs->lsu[0]==0 && rhs->lsu[1]==1 && rhs->digits==2) { /* ln(10) */
6060 rhs->lsu, D2U(rhs->digits), 0);
[all …]
/netbsd/external/gpl3/gcc/dist/libdecnumber/
H A DdecNumber.c807 || rhs->exponent!=0 || decNumberIsSpecial(rhs) || decNumberIsNegative(rhs)) { in decNumberAnd()
1203 if (rhs->exponent!=0 || decNumberIsSpecial(rhs) || decNumberIsNegative(rhs)) { in decNumberInvert()
1816 || rhs->exponent!=0 || decNumberIsSpecial(rhs) || decNumberIsNegative(rhs)) { in decNumberOr()
3239 || rhs->exponent!=0 || decNumberIsSpecial(rhs) || decNumberIsNegative(rhs)) { in decNumberXor()
3988 t=lhs; lhs=rhs; rhs=t; in decAddOp()
4057 rhs->lsu, D2U(rhs->digits), in decAddOp()
4759 rhs->lsu, D2U(rhs->digits), in decDivideOp()
5317 h=rhs->exponent+rhs->digits; in decExpOp()
5634 if (rhs->lsu[0]==0 && rhs->lsu[1]==1 && rhs->digits==2) { /* ln(10) */
6060 rhs->lsu, D2U(rhs->digits), 0);
[all …]
/netbsd/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; } in mp_limb_t() argument
77 GMP_ASSERT_ALWAYS (rhs < GMP_LIMB_BITS);
78 limbo = (limbo << rhs) & GMP_NUMB_MASK;
82 GMP_ASSERT_ALWAYS (rhs < GMP_LIMB_BITS);
83 limbo = limbo >> rhs;
99 return limbo op rhs.limbo; \
[all …]
/netbsd/external/gpl3/gcc/dist/gcc/
H A Ddiagnostic-spec.h78 nowarn_spec_t& operator|= (const nowarn_spec_t &rhs)
80 m_bits |= rhs.m_bits;
85 nowarn_spec_t& operator&= (const nowarn_spec_t &rhs)
87 m_bits &= rhs.m_bits;
92 nowarn_spec_t& operator^= (const nowarn_spec_t &rhs)
94 m_bits ^= rhs.m_bits;
106 operator| (const nowarn_spec_t &lhs, const nowarn_spec_t &rhs)
108 return nowarn_spec_t (lhs) |= rhs;
114 operator& (const nowarn_spec_t &lhs, const nowarn_spec_t &rhs)
116 return nowarn_spec_t (lhs) &= rhs;
[all …]
/netbsd/external/gpl3/gdb/dist/gdb/testsuite/gdb.cp/
H A Dpass-by-ref-2.cc34 ByRef (const ByRef &rhs);
44 ByRef::ByRef (const ByRef &rhs) in ByRef() argument
116 Inlined (const Inlined &rhs) in Inlined() argument
161 FourCCtor (FourCCtor &rhs);
162 FourCCtor (const FourCCtor &rhs);
163 FourCCtor (volatile FourCCtor &rhs);
174 FourCCtor::FourCCtor (FourCCtor &rhs) in FourCCtor() argument
179 FourCCtor::FourCCtor (const FourCCtor &rhs) in FourCCtor() argument
207 TwoMCtor (const TwoMCtor &&rhs);
208 TwoMCtor (TwoMCtor &&rhs) = default;
[all …]
/netbsd/sys/ddb/
H A Ddb_expr.c147 db_expr_t lhs, rhs; in db_mult_expr() local
160 lhs *= rhs; in db_mult_expr()
162 if (rhs == 0) { in db_mult_expr()
167 lhs /= rhs; in db_mult_expr()
169 lhs %= rhs; in db_mult_expr()
171 lhs = ((lhs+rhs-1)/rhs)*rhs; in db_mult_expr()
183 db_expr_t lhs, rhs; in db_add_expr() local
196 lhs += rhs; in db_add_expr()
198 lhs -= rhs; in db_add_expr()
221 if (rhs < 0) { in db_shift_expr()
[all …]
/netbsd/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) in ByRef() argument
116 Inlined (const Inlined &rhs) in Inlined() argument
161 FourCCtor (FourCCtor &rhs);
162 FourCCtor (const FourCCtor &rhs);
163 FourCCtor (volatile FourCCtor &rhs);
174 FourCCtor::FourCCtor (FourCCtor &rhs) in FourCCtor() argument
179 FourCCtor::FourCCtor (const FourCCtor &rhs) in FourCCtor() argument
207 TwoMCtor (const TwoMCtor &&rhs);
208 TwoMCtor (TwoMCtor &&rhs) = default;
[all …]
/netbsd/external/gpl3/gdb/dist/gdb/dwarf2/
H A Dframe.h114 swap (*this, rhs);
120 : reg (std::move (rhs.reg)), cfa_offset (rhs.cfa_offset), in dwarf2_frame_state_reg_info()
121 cfa_reg (rhs.cfa_reg), cfa_how (rhs.cfa_how), cfa_exp (rhs.cfa_exp), in dwarf2_frame_state_reg_info()
122 prev (rhs.prev) in dwarf2_frame_state_reg_info()
124 rhs.prev = nullptr; in dwarf2_frame_state_reg_info()
151 dwarf2_frame_state_reg_info& rhs) in swap()
155 swap (lhs.reg, rhs.reg); in swap()
157 swap (lhs.cfa_reg, rhs.cfa_reg); in swap()
158 swap (lhs.cfa_how, rhs.cfa_how); in swap()
159 swap (lhs.cfa_exp, rhs.cfa_exp); in swap()
[all …]
/netbsd/external/gpl3/gdb.old/dist/gdb/dwarf2/
H A Dframe.h114 swap (*this, rhs);
120 : reg (std::move (rhs.reg)), cfa_offset (rhs.cfa_offset), in dwarf2_frame_state_reg_info()
121 cfa_reg (rhs.cfa_reg), cfa_how (rhs.cfa_how), cfa_exp (rhs.cfa_exp), in dwarf2_frame_state_reg_info()
122 prev (rhs.prev) in dwarf2_frame_state_reg_info()
124 rhs.prev = nullptr; in dwarf2_frame_state_reg_info()
151 dwarf2_frame_state_reg_info& rhs) in swap()
155 swap (lhs.reg, rhs.reg); in swap()
157 swap (lhs.cfa_reg, rhs.cfa_reg); in swap()
158 swap (lhs.cfa_how, rhs.cfa_how); in swap()
159 swap (lhs.cfa_exp, rhs.cfa_exp); in swap()
[all …]
/netbsd/external/gpl3/gdb/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)
174 return lhs.get () == rhs;
186 return lhs == rhs.get ();
192 return nullptr == rhs.get ();
197 const ref_ptr<T, Policy> &rhs)
199 return lhs.get () != rhs.get ();
205 return lhs.get () != rhs;
217 return lhs != rhs.get ();
[all …]
/netbsd/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)
174 return lhs.get () == rhs;
186 return lhs == rhs.get ();
192 return nullptr == rhs.get ();
197 const ref_ptr<T, Policy> &rhs)
199 return lhs.get () != rhs.get ();
205 return lhs.get () != rhs;
217 return lhs != rhs.get ();
[all …]

12345678910>>...45