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

1234567891011>>

/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 DModuleChild.cpp19 ModuleChild::ModuleChild (const ModuleChild& rhs) : argument
20 m_module_wp(rhs.m_module_wp)
29 ModuleChild::operator= (const ModuleChild& rhs) argument
31 if (this != &rhs)
32 m_module_wp = rhs.m_module_wp;
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.GetEndAddress() < rhs
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...]
/freebsd-10.1-release/contrib/llvm/tools/lldb/source/API/
H A DSBTypeNameSpecifier.cpp42 SBTypeNameSpecifier::SBTypeNameSpecifier (const lldb::SBTypeNameSpecifier &rhs) : argument
43 m_opaque_sp(rhs.m_opaque_sp)
96 SBTypeNameSpecifier::operator = (const lldb::SBTypeNameSpecifier &rhs) argument
98 if (this != &rhs)
100 m_opaque_sp = rhs.m_opaque_sp;
106 SBTypeNameSpecifier::operator == (lldb::SBTypeNameSpecifier &rhs) argument
109 return !rhs.IsValid();
110 return m_opaque_sp == rhs.m_opaque_sp;
114 SBTypeNameSpecifier::IsEqualTo (lldb::SBTypeNameSpecifier &rhs) argument
117 return !rhs
128 operator !=(lldb::SBTypeNameSpecifier &rhs) argument
[all...]
H A DSBTypeSynthetic.cpp44 SBTypeSynthetic::SBTypeSynthetic (const lldb::SBTypeSynthetic &rhs) : argument
45 m_opaque_sp(rhs.m_opaque_sp)
131 SBTypeSynthetic::operator = (const lldb::SBTypeSynthetic &rhs) argument
133 if (this != &rhs)
135 m_opaque_sp = rhs.m_opaque_sp;
141 SBTypeSynthetic::operator == (lldb::SBTypeSynthetic &rhs) argument
144 return !rhs.IsValid();
145 return m_opaque_sp == rhs.m_opaque_sp;
149 SBTypeSynthetic::IsEqualTo (lldb::SBTypeSynthetic &rhs) argument
152 return !rhs
168 operator !=(lldb::SBTypeSynthetic &rhs) argument
[all...]
H A DSBTypeFilter.cpp31 SBTypeFilter::SBTypeFilter (const lldb::SBTypeFilter &rhs) : argument
32 m_opaque_sp(rhs.m_opaque_sp)
119 SBTypeFilter::operator = (const lldb::SBTypeFilter &rhs) argument
121 if (this != &rhs)
123 m_opaque_sp = rhs.m_opaque_sp;
129 SBTypeFilter::operator == (lldb::SBTypeFilter &rhs) argument
132 return !rhs.IsValid();
134 return m_opaque_sp == rhs.m_opaque_sp;
138 SBTypeFilter::IsEqualTo (lldb::SBTypeFilter &rhs) argument
141 return !rhs
156 operator !=(lldb::SBTypeFilter &rhs) argument
[all...]
/freebsd-10.1-release/contrib/libc++/src/
H A Dios.cpp299 ios_base::copyfmt(const ios_base& rhs) argument
307 if (__event_cap_ < rhs.__event_size_)
309 new_callbacks.reset((event_callback*)malloc(sizeof(event_callback) * rhs.__event_size_));
314 new_ints.reset((int*)malloc(sizeof(int) * rhs.__event_size_));
320 if (__iarray_cap_ < rhs.__iarray_size_)
322 new_longs.reset((long*)malloc(sizeof(long) * rhs.__iarray_size_));
328 if (__parray_cap_ < rhs.__parray_size_)
330 new_pointers.reset((void**)malloc(sizeof(void*) * rhs.__parray_size_));
337 __fmtflags_ = rhs.__fmtflags_;
338 __precision_ = rhs
375 move(ios_base& rhs) argument
[all...]
/freebsd-10.1-release/contrib/llvm/tools/lldb/include/lldb/Core/
H A DUserID.h96 operator () (const UserID& rhs) const { return m_uid == rhs.GetID(); }
113 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 DConstString.h53 /// Copies the string value in \a rhs into this object.
55 /// @param[in] rhs
58 ConstString (const ConstString& rhs) : argument
59 m_string (rhs.m_string)
127 /// the C string value in \a rhs, \b false otherwise.
129 bool operator()(const char* lhs, const char* rhs) const
131 return lhs == rhs;
159 /// Assigns the string in this object with the value from \a rhs.
161 /// @param[in] rhs
168 operator = (const ConstString& rhs) argument
[all...]
H A DModuleChild.h37 /// @param[in] rhs
40 ModuleChild (const ModuleChild& rhs);
50 /// @param[in] rhs
57 operator= (const ModuleChild& rhs);
H A DUUID.h34 UUID (const UUID& rhs);
40 operator=(const UUID& rhs);
102 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 DScalar.h53 Scalar(const Scalar& rhs);
136 Scalar& operator= (const Scalar& rhs); // Assignment operator
137 Scalar& operator+= (const Scalar& rhs);
138 Scalar& operator<<= (const Scalar& rhs); // Shift left
139 Scalar& operator>>= (const Scalar& rhs); // Shift right (arithmetic)
140 Scalar& operator&= (const Scalar& rhs);
147 ShiftRightLogical(const Scalar& rhs); // Returns true on success
288 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);
[all...]
/freebsd-10.1-release/contrib/llvm/tools/lldb/include/lldb/Symbol/
H A DClangNamespaceDecl.h35 ClangNamespaceDecl (const ClangNamespaceDecl &rhs) : argument
36 m_ast (rhs.m_ast),
37 m_namespace_decl (rhs.m_namespace_decl)
42 operator = (const ClangNamespaceDecl &rhs) argument
44 m_ast = rhs.m_ast;
45 m_namespace_decl = rhs.m_namespace_decl;
/freebsd-10.1-release/contrib/llvm/tools/lldb/include/lldb/Target/
H A DStackID.h43 StackID (const StackID& rhs) : argument
44 m_pc (rhs.m_pc),
45 m_cfa (rhs.m_cfa),
46 m_symbol_scope (rhs.m_symbol_scope)
99 operator=(const StackID& rhs) argument
101 if (this != &rhs)
103 m_pc = rhs.m_pc;
104 m_cfa = rhs.m_cfa;
105 m_symbol_scope = rhs.m_symbol_scope;
146 bool operator== (const StackID& lhs, const StackID& rhs);
[all...]
/freebsd-10.1-release/contrib/llvm/tools/lldb/include/lldb/Host/
H A DTimeValue.h43 TimeValue(const TimeValue& rhs);
52 operator=(const TimeValue& rhs);
111 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.c130 const vint64 * rhs
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);
154 const vint64 * rhs
160 res = (lhs->Q_s > rhs->Q_s)
161 - (lhs->Q_s < rhs
[all...]
/freebsd-10.1-release/contrib/llvm/tools/lldb/source/Plugins/SymbolFile/DWARF/
H A DUniqueDWARFASTType.h58 UniqueDWARFASTType (const UniqueDWARFASTType &rhs) : argument
59 m_type_sp (rhs.m_type_sp),
60 m_symfile (rhs.m_symfile),
61 m_cu (rhs.m_cu),
62 m_die (rhs.m_die),
63 m_declaration (rhs.m_declaration),
64 m_byte_size (rhs.m_byte_size)
73 operator= (const UniqueDWARFASTType &rhs) argument
75 if (this != &rhs)
77 m_type_sp = rhs
[all...]
H A DDWARFDeclContext.h47 NameMatches (const Entry& rhs) const
49 if (name == rhs.name)
51 else if (name && rhs.name)
52 return strcmp(name, rhs.name) == 0;
78 operator ==(const DWARFDeclContext& rhs) const;
/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())
48 SymbolContextScope *rhs_scope = rhs.GetSymbolContextScope();
52 return lhs.GetPC() == rhs.GetPC();
58 lldb_private::operator!= (const StackID& lhs, const StackID& rhs) argument
60 if (lhs.GetCallFrameAddress() != rhs.GetCallFrameAddress())
64 SymbolContextScope *rhs_scope = rhs.GetSymbolContextScope();
67 return lhs.GetPC() != rhs.GetPC();
73 lldb_private::operator< (const StackID& lhs, const StackID& rhs) argument
76 const lldb::addr_t rhs_cfa = rhs
[all...]
H A DThreadSpec.cpp24 ThreadSpec::ThreadSpec (const ThreadSpec &rhs) : argument
25 m_index(rhs.m_index),
26 m_tid(rhs.m_tid),
27 m_name(rhs.m_name),
28 m_queue_name(rhs.m_queue_name)
33 ThreadSpec::operator=(const ThreadSpec &rhs) argument
35 m_index = rhs.m_index;
36 m_tid = rhs.m_tid;
37 m_name = rhs.m_name;
38 m_queue_name = rhs
[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.get() != rhs;
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/contrib/gcc/
H A Dtree-stdarg.c117 va_list_counter_bump (struct stdarg_info *si, tree counter, tree rhs, argument
135 orig_lhs = lhs = rhs;
156 rhs = TREE_OPERAND (stmt, 1);
157 if (TREE_CODE (rhs) == WITH_SIZE_EXPR)
158 rhs = TREE_OPERAND (rhs, 0);
160 if (TREE_CODE (rhs) == SSA_NAME)
162 lhs = rhs;
166 if ((TREE_CODE (rhs) == NOP_EXPR
167 || TREE_CODE (rhs)
445 check_va_list_escapes(struct stdarg_info *si, tree lhs, tree rhs) argument
528 tree rhs = TREE_OPERAND (stmt, 1); local
753 tree phi, lhs, rhs; local
813 tree rhs = TREE_OPERAND (stmt, 1); local
[all...]
/freebsd-10.1-release/contrib/llvm/tools/lldb/include/lldb/API/
H A DSBTypeNameSpecifier.h28 SBTypeNameSpecifier (const lldb::SBTypeNameSpecifier &rhs);
49 operator = (const lldb::SBTypeNameSpecifier &rhs);
52 IsEqualTo (lldb::SBTypeNameSpecifier &rhs);
55 operator == (lldb::SBTypeNameSpecifier &rhs);
58 operator != (lldb::SBTypeNameSpecifier &rhs);
/freebsd-10.1-release/contrib/llvm/tools/lldb/source/Host/common/
H A DTimeValue.cpp41 TimeValue::TimeValue(const TimeValue& rhs) : argument
42 m_nano_seconds (rhs.m_nano_seconds)
149 TimeValue::operator=(const TimeValue& rhs) argument
151 m_nano_seconds = rhs.m_nano_seconds;
181 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
199 operator <=(const TimeValue &lhs, const TimeValue &rhs) argument
205 operator >(const TimeValue &lhs, const TimeValue &rhs) argument
211 operator >=(const TimeValue &lhs, const TimeValue &rhs) argument
217 operator -(const TimeValue &lhs, const TimeValue &rhs) argument
[all...]
/freebsd-10.1-release/sys/ddb/
H A Ddb_expr.c133 db_expr_t lhs, rhs; local
141 if (!db_term(&rhs)) {
146 lhs *= rhs;
148 if (rhs == 0) {
153 lhs /= rhs;
155 lhs %= rhs;
157 lhs = ((lhs+rhs-1)/rhs)*rhs;
169 db_expr_t lhs, rhs; local
195 db_expr_t lhs, rhs; local
212 lhs <<= rhs; local
[all...]

Completed in 216 milliseconds

1234567891011>>