Searched refs:lhs (Results 1 - 25 of 685) 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/gcc.old/dist/gcc/
H A Dgimple-builder.c52 build_assign (enum tree_code code, tree op1, int val, tree lhs) argument
55 if (lhs == NULL_TREE)
56 lhs = make_ssa_name (get_expr_type (code, op1));
57 return gimple_build_assign (lhs, code, op1, op2);
61 build_assign (enum tree_code code, gimple *g, int val, tree lhs )
63 return build_assign (code, gimple_assign_lhs (g), val, lhs);
76 build_assign (enum tree_code code, tree op1, tree op2, tree lhs) argument
78 if (lhs == NULL_TREE)
79 lhs = make_ssa_name (get_expr_type (code, op1));
80 return gimple_build_assign (lhs, cod
84 build_assign(enum tree_code code, gimple *op1, tree op2, tree lhs) argument
90 build_assign(enum tree_code code, tree op1, gimple *op2, tree lhs) argument
96 build_assign(enum tree_code code, gimple *op1, gimple *op2, tree lhs) argument
107 build_type_cast(tree to_type, tree op, tree lhs) argument
115 build_type_cast(tree to_type, gimple *op, tree lhs) argument
[all...]
H A Dgimple-builder.h24 gassign *build_assign (enum tree_code, tree, int, tree lhs = NULL_TREE);
25 gassign *build_assign (enum tree_code, gimple *, int, tree lhs = NULL_TREE);
26 gassign *build_assign (enum tree_code, tree, tree, tree lhs = NULL_TREE);
27 gassign *build_assign (enum tree_code, gimple *, tree, tree lhs = NULL_TREE);
28 gassign *build_assign (enum tree_code, tree, gimple *, tree lhs = NULL_TREE);
30 tree lhs = NULL_TREE);
31 gassign *build_type_cast (tree, tree, tree lhs = NULL_TREE);
32 gassign *build_type_cast (tree, gimple *, tree lhs = NULL_TREE);
/netbsd-current/external/gpl3/gcc/dist/gcc/
H A Dgimple-builder.cc52 build_assign (enum tree_code code, tree op1, int val, tree lhs) argument
55 if (lhs == NULL_TREE)
56 lhs = make_ssa_name (get_expr_type (code, op1));
57 return gimple_build_assign (lhs, code, op1, op2);
61 build_assign (enum tree_code code, gimple *g, int val, tree lhs )
63 return build_assign (code, gimple_assign_lhs (g), val, lhs);
76 build_assign (enum tree_code code, tree op1, tree op2, tree lhs) argument
78 if (lhs == NULL_TREE)
79 lhs = make_ssa_name (get_expr_type (code, op1));
80 return gimple_build_assign (lhs, cod
84 build_assign(enum tree_code code, gimple *op1, tree op2, tree lhs) argument
90 build_assign(enum tree_code code, tree op1, gimple *op2, tree lhs) argument
96 build_assign(enum tree_code code, gimple *op1, gimple *op2, tree lhs) argument
107 build_type_cast(tree to_type, tree op, tree lhs) argument
115 build_type_cast(tree to_type, gimple *op, tree lhs) argument
[all...]
H A Dgimple-builder.h26 gassign *build_assign (enum tree_code, tree, int, tree lhs = NULL_TREE);
27 gassign *build_assign (enum tree_code, gimple *, int, tree lhs = NULL_TREE);
28 gassign *build_assign (enum tree_code, tree, tree, tree lhs = NULL_TREE);
29 gassign *build_assign (enum tree_code, gimple *, tree, tree lhs = NULL_TREE);
30 gassign *build_assign (enum tree_code, tree, gimple *, tree lhs = NULL_TREE);
32 tree lhs = NULL_TREE);
33 gassign *build_type_cast (tree, tree, tree lhs = NULL_TREE);
34 gassign *build_type_cast (tree, gimple *, tree lhs = NULL_TREE);
H A Ddiagnostic-spec.h106 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
124 return static_cast<unsigned>(lhs) == static_cast<unsigned>(rhs);
130 operator!= (const nowarn_spec_t &lhs, const nowarn_spec_t &rhs) argument
132 return !(lhs == rhs);
H A Drange-op.h70 const irange &lhs,
74 const irange &lhs,
81 virtual enum tree_code lhs_op1_relation (const irange &lhs,
84 virtual enum tree_code lhs_op2_relation (const irange &lhs,
87 virtual enum tree_code op1_op2_relation (const irange &lhs) const;
/netbsd-current/external/gpl3/gcc.old/dist/gcc/d/dmd/root/
H A Drootobject.c21 size_t lhs = (size_t)this; local
23 if (lhs < rhs)
25 else if (lhs > rhs)
/netbsd-current/external/lgpl3/gmp/dist/demos/
H A Dpexpr.c105 struct {struct expr *lhs, *rhs;} ops; member in struct:expr::__anon15742::__anon15743
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) argument
871 res -> operands.ops.lhs = lhs;
883 free_expr (e->operands.ops.lhs);
897 mpz_t lhs, rhs; local
905 mpz_init (lhs); mpz_init (rhs);
906 mpz_eval_expr (lhs, e->operands.ops.lhs);
1313 mpz_t lhs, rhs; local
[all...]
/netbsd-current/sys/ddb/
H A Ddb_expr.c147 db_expr_t lhs, rhs; local
150 if (!db_unary(&lhs))
160 lhs *= rhs;
167 lhs /= rhs;
169 lhs %= rhs;
171 lhs = ((lhs+rhs-1)/rhs)*rhs;
176 *valuep = lhs;
183 db_expr_t lhs, rhs; local
186 if (!db_mult_expr(&lhs))
209 db_expr_t lhs, rhs; local
[all...]
/netbsd-current/external/bsd/ntp/dist/libntp/
H A Dvint64ops.c131 const vint64 * lhs,
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);
155 const vint64 * lhs,
162 res = (lhs->Q_s > rhs->Q_s)
163 - (lhs
130 icmpv64( const vint64 * lhs, const vint64 * rhs ) argument
154 ucmpv64( const vint64 * lhs, const vint64 * rhs ) argument
177 addv64( const vint64 *lhs, const vint64 *rhs ) argument
196 subv64( const vint64 *lhs, const vint64 *rhs ) argument
215 addv64i32( const vint64 * lhs, int32_t rhs ) argument
234 subv64i32( const vint64 * lhs, int32_t rhs ) argument
253 addv64u32( const vint64 * lhs, uint32_t rhs ) argument
272 subv64u32( const vint64 * lhs, uint32_t 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);
53 extern void isl_sioimath_add_ui(isl_sioimath_ptr dst, isl_sioimath lhs,
55 extern void isl_sioimath_sub_ui(isl_sioimath_ptr dst, isl_sioimath lhs,
58 extern void isl_sioimath_add(isl_sioimath_ptr dst, isl_sioimath_src lhs,
60 extern void isl_sioimath_sub(isl_sioimath_ptr dst, isl_sioimath_src lhs,
62 extern void isl_sioimath_mul(isl_sioimath_ptr dst, isl_sioimath_src lhs,
64 extern void isl_sioimath_mul_2exp(isl_sioimath_ptr dst, isl_sioimath lhs,
66 extern void isl_sioimath_mul_si(isl_sioimath_ptr dst, isl_sioimath lhs,
68 extern void isl_sioimath_mul_ui(isl_sioimath_ptr dst, isl_sioimath lhs,
70 extern void isl_sioimath_pow_ui(isl_sioimath_ptr dst, isl_sioimath_src lhs,
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...]
H A Disl_int_sioimath.h577 inline void isl_sioimath_swap(isl_sioimath_ptr lhs, isl_sioimath_ptr rhs) argument
579 isl_sioimath tmp = *lhs;
580 *lhs = *rhs;
589 inline void isl_sioimath_add_ui(isl_sioimath_ptr dst, isl_sioimath lhs, argument
595 if (isl_sioimath_decode_small(lhs, &smalllhs) &&
602 isl_sioimath_bigarg_src(lhs, &lhsscratch), rhs);
612 inline void isl_sioimath_sub_ui(isl_sioimath_ptr dst, isl_sioimath lhs, argument
618 if (isl_sioimath_decode_small(lhs, &smalllhs) &&
625 isl_sioimath_bigarg_src(lhs, &lhsscratch), rhs);
631 inline void isl_sioimath_add(isl_sioimath_ptr dst, isl_sioimath_src lhs, argument
652 isl_sioimath_sub(isl_sioimath_ptr dst, isl_sioimath_src lhs, isl_sioimath_src rhs) argument
673 isl_sioimath_mul(isl_sioimath_ptr dst, isl_sioimath_src lhs, isl_sioimath_src rhs) argument
695 isl_sioimath_mul_2exp(isl_sioimath_ptr dst, isl_sioimath lhs, unsigned long rhs) argument
712 isl_sioimath_mul_si(isl_sioimath_ptr dst, isl_sioimath lhs, signed long rhs) argument
732 isl_sioimath_mul_ui(isl_sioimath_ptr dst, isl_sioimath lhs, unsigned long rhs) argument
754 isl_sioimath_pow_ui(isl_sioimath_ptr dst, isl_sioimath_src lhs, unsigned long rhs) argument
802 isl_sioimath_addmul(isl_sioimath_ptr dst, isl_sioimath_src lhs, isl_sioimath_src rhs) argument
814 isl_sioimath_addmul_ui(isl_sioimath_ptr dst, isl_sioimath_src lhs, unsigned long rhs) argument
826 isl_sioimath_submul(isl_sioimath_ptr dst, isl_sioimath_src lhs, isl_sioimath_src rhs) argument
838 isl_sioimath_submul_ui(isl_sioimath_ptr dst, isl_sioimath_src lhs, unsigned long rhs) argument
855 isl_sioimath_tdiv_q(isl_sioimath_ptr dst, isl_sioimath_src lhs, isl_sioimath_src rhs) argument
876 isl_sioimath_tdiv_q_ui(isl_sioimath_ptr dst, isl_sioimath_src lhs, unsigned long rhs) argument
903 isl_sioimath_cdiv_q(isl_sioimath_ptr dst, isl_sioimath_src lhs, isl_sioimath_src rhs) argument
933 isl_sioimath_cdiv_q_ui(isl_sioimath_ptr dst, isl_sioimath_src lhs, unsigned long rhs) argument
957 isl_sioimath_fdiv_q(isl_sioimath_ptr dst, isl_sioimath_src lhs, isl_sioimath_src rhs) argument
987 isl_sioimath_fdiv_q_ui(isl_sioimath_ptr dst, isl_sioimath_src lhs, unsigned long rhs) argument
1012 isl_sioimath_fdiv_r(isl_sioimath_ptr dst, isl_sioimath_src lhs, isl_sioimath_src rhs) argument
1055 isl_sioimath_cmp(isl_sioimath_src lhs, isl_sioimath_src rhs) argument
1078 isl_sioimath_cmp_si(isl_sioimath_src lhs, signed long rhs) argument
1093 isl_sioimath_abs_cmp(isl_sioimath_src lhs, isl_sioimath_src rhs) argument
1114 isl_sioimath_is_divisible_by(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);
125 static bool CaseInsensitiveCStringEquals(const char* lhs,
140 static bool CaseInsensitiveWideCStringEquals(const wchar_t* lhs,
/netbsd-current/external/gpl3/gcc.old/dist/gcc/config/tilegx/
H A Dtilegx-multiply.h39 unsigned char lhs; member in struct:tilegx_multiply_insn_seq_entry
41 /* This is like lhs, but for the right-hand side. However, for shift
/netbsd-current/external/gpl3/gcc.old/dist/gcc/config/tilepro/
H A Dtilepro-multiply.h42 unsigned char lhs; member in struct:tilepro_multiply_insn_seq_entry
44 /* This is like lhs, but for the right-hand side. However, for shift
/netbsd-current/external/gpl3/gdb.old/dist/gdbsupport/
H A Dgdb_ref_ptr.h165 inline bool operator== (const ref_ptr<T, Policy> &lhs, argument
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;
178 inline bool operator== (const ref_ptr<T, Policy> &lhs, const std::nullptr_t) argument
180 return lhs.get () == nullptr;
184 inline bool operator== (const T *lhs, const ref_ptr<T, Policy> &rhs) argument
186 return lhs == rhs.get ();
196 inline bool operator!= (const ref_ptr<T, Policy> &lhs, argument
199 return lhs
203 operator !=(const ref_ptr<T, Policy> &lhs, const T *rhs) argument
209 operator !=(const ref_ptr<T, Policy> &lhs, const std::nullptr_t) argument
215 operator !=(const T *lhs, const ref_ptr<T, Policy> &rhs) argument
[all...]
H A Doffset-type.h83 operator OP (E lhs, typename std::underlying_type<E>::type rhs) \
86 return (E) (static_cast<underlying> (lhs) OP rhs); \
92 operator OP (typename std::underlying_type<E>::type lhs, E rhs) \
95 return (E) (lhs OP static_cast<underlying> (rhs)); \
101 operator OP ## = (E &lhs, typename std::underlying_type<E>::type rhs) \
104 lhs = (E) (static_cast<underlying> (lhs) OP rhs); \
105 return lhs; \
118 operator+ (E lhs, E rhs) = delete;
127 operator- (E lhs, argument
[all...]
/netbsd-current/external/gpl3/gcc/dist/gcc/config/tilegx/
H A Dtilegx-multiply.h39 unsigned char lhs; member in struct:tilegx_multiply_insn_seq_entry
41 /* This is like lhs, but for the right-hand side. However, for shift
/netbsd-current/external/gpl3/gcc/dist/gcc/config/tilepro/
H A Dtilepro-multiply.h42 unsigned char lhs; member in struct:tilepro_multiply_insn_seq_entry
44 /* This is like lhs, but for the right-hand side. However, for shift
/netbsd-current/external/gpl3/gdb/dist/gdbsupport/
H A Dgdb_ref_ptr.h165 inline bool operator== (const ref_ptr<T, Policy> &lhs, argument
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;
178 inline bool operator== (const ref_ptr<T, Policy> &lhs, const std::nullptr_t) argument
180 return lhs.get () == nullptr;
184 inline bool operator== (const T *lhs, const ref_ptr<T, Policy> &rhs) argument
186 return lhs == rhs.get ();
196 inline bool operator!= (const ref_ptr<T, Policy> &lhs, argument
199 return lhs
203 operator !=(const ref_ptr<T, Policy> &lhs, const T *rhs) argument
209 operator !=(const ref_ptr<T, Policy> &lhs, const std::nullptr_t) argument
215 operator !=(const T *lhs, const ref_ptr<T, Policy> &rhs) argument
[all...]
H A Doffset-type.h83 operator OP (E lhs, typename std::underlying_type<E>::type rhs) \
86 return (E) (static_cast<underlying> (lhs) OP rhs); \
92 operator OP (typename std::underlying_type<E>::type lhs, E rhs) \
95 return (E) (lhs OP static_cast<underlying> (rhs)); \
101 operator OP ## = (E &lhs, typename std::underlying_type<E>::type rhs) \
104 lhs = (E) (static_cast<underlying> (lhs) OP rhs); \
105 return lhs; \
118 operator+ (E lhs, E rhs) = delete;
127 operator- (E lhs, argument
[all...]
H A Dpacked.h127 bool operator OP (const std::atomic<packed<T, Bytes>> &lhs, \
130 return lhs.load () OP rhs.load (); \
134 bool operator OP (T lhs, const std::atomic<packed<T, Bytes>> &rhs) \
136 return lhs OP rhs.load (); \
140 bool operator OP (const std::atomic<packed<T, Bytes>> &lhs, T rhs) \
142 return lhs.load () OP rhs; \
146 bool operator OP (const std::atomic<packed<T, Bytes>> &lhs, \
149 return lhs.load () OP rhs; \
153 bool operator OP (packed<T, Bytes> lhs, \
156 return lhs O
[all...]
/netbsd-current/external/bsd/nsd/dist/
H A Dnetio.h180 operator | (netio_event_types_type lhs, netio_event_types_type rhs) { argument
181 return (netio_event_types_type) (lhs | rhs);
184 operator |= (netio_event_types_type &lhs, netio_event_types_type rhs) { argument
185 lhs = (netio_event_types_type) (lhs | rhs);
186 return lhs;
/netbsd-current/external/apache2/llvm/dist/llvm/lib/Target/SystemZ/
H A DSystemZMachineScheduler.h74 bool operator() (SUnit *lhs, SUnit *rhs) const { argument
75 if (lhs->isScheduleHigh && !rhs->isScheduleHigh)
77 if (!lhs->isScheduleHigh && rhs->isScheduleHigh)
80 if (lhs->getHeight() > rhs->getHeight())
82 else if (lhs->getHeight() < rhs->getHeight())
85 return (lhs->NodeNum < rhs->NodeNum);

Completed in 186 milliseconds

1234567891011>>