Searched refs:lhs (Results 1 - 25 of 166) sorted by relevance

1234567

/freebsd-10.1-release/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-10.1-release/contrib/llvm/tools/lldb/source/Core/
H A DVMRange.cpp62 lldb_private::operator== (const VMRange& lhs, const VMRange& rhs) argument
64 return lhs.GetBaseAddress() == rhs.GetBaseAddress() && lhs.GetEndAddress() == rhs.GetEndAddress();
68 lldb_private::operator!= (const VMRange& lhs, const VMRange& rhs) argument
70 return lhs.GetBaseAddress() != rhs.GetBaseAddress() || lhs.GetEndAddress() != rhs.GetEndAddress();
74 lldb_private::operator< (const VMRange& lhs, const VMRange& rhs) argument
76 if (lhs.GetBaseAddress() < rhs.GetBaseAddress())
78 else if (lhs.GetBaseAddress() > rhs.GetBaseAddress())
80 return lhs
84 operator <=(const VMRange& lhs, const VMRange& rhs) argument
94 operator >(const VMRange& lhs, const VMRange& rhs) argument
104 operator >=(const VMRange& lhs, const VMRange& rhs) argument
[all...]
H A DUUID.cpp246 lldb_private::operator == (const lldb_private::UUID &lhs, const lldb_private::UUID &rhs) argument
248 return ::memcmp (lhs.GetBytes(), rhs.GetBytes(), sizeof (lldb_private::UUID::ValueType)) == 0;
252 lldb_private::operator != (const lldb_private::UUID &lhs, const lldb_private::UUID &rhs) argument
254 return ::memcmp (lhs.GetBytes(), rhs.GetBytes(), sizeof (lldb_private::UUID::ValueType)) != 0;
258 lldb_private::operator < (const lldb_private::UUID &lhs, const lldb_private::UUID &rhs) argument
260 return ::memcmp (lhs.GetBytes(), rhs.GetBytes(), sizeof (lldb_private::UUID::ValueType)) < 0;
264 lldb_private::operator <= (const lldb_private::UUID &lhs, const lldb_private::UUID &rhs) argument
266 return ::memcmp (lhs.GetBytes(), rhs.GetBytes(), sizeof (lldb_private::UUID::ValueType)) <= 0;
270 lldb_private::operator > (const lldb_private::UUID &lhs, const lldb_private::UUID &rhs) argument
272 return ::memcmp (lhs
276 operator >=(const lldb_private::UUID &lhs, const lldb_private::UUID &rhs) argument
[all...]
/freebsd-10.1-release/contrib/llvm/tools/lldb/source/Target/
H A DStackID.cpp42 lldb_private::operator== (const StackID& lhs, const StackID& rhs) argument
44 if (lhs.GetCallFrameAddress() != rhs.GetCallFrameAddress())
47 SymbolContextScope *lhs_scope = lhs.GetSymbolContextScope();
52 return lhs.GetPC() == rhs.GetPC();
58 lldb_private::operator!= (const StackID& lhs, const StackID& rhs) argument
60 if (lhs.GetCallFrameAddress() != rhs.GetCallFrameAddress())
63 SymbolContextScope *lhs_scope = lhs.GetSymbolContextScope();
67 return lhs.GetPC() != rhs.GetPC();
73 lldb_private::operator< (const StackID& lhs, const StackID& rhs) argument
75 const lldb::addr_t lhs_cfa = lhs
[all...]
/freebsd-10.1-release/contrib/llvm/include/llvm/ADT/
H A Dpolymorphic_ptr.h81 void swap(polymorphic_ptr<T> &lhs, polymorphic_ptr<T> &rhs) { argument
82 lhs.swap(rhs);
86 bool operator==(const polymorphic_ptr<T> &lhs, const polymorphic_ptr<U> &rhs) { argument
87 return lhs.get() == rhs.get();
91 bool operator!=(const polymorphic_ptr<T> &lhs, const polymorphic_ptr<U> &rhs) { argument
92 return lhs.get() != rhs.get();
96 bool operator==(const polymorphic_ptr<T> &lhs, U *rhs) { argument
97 return lhs.get() == rhs;
101 bool operator!=(const polymorphic_ptr<T> &lhs, U *rhs) { argument
102 return lhs
106 operator ==(T *lhs, const polymorphic_ptr<U> &rhs) argument
111 operator !=(T *lhs, const polymorphic_ptr<U> &rhs) argument
[all...]
/freebsd-10.1-release/sys/ddb/
H A Ddb_expr.c133 db_expr_t lhs, rhs; local
136 if (!db_unary(&lhs))
146 lhs *= rhs;
153 lhs /= rhs;
155 lhs %= rhs;
157 lhs = ((lhs+rhs-1)/rhs)*rhs;
162 *valuep = lhs;
169 db_expr_t lhs, rhs; local
172 if (!db_mult_expr(&lhs))
195 db_expr_t lhs, rhs; local
[all...]
/freebsd-10.1-release/contrib/llvm/tools/lldb/include/lldb/Host/
H A DTimeValue.h111 bool operator == (const TimeValue &lhs, const TimeValue &rhs);
112 bool operator != (const TimeValue &lhs, const TimeValue &rhs);
113 bool operator < (const TimeValue &lhs, const TimeValue &rhs);
114 bool operator <= (const TimeValue &lhs, const TimeValue &rhs);
115 bool operator > (const TimeValue &lhs, const TimeValue &rhs);
116 bool operator >= (const TimeValue &lhs, const TimeValue &rhs);
118 uint64_t operator -(const TimeValue &lhs, const TimeValue &rhs);
/freebsd-10.1-release/contrib/ntp/libntp/
H A Dvint64ops.c129 const vint64 * lhs,
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);
153 const vint64 * lhs,
160 res = (lhs->Q_s > rhs->Q_s)
161 - (lhs
128 icmpv64( const vint64 * lhs, const vint64 * rhs ) argument
152 ucmpv64( const vint64 * lhs, const vint64 * rhs ) argument
175 addv64( const vint64 *lhs, const vint64 *rhs ) argument
194 subv64( const vint64 *lhs, const vint64 *rhs ) argument
213 addv64i32( const vint64 * lhs, int32_t rhs ) argument
232 subv64i32( const vint64 * lhs, int32_t rhs ) argument
251 addv64u32( const vint64 * lhs, uint32_t rhs ) argument
270 subv64u32( const vint64 * lhs, uint32_t rhs ) argument
[all...]
/freebsd-10.1-release/contrib/llvm/tools/lldb/include/lldb/Core/
H A DUserID.h113 inline bool operator== (const UserID& lhs, const UserID& rhs) argument
115 return lhs.GetID() == rhs.GetID();
118 inline bool operator!= (const UserID& lhs, const UserID& rhs) argument
120 return lhs.GetID() != rhs.GetID();
H A DScalar.h288 friend const Scalar operator+ (const Scalar& lhs, const Scalar& rhs);
289 friend const Scalar operator- (const Scalar& lhs, const Scalar& rhs);
290 friend const Scalar operator/ (const Scalar& lhs, const Scalar& rhs);
291 friend const Scalar operator* (const Scalar& lhs, const Scalar& rhs);
292 friend const Scalar operator& (const Scalar& lhs, const Scalar& rhs);
293 friend const Scalar operator| (const Scalar& lhs, const Scalar& rhs);
294 friend const Scalar operator% (const Scalar& lhs, const Scalar& rhs);
295 friend const Scalar operator^ (const Scalar& lhs, const Scalar& rhs);
296 friend const Scalar operator<< (const Scalar& lhs, const Scalar& rhs);
297 friend const Scalar operator>> (const Scalar& lhs, cons
[all...]
H A DUUID.h102 bool operator == (const UUID &lhs, const UUID &rhs);
103 bool operator != (const UUID &lhs, const UUID &rhs);
104 bool operator < (const UUID &lhs, const UUID &rhs);
105 bool operator <= (const UUID &lhs, const UUID &rhs);
106 bool operator > (const UUID &lhs, const UUID &rhs);
107 bool operator >= (const UUID &lhs, const UUID &rhs);
H A DVMRange.h172 bool operator== (const VMRange& lhs, const VMRange& rhs);
173 bool operator!= (const VMRange& lhs, const VMRange& rhs);
174 bool operator< (const VMRange& lhs, const VMRange& rhs);
175 bool operator<= (const VMRange& lhs, const VMRange& rhs);
176 bool operator> (const VMRange& lhs, const VMRange& rhs);
177 bool operator>= (const VMRange& lhs, const VMRange& rhs);
H A DAddress.h192 /// @param[in] lhs
199 /// @li -1 if lhs < rhs
200 /// @li 0 if lhs == rhs
201 /// @li 1 if lhs > rhs
204 CompareFileAddress (const Address& lhs, const Address& rhs);
207 CompareLoadAddress (const Address& lhs, const Address& rhs, Target *target);
210 CompareModulePointerAndOffset (const Address& lhs, const Address& rhs);
582 bool operator< (const Address& lhs, const Address& rhs);
583 bool operator> (const Address& lhs, const Address& rhs);
587 bool operator== (const Address& lhs, cons
[all...]
H A DConstString.h126 /// Returns \b true if the C string in \a lhs is equal to
129 bool operator()(const char* lhs, const char* rhs) const argument
131 return lhs == rhs;
302 /// Compares the C string values contained in \a lhs and \a rhs and
310 /// @param[in] lhs
317 /// @li -1 if lhs < rhs
318 /// @li 0 if lhs == rhs
319 /// @li 1 if lhs > rhs
322 Compare (const ConstString& lhs, const ConstString& rhs);
H A DHistory.h70 // Return 0 when lhs == rhs, 1 if lhs > rhs, or -1 if lhs < rhs.
72 CompareHistoryEvents (const HistoryEvent lhs,
149 // Return 0 when lhs == rhs, 1 if lhs > rhs, or -1 if lhs < rhs.
151 CompareHistoryEvents (const HistoryEvent lhs, argument
154 uintptr_t lhs_uint = (uintptr_t)lhs;
/freebsd-10.1-release/contrib/llvm/tools/lldb/source/Host/common/
H A DTimeValue.cpp181 lldb_private::operator == (const TimeValue &lhs, const TimeValue &rhs) argument
183 return lhs.GetAsNanoSecondsSinceJan1_1970() == rhs.GetAsNanoSecondsSinceJan1_1970();
187 lldb_private::operator != (const TimeValue &lhs, const TimeValue &rhs) argument
189 return lhs.GetAsNanoSecondsSinceJan1_1970() != rhs.GetAsNanoSecondsSinceJan1_1970();
193 lldb_private::operator < (const TimeValue &lhs, const TimeValue &rhs) argument
195 return lhs.GetAsNanoSecondsSinceJan1_1970() < rhs.GetAsNanoSecondsSinceJan1_1970();
199 lldb_private::operator <= (const TimeValue &lhs, const TimeValue &rhs) argument
201 return lhs.GetAsNanoSecondsSinceJan1_1970() <= rhs.GetAsNanoSecondsSinceJan1_1970();
205 lldb_private::operator > (const TimeValue &lhs, const TimeValue &rhs) argument
207 return lhs
211 operator >=(const TimeValue &lhs, const TimeValue &rhs) argument
217 operator -(const TimeValue &lhs, const TimeValue &rhs) argument
[all...]
/freebsd-10.1-release/contrib/llvm/tools/lldb/source/Symbol/
H A DDeclaration.cpp105 lldb_private::operator == (const Declaration &lhs, const Declaration &rhs) argument
108 if (lhs.GetColumn () == rhs.GetColumn ())
109 if (lhs.GetLine () == rhs.GetLine ())
110 return lhs.GetFile() == rhs.GetFile();
112 if (lhs.GetLine () == rhs.GetLine ())
113 return lhs.GetFile() == rhs.GetFile();
/freebsd-10.1-release/contrib/gcc/
H A Dtree-stdarg.c120 tree stmt, lhs, orig_lhs; local
135 orig_lhs = lhs = rhs;
136 while (lhs)
138 if (si->offsets[SSA_NAME_VERSION (lhs)] != -1)
146 ret -= counter_val - si->offsets[SSA_NAME_VERSION (lhs)];
150 stmt = SSA_NAME_DEF_STMT (lhs);
153 || TREE_OPERAND (stmt, 0) != lhs)
162 lhs = rhs;
170 lhs = TREE_OPERAND (rhs, 0);
180 lhs
445 check_va_list_escapes(struct stdarg_info *si, tree lhs, tree rhs) argument
527 tree lhs = TREE_OPERAND (stmt, 0); local
753 tree phi, lhs, rhs; local
812 tree lhs = TREE_OPERAND (stmt, 0); local
[all...]
H A Dtree-ssa-dom.c69 tree lhs; member in struct:edge_info
119 /* The value (lhs) of this expression. */
120 tree lhs; member in struct:expr_hash_elt
465 initialize_hash_element (tree expr, tree lhs, struct expr_hash_elt *element) argument
503 element->lhs = lhs;
629 tree lhs = edge_info->lhs; local
633 if (lhs && TREE_CODE (lhs)
669 tree lhs = edge_info->lhs; local
728 tree lhs = PHI_RESULT (phi); local
826 tree lhs = edge_info->lhs; local
1181 tree lhs, rhs, preinc, phi; local
1562 tree lhs = TREE_OPERAND (stmt, 0); local
1926 tree lhs; local
2058 tree lhs = PHI_RESULT (phi); local
2134 propagate_rhs_into_lhs(tree stmt, tree lhs, tree rhs, bitmap interesting_names) argument
2354 tree lhs = get_lhs_or_phi_result (t); local
[all...]
H A Dtree-ssa-structalias.c422 struct constraint_expr lhs; member in struct:constraint
523 new_constraint (const struct constraint_expr lhs, argument
527 ret->lhs = lhs;
537 if (c->lhs.type == ADDRESSOF)
539 else if (c->lhs.type == DEREF)
541 fprintf (file, "%s", get_varinfo_fc (c->lhs.var)->name);
542 if (c->lhs.offset != 0)
543 fprintf (file, " + " HOST_WIDE_INT_PRINT_DEC, c->lhs.offset);
643 if (constraint_expr_less (a->lhs,
991 struct constraint_expr lhs = c->lhs; local
1050 struct constraint_expr lhs; local
1392 unsigned int lhs = find (c->lhs.var); local
1907 struct constraint_expr lhs = c->lhs; local
2275 struct constraint_expr lhs = t->lhs; local
2783 do_simple_structure_copy(const struct constraint_expr lhs, const struct constraint_expr rhs, const unsigned HOST_WIDE_INT size) argument
2821 do_rhs_deref_structure_copy(const struct constraint_expr lhs, const struct constraint_expr rhs, const unsigned HOST_WIDE_INT size) argument
2860 do_lhs_deref_structure_copy(const struct constraint_expr lhs, const struct constraint_expr rhs, const unsigned HOST_WIDE_INT size) argument
2922 struct constraint_expr lhs, rhs, tmp; local
3431 struct constraint_expr lhs ; local
3823 struct constraint_expr lhs, rhs; local
3841 struct constraint_expr lhs; local
4026 struct constraint_expr lhs; local
4272 struct constraint_expr lhs, rhs; local
4638 struct constraint_expr lhs, rhs; local
[all...]
/freebsd-10.1-release/contrib/gcclibs/libcpp/
H A Dexpr.c1178 cpp_num lhs, cpp_num rhs, enum cpp_ttype op)
1180 lhs.overflow = false;
1181 lhs.unsignedp = lhs.unsignedp || rhs.unsignedp;
1187 lhs.low &= rhs.low;
1188 lhs.high &= rhs.high;
1192 lhs.low |= rhs.low;
1193 lhs.high |= rhs.high;
1197 lhs.low ^= rhs.low;
1198 lhs
1176 num_bitwise_op(cpp_reader *pfile ATTRIBUTE_UNUSED, cpp_num lhs, cpp_num rhs, enum cpp_ttype op) argument
1205 num_inequality_op(cpp_reader *pfile, cpp_num lhs, cpp_num rhs, enum cpp_ttype op) argument
1227 num_equality_op(cpp_reader *pfile ATTRIBUTE_UNUSED, cpp_num lhs, cpp_num rhs, enum cpp_ttype op) argument
1359 num_binary_op(cpp_reader *pfile, cpp_num lhs, cpp_num rhs, enum cpp_ttype op) argument
1425 num_part_mul(cpp_num_part lhs, cpp_num_part rhs) argument
1456 num_mul(cpp_reader *pfile, cpp_num lhs, cpp_num rhs) argument
1506 num_div_op(cpp_reader *pfile, cpp_num lhs, cpp_num rhs, enum cpp_ttype op) argument
[all...]
/freebsd-10.1-release/contrib/llvm/tools/lldb/include/lldb/Symbol/
H A DLineEntry.h129 /// @param[in] lhs
136 /// @li -1 if lhs < rhs
137 /// @li 0 if lhs == rhs
138 /// @li 1 if lhs > rhs
141 Compare (const LineEntry& lhs, const LineEntry& rhs);
161 /// @param[in] lhs
168 /// Returns \b true if lhs < rhs, false otherwise.
170 bool operator<(const LineEntry& lhs, const LineEntry& rhs);
H A DLineTable.h327 Compare (const Entry& lhs, const Entry& rhs) argument
331 SCALAR_COMPARE (lhs.file_addr, rhs.file_addr);
332 SCALAR_COMPARE (lhs.line, rhs.line);
333 SCALAR_COMPARE (lhs.column, rhs.column);
334 SCALAR_COMPARE (lhs.is_start_of_statement, rhs.is_start_of_statement);
335 SCALAR_COMPARE (lhs.is_start_of_basic_block, rhs.is_start_of_basic_block);
336 // rhs and lhs reversed on purpose below.
337 SCALAR_COMPARE (rhs.is_prologue_end, lhs.is_prologue_end);
338 SCALAR_COMPARE (lhs.is_epilogue_begin, rhs.is_epilogue_begin);
339 // rhs and lhs reverse
356 EntryAddressLessThan(const Entry& lhs, const Entry& rhs) argument
[all...]
/freebsd-10.1-release/contrib/gcclibs/libdecnumber/
H A DdecNumber.c151 /* lhs -- left hand side (operand, of an operation) */
222 static Int decCompare (const decNumber * lhs, const decNumber * rhs);
677 /* lhs is A */
685 decNumberAdd (decNumber * res, const decNumber * lhs, argument
689 decAddOp (res, lhs, rhs, set, 0, &status);
701 /* lhs is A */
708 decNumberCompare (decNumber * res, const decNumber * lhs, argument
712 decCompareOp (res, lhs, rhs, set, COMPARE, &status);
724 /* lhs is A */
731 decNumberDivide (decNumber * res, const decNumber * lhs, argument
754 decNumberDivideInteger(decNumber * res, const decNumber * lhs, const decNumber * rhs, decContext * set) argument
777 decNumberMax(decNumber * res, const decNumber * lhs, const decNumber * rhs, decContext * set) argument
800 decNumberMin(decNumber * res, const decNumber * lhs, const decNumber * rhs, decContext * set) argument
889 decNumberMultiply(decNumber * res, const decNumber * lhs, const decNumber * rhs, decContext * set) argument
976 decNumberPower(decNumber * res, const decNumber * lhs, const decNumber * rhs, decContext * set) argument
1263 decNumberQuantize(decNumber * res, const decNumber * lhs, const decNumber * rhs, decContext * set) argument
1292 decNumberRescale(decNumber * res, const decNumber * lhs, const decNumber * rhs, decContext * set) argument
1315 decNumberRemainder(decNumber * res, const decNumber * lhs, const decNumber * rhs, decContext * set) argument
1338 decNumberRemainderNear(decNumber * res, const decNumber * lhs, const decNumber * rhs, decContext * set) argument
1358 decNumberSameQuantum(decNumber * res, const decNumber * lhs, const decNumber * rhs) argument
1796 decNumberSubtract(decNumber * res, const decNumber * lhs, const decNumber * rhs, decContext * set) argument
2230 decAddOp(decNumber * res, const decNumber * lhs, const decNumber * rhs, decContext * set, uByte negate, uInt * status) argument
2707 decDivideOp(decNumber * res, const decNumber * lhs, const decNumber * rhs, decContext * set, Flag op, uInt * status) argument
3430 decMultiplyOp(decNumber * res, const decNumber * lhs, const decNumber * rhs, decContext * set, uInt * status) argument
3612 decQuantizeOp(decNumber * res, const decNumber * lhs, const decNumber * rhs, decContext * set, Flag quant, uInt * status) argument
3795 decCompareOp(decNumber * res, const decNumber * lhs, const decNumber * rhs, decContext * set, Flag op, uInt * status) argument
3959 decCompare(const decNumber * lhs, const decNumber * rhs) argument
5492 decNaNs(decNumber * res, const decNumber * lhs, const decNumber * rhs, uInt * status) argument
5708 decCheckOperands(decNumber * res, const decNumber * lhs, const decNumber * rhs, decContext * set) argument
[all...]
/freebsd-10.1-release/sys/ofed/include/linux/
H A Dktime.h100 /* Subtract two ktime_t variables. rem = lhs -rhs: */
101 #define ktime_sub(lhs, rhs) \
102 ({ (ktime_t){ .tv64 = (lhs).tv64 - (rhs).tv64 }; })
104 /* Add two ktime_t variables. res = lhs + rhs: */
105 #define ktime_add(lhs, rhs) \
106 ({ (ktime_t){ .tv64 = (lhs).tv64 + (rhs).tv64 }; })
168 * @lhs: minuend
173 static inline ktime_t ktime_sub(const ktime_t lhs, const ktime_t rhs) argument
177 res.tv64 = lhs.tv64 - rhs.tv64;

Completed in 273 milliseconds

1234567