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

1234567891011

/openbsd-current/gnu/usr.bin/gcc/gcc/testsuite/g++.old-deja/g++.mike/
H A Ddebug1.C10 foo (const c& lhs) argument
12 c str (lhs);
H A Dp9068.C13 void foo (ostream& lhs, const C& rhs) argument
15 lhs << rhs.i; // ERROR - no such i for any opr << ()
/openbsd-current/gnu/usr.bin/gcc/gcc/testsuite/gcc.dg/
H A D20020607-1.c2 gcc 3.0.4 mistakenly set lhs.low to 0 at the beginning of the num_eq
17 num_equality_op (lhs, rhs)
18 cpp_num lhs, rhs;
20 lhs.low = num_eq (lhs, rhs);
21 lhs.high = 0;
22 lhs.overflow = 0;
23 return lhs;
/openbsd-current/gnu/llvm/lldb/source/Utility/
H A DVMRange.cpp42 bool lldb_private::operator==(const VMRange &lhs, const VMRange &rhs) {
43 return lhs.GetBaseAddress() == rhs.GetBaseAddress() &&
44 lhs.GetEndAddress() == rhs.GetEndAddress();
47 bool lldb_private::operator!=(const VMRange &lhs, const VMRange &rhs) {
48 return !(lhs == rhs);
51 bool lldb_private::operator<(const VMRange &lhs, const VMRange &rhs) {
52 if (lhs.GetBaseAddress() < rhs.GetBaseAddress())
54 else if (lhs.GetBaseAddress() > rhs.GetBaseAddress())
56 return lhs.GetEndAddress() < rhs.GetEndAddress();
59 bool lldb_private::operator<=(const VMRange &lhs, cons
[all...]
H A DScalar.cpp55 Scalar::Type Scalar::PromoteToMaxType(Scalar &lhs, Scalar &rhs) { argument
68 PromotionKey lhs_key = lhs.GetPromoKey();
72 Promote(rhs, lhs);
74 Promote(lhs, rhs);
77 if (lhs.GetPromoKey() == rhs.GetPromoKey())
78 return lhs.GetType(); // Return the resulting type
512 const Scalar lldb_private::operator+(const Scalar &lhs, const Scalar &rhs) { argument
513 Scalar result = lhs;
518 const Scalar lldb_private::operator-(Scalar lhs, Scalar rhs) { argument
520 if ((result.m_type = Scalar::PromoteToMaxType(lhs, rh
535 operator /(Scalar lhs, Scalar rhs) argument
556 operator *(Scalar lhs, Scalar rhs) argument
573 operator &(Scalar lhs, Scalar rhs) argument
584 operator |(Scalar lhs, Scalar rhs) argument
595 operator %(Scalar lhs, Scalar rhs) argument
607 operator ^(Scalar lhs, Scalar rhs) argument
618 operator <<(const Scalar &lhs, const Scalar &rhs) argument
624 operator >>(const Scalar &lhs, const Scalar &rhs) argument
815 operator ==(Scalar lhs, Scalar rhs) argument
834 operator !=(const Scalar &lhs, const Scalar &rhs) argument
838 operator <(Scalar lhs, Scalar rhs) argument
856 operator <=(const Scalar &lhs, const Scalar &rhs) argument
860 operator >(const Scalar &lhs, const Scalar &rhs) argument
864 operator >=(const Scalar &lhs, const Scalar &rhs) argument
[all...]
/openbsd-current/gnu/llvm/lldb/tools/lldb-vscode/
H A DSourceBreakpoint.h29 inline bool operator<(const SourceBreakpoint &lhs, argument
31 if (lhs.line == rhs.line)
32 return lhs.column < rhs.column;
33 return lhs.line < rhs.line;
/openbsd-current/gnu/usr.bin/gcc/gcc/testsuite/g++.old-deja/g++.martin/
H A Dsts_vectini.C20 XTVec& operator+=(XTVec& lhs, XTVec& rhs){ argument
21 lhs[0]+=rhs[0];
22 lhs[1]+=rhs[1];
23 lhs[2]+=rhs[2];
24 return lhs;
28 XTVec operator+(XTVec& lhs, XTVec& rhs){ argument
29 XTVec result(lhs);
/openbsd-current/gnu/llvm/lldb/source/Symbol/
H A DCompilerDecl.cpp39 bool lldb_private::operator==(const lldb_private::CompilerDecl &lhs, argument
41 return lhs.GetTypeSystem() == rhs.GetTypeSystem() &&
42 lhs.GetOpaqueDecl() == rhs.GetOpaqueDecl();
45 bool lldb_private::operator!=(const lldb_private::CompilerDecl &lhs, argument
47 return lhs.GetTypeSystem() != rhs.GetTypeSystem() ||
48 lhs.GetOpaqueDecl() != rhs.GetOpaqueDecl();
H A DCompilerDeclContext.cpp60 bool lldb_private::operator==(const lldb_private::CompilerDeclContext &lhs, argument
62 return lhs.GetTypeSystem() == rhs.GetTypeSystem() &&
63 lhs.GetOpaqueDeclContext() == rhs.GetOpaqueDeclContext();
66 bool lldb_private::operator!=(const lldb_private::CompilerDeclContext &lhs, argument
68 return lhs.GetTypeSystem() != rhs.GetTypeSystem() ||
69 lhs.GetOpaqueDeclContext() != rhs.GetOpaqueDeclContext();
/openbsd-current/gnu/llvm/lldb/source/Target/
H A DStackID.cpp33 bool lldb_private::operator==(const StackID &lhs, const StackID &rhs) { argument
34 if (lhs.GetCallFrameAddress() != rhs.GetCallFrameAddress())
37 SymbolContextScope *lhs_scope = lhs.GetSymbolContextScope();
42 return lhs.GetPC() == rhs.GetPC();
47 bool lldb_private::operator!=(const StackID &lhs, const StackID &rhs) { argument
48 if (lhs.GetCallFrameAddress() != rhs.GetCallFrameAddress())
51 SymbolContextScope *lhs_scope = lhs.GetSymbolContextScope();
55 return lhs.GetPC() != rhs.GetPC();
60 bool lldb_private::operator<(const StackID &lhs, const StackID &rhs) { argument
61 const lldb::addr_t lhs_cfa = lhs
[all...]
/openbsd-current/sys/ddb/
H A Ddb_expr.c134 db_expr_t lhs, rhs; local
137 if (!db_unary(&lhs))
147 lhs *= rhs;
154 lhs /= rhs;
156 lhs %= rhs;
158 lhs = ((lhs+rhs-1)/rhs)*rhs;
163 *valuep = lhs;
170 db_expr_t lhs, rhs; local
173 if (!db_mult_expr(&lhs))
196 db_expr_t lhs, rhs; local
[all...]
/openbsd-current/gnu/llvm/lldb/include/lldb/Utility/
H A DScalar.h196 static Type PromoteToMaxType(Scalar &lhs, Scalar &rhs);
204 friend const Scalar operator+(const Scalar &lhs, const Scalar &rhs);
205 friend const Scalar operator-(Scalar lhs, Scalar rhs);
206 friend const Scalar operator/(Scalar lhs, Scalar rhs);
207 friend const Scalar operator*(Scalar lhs, Scalar rhs);
208 friend const Scalar operator&(Scalar lhs, Scalar rhs);
209 friend const Scalar operator|(Scalar lhs, Scalar rhs);
210 friend const Scalar operator%(Scalar lhs, Scalar rhs);
211 friend const Scalar operator^(Scalar lhs, Scalar rhs);
212 friend const Scalar operator<<(const Scalar &lhs, cons
[all...]
H A DUserID.h80 inline bool operator==(const UserID &lhs, const UserID &rhs) { argument
81 return lhs.GetID() == rhs.GetID();
84 inline bool operator!=(const UserID &lhs, const UserID &rhs) { argument
85 return lhs.GetID() != rhs.GetID();
H A DVMRange.h95 bool operator==(const VMRange &lhs, const VMRange &rhs);
96 bool operator!=(const VMRange &lhs, const VMRange &rhs);
97 bool operator<(const VMRange &lhs, const VMRange &rhs);
98 bool operator<=(const VMRange &lhs, const VMRange &rhs);
99 bool operator>(const VMRange &lhs, const VMRange &rhs);
100 bool operator>=(const VMRange &lhs, const VMRange &rhs);
/openbsd-current/usr.sbin/nsd/
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;
/openbsd-current/gnu/llvm/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);
/openbsd-current/gnu/llvm/lldb/source/Core/
H A DSourceLocationSpec.cpp46 int SourceLocationSpec::Compare(const SourceLocationSpec &lhs, argument
48 return Declaration::Compare(lhs.m_declaration, rhs.m_declaration);
51 bool SourceLocationSpec::Equal(const SourceLocationSpec &lhs, argument
53 return full ? lhs == rhs
54 : (lhs.GetFileSpec() == rhs.GetFileSpec() &&
55 lhs.GetLine() == rhs.GetLine());
/openbsd-current/gnu/gcc/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...]
/openbsd-current/gnu/usr.bin/perl/cpan/Time-Piece/
H A DSeconds.pm56 my ($lhs, $rhs, $reverse) = @_;
57 $lhs = $lhs->seconds;
67 return $rhs, $lhs;
70 return $lhs, $rhs;
74 my ($lhs, $rhs) = _get_ovlvals(@_);
75 return $lhs <=> $rhs;
79 my ($lhs, $rhs) = _get_ovlvals(@_);
80 return Time::Seconds->new($lhs + $rhs);
84 my $lhs
[all...]
/openbsd-current/gnu/usr.bin/gcc/gcc/
H A Dcppexp.c1185 num_bitwise_op (pfile, lhs, rhs, op)
1187 cpp_num lhs, rhs;
1190 lhs.overflow = false;
1191 lhs.unsignedp = lhs.unsignedp || rhs.unsignedp;
1197 lhs.low &= rhs.low;
1198 lhs.high &= rhs.high;
1202 lhs.low |= rhs.low;
1203 lhs.high |= rhs.high;
1207 lhs
[all...]
/openbsd-current/gnu/usr.bin/perl/t/op/
H A Dlex.t295 my $lhs = "\N{U+AB}";
296 utf8::downgrade($lhs);
310 my \$warns = q$lhs this string uses paired latin1 delimiters $rhs;
314 my \$nowarn = q$lhs this string uses paired latin1 delimiters $rhs;
316 my \$warn2= q$lhs this string uses lhs delimiter fore/aft $lhs;
320 is($@, "", "Various tests of string delims $lhs/$rhs returned without error");
323 qr/Use of '$lhs' is experimental as a string delimiter at/,
326 qr/Use of '$lhs' i
[all...]
/openbsd-current/gnu/gcc/libcpp/
H A Dexpr.c1175 cpp_num lhs, cpp_num rhs, enum cpp_ttype op)
1177 lhs.overflow = false;
1178 lhs.unsignedp = lhs.unsignedp || rhs.unsignedp;
1184 lhs.low &= rhs.low;
1185 lhs.high &= rhs.high;
1189 lhs.low |= rhs.low;
1190 lhs.high |= rhs.high;
1194 lhs.low ^= rhs.low;
1195 lhs
1173 num_bitwise_op(cpp_reader *pfile ATTRIBUTE_UNUSED, cpp_num lhs, cpp_num rhs, enum cpp_ttype op) argument
1202 num_inequality_op(cpp_reader *pfile, cpp_num lhs, cpp_num rhs, enum cpp_ttype op) argument
1224 num_equality_op(cpp_reader *pfile ATTRIBUTE_UNUSED, cpp_num lhs, cpp_num rhs, enum cpp_ttype op) argument
1356 num_binary_op(cpp_reader *pfile, cpp_num lhs, cpp_num rhs, enum cpp_ttype op) argument
1422 num_part_mul(cpp_num_part lhs, cpp_num_part rhs) argument
1453 num_mul(cpp_reader *pfile, cpp_num lhs, cpp_num rhs) argument
1503 num_div_op(cpp_reader *pfile, cpp_num lhs, cpp_num rhs, enum cpp_ttype op) argument
[all...]
/openbsd-current/gnu/llvm/lldb/include/lldb/Core/
H A DUniqueCStringMap.h176 llvm::sort(m_map, [&](const Entry &lhs, const Entry &rhs) -> bool {
177 int result = c.ThreeWay(lhs.cstring, rhs.cstring);
179 return tc(lhs.value, rhs.value);
210 bool operator()(const Entry &lhs, const Entry &rhs) { argument
211 return operator()(lhs.cstring, rhs.cstring);
214 bool operator()(const Entry &lhs, ConstString rhs) { argument
215 return operator()(lhs.cstring, rhs);
218 bool operator()(ConstString lhs, const Entry &rhs) { argument
219 return operator()(lhs, rhs.cstring);
222 bool operator()(ConstString lhs, ConstStrin argument
229 ThreeWay(ConstString lhs, ConstString rhs) argument
[all...]
/openbsd-current/gnu/lib/libstdc++/libstdc++/testsuite/23_containers/
H A Dmultiset.cc36 operator<(std::pair<int, int> const& lhs, std::pair<int, int> const& rhs) argument
37 { return lhs.first < rhs.first; }
/openbsd-current/gnu/llvm/lldb/source/Plugins/Platform/MacOSX/objcxx/
H A DPlatformiOSSimulatorCoreSimulatorSupport.h179 bool operator>(const OSVersion &lhs, const OSVersion &rhs);
181 bool operator>(const ModelIdentifier &lhs, const ModelIdentifier &rhs);
183 bool operator<(const OSVersion &lhs, const OSVersion &rhs);
185 bool operator<(const ModelIdentifier &lhs, const ModelIdentifier &rhs);
187 bool operator==(const OSVersion &lhs, const OSVersion &rhs);
189 bool operator==(const ModelIdentifier &lhs, const ModelIdentifier &rhs);
191 bool operator!=(const OSVersion &lhs, const OSVersion &rhs);
193 bool operator!=(const ModelIdentifier &lhs, const ModelIdentifier &rhs);

Completed in 376 milliseconds

1234567891011