Searched refs:rhs (Results 251 - 275 of 572) sorted by relevance

<<11121314151617181920>>

/freebsd-11-stable/contrib/gcc/
H A Dtree-ssa-phiopt.c715 tree lhs, rhs, op0, op1, bound; local
722 rhs = TREE_OPERAND (assign, 1);
723 ass_code = TREE_CODE (rhs);
726 op0 = TREE_OPERAND (rhs, 0);
727 op1 = TREE_OPERAND (rhs, 1);
883 tree rhs, lhs; local
908 rhs = TREE_OPERAND (assign, 1);
910 if (TREE_CODE (rhs) != NEGATE_EXPR)
913 rhs = TREE_OPERAND (rhs,
[all...]
H A Dloop-iv.c45 iv_analyze_expr (insn, rhs, mode, iv): Stores to IV the description of iv
602 rtx set, rhs, op0 = NULL_RTX, op1 = NULL_RTX; local
613 rhs = find_reg_equal_equiv_note (insn);
614 if (rhs)
615 rhs = XEXP (rhs, 0);
617 rhs = SET_SRC (set);
619 code = GET_CODE (rhs);
624 next = rhs;
629 op0 = XEXP (rhs,
900 iv_analyze_expr(rtx insn, rtx rhs, enum machine_mode mode, struct rtx_iv *iv) argument
1025 rtx set, rhs; local
1356 simple_rhs_p(rtx rhs) argument
1390 rtx lhs = NULL_RTX, rhs; local
[all...]
H A Dtree-ssa-propagate.c739 tree rhs; local
747 rhs = TREE_OPERAND (stmt, 1);
748 STRIP_NOPS (rhs);
750 return (!TREE_THIS_VOLATILE (rhs)
751 && (DECL_P (rhs)
752 || REFERENCE_CLASS_P (rhs)));
934 tree rhs = TREE_OPERAND (stmt, 1); local
940 && simple_cst_equal (rhs, val->mem_ref) == 1)
1172 tree rhs; local
1186 rhs
[all...]
/freebsd-11-stable/contrib/libucl/include/
H A Ducl++.h562 Ucl& operator= (Ucl rhs) argument
564 obj.swap (rhs.obj);
568 bool operator== (const Ucl &rhs) const
570 return ucl_object_compare (obj.get(), rhs.obj.get ()) == 0;
572 bool operator< (const Ucl &rhs) const
574 return ucl_object_compare (obj.get(), rhs.obj.get ()) < 0;
576 bool operator!= (const Ucl &rhs) const { return !(*this == rhs); }
577 bool operator<= (const Ucl &rhs) const { return !(rhs < *thi
[all...]
/freebsd-11-stable/contrib/llvm-project/lldb/source/Utility/
H A DScalar.cpp30 const Scalar &rhs, // The const right hand side object
32 // either the promoted lhs or rhs object
35 // lhs/rhs will get promoted)
37 // promoted value of rhs (at most one of
38 // lhs/rhs will get promoted)
45 promoted_rhs_ptr = &rhs;
48 Scalar::Type rhs_type = rhs.GetType();
52 temp_value = rhs; // Copy right hand side into the temp value
369 Scalar &Scalar::operator=(llvm::APInt rhs) { argument
370 m_integer = llvm::APInt(rhs);
28 PromoteToMaxType( const Scalar &lhs, const Scalar &rhs, Scalar &temp_value, const Scalar *&promoted_lhs_ptr, const Scalar *&promoted_rhs_ptr ) argument
1781 operator +=(const Scalar &rhs) argument
1815 operator <<=(const Scalar &rhs) argument
1863 ShiftRightLogical(const Scalar &rhs) argument
1911 operator >>=(const Scalar &rhs) argument
1959 operator &=(const Scalar &rhs) argument
2091 operator +(const Scalar &lhs, const Scalar &rhs) argument
2125 operator -(const Scalar &lhs, const Scalar &rhs) argument
2159 operator /(const Scalar &lhs, const Scalar &rhs) argument
2207 operator *(const Scalar &lhs, const Scalar &rhs) argument
2241 operator &(const Scalar &lhs, const Scalar &rhs) argument
2275 operator |(const Scalar &lhs, const Scalar &rhs) argument
2310 operator %(const Scalar &lhs, const Scalar &rhs) argument
2350 operator ^(const Scalar &lhs, const Scalar &rhs) argument
2385 operator <<(const Scalar &lhs, const Scalar &rhs) argument
2387 result <<= rhs; local
2391 operator >>(const Scalar &lhs, const Scalar &rhs) argument
2393 result >>= rhs; local
2757 operator ==(const Scalar &lhs, const Scalar &rhs) argument
2792 operator !=(const Scalar &lhs, const Scalar &rhs) argument
2796 operator <(const Scalar &lhs, const Scalar &rhs) argument
2831 operator <=(const Scalar &lhs, const Scalar &rhs) argument
2835 operator >(const Scalar &lhs, const Scalar &rhs) argument
2839 operator >=(const Scalar &lhs, const Scalar &rhs) argument
[all...]
H A DDataExtractor.cpp172 DataExtractor::DataExtractor(const DataExtractor &rhs) argument
173 : m_start(rhs.m_start), m_end(rhs.m_end), m_byte_order(rhs.m_byte_order),
174 m_addr_size(rhs.m_addr_size), m_data_sp(rhs.m_data_sp),
175 m_target_byte_size(rhs.m_target_byte_size) {
180 const DataExtractor &DataExtractor::operator=(const DataExtractor &rhs) { argument
181 if (this != &rhs) {
182 m_start = rhs
1056 Append(DataExtractor &rhs) argument
[all...]
/freebsd-11-stable/contrib/libucl/src/
H A Dtree.h65 int (*th_cmp)(struct type *lhs, struct type *rhs); \
122 (struct node *self, struct node *elm, int (*compare)(struct node *lhs, struct node *rhs)) \
134 (struct node *self, struct node *elm, int (*compare)(struct node *lhs, struct node *rhs)) \
146 static struct node *_HU_FUNCTION(TREE_MOVE_RIGHT)(struct node *self, struct node *rhs) \
149 return rhs; \
150 self->field.avl_right= TREE_MOVE_RIGHT(self->field.avl_right, rhs); \
155 (struct node *self, struct node *elm, int (*compare)(struct node *lhs, struct node *rhs)) \
/freebsd-11-stable/contrib/llvm-project/lldb/source/API/
H A DSBAttachInfo.cpp50 SBAttachInfo::SBAttachInfo(const SBAttachInfo &rhs) argument
52 LLDB_RECORD_CONSTRUCTOR(SBAttachInfo, (const lldb::SBAttachInfo &), rhs);
54 m_opaque_sp = clone(rhs.m_opaque_sp);
61 SBAttachInfo &SBAttachInfo::operator=(const SBAttachInfo &rhs) { argument
63 SBAttachInfo, operator=,(const lldb::SBAttachInfo &), rhs);
65 if (this != &rhs)
66 m_opaque_sp = clone(rhs.m_opaque_sp);
H A DSBStream.cpp26 SBStream::SBStream(SBStream &&rhs) argument
27 : m_opaque_up(std::move(rhs.m_opaque_up)), m_is_file(rhs.m_is_file) {}
H A DSBBlock.cpp35 SBBlock::SBBlock(const SBBlock &rhs) : m_opaque_ptr(rhs.m_opaque_ptr) { argument
36 LLDB_RECORD_CONSTRUCTOR(SBBlock, (const lldb::SBBlock &), rhs);
39 const SBBlock &SBBlock::operator=(const SBBlock &rhs) { argument
41 SBBlock, operator=,(const lldb::SBBlock &), rhs);
43 m_opaque_ptr = rhs.m_opaque_ptr;
/freebsd-11-stable/contrib/llvm-project/lldb/source/Plugins/LanguageRuntime/ObjC/
H A DObjCLanguageRuntime.h352 bool operator==(const ClassAndSel &rhs) { argument
353 if (class_addr == rhs.class_addr && sel_addr == rhs.sel_addr)
359 bool operator<(const ClassAndSel &rhs) const {
360 if (class_addr < rhs.class_addr)
362 else if (class_addr > rhs.class_addr)
365 if (sel_addr < rhs.sel_addr)
/freebsd-11-stable/contrib/llvm-project/lldb/source/Breakpoint/
H A DBreakpointResolverName.cpp86 const BreakpointResolverName &rhs)
87 : BreakpointResolver(rhs.m_breakpoint, BreakpointResolver::NameResolver,
88 rhs.m_offset),
89 m_lookups(rhs.m_lookups), m_class_name(rhs.m_class_name),
90 m_regex(rhs.m_regex), m_match_type(rhs.m_match_type),
91 m_language(rhs.m_language), m_skip_prologue(rhs.m_skip_prologue) {}
85 BreakpointResolverName( const BreakpointResolverName &rhs) argument
H A DBreakpointLocationCollection.cpp179 const BreakpointLocationCollection &rhs) {
180 if (this != &rhs) {
181 std::lock(m_collection_mutex, rhs.m_collection_mutex);
183 std::lock_guard<std::mutex> rhs_guard(rhs.m_collection_mutex, std::adopt_lock);
184 m_break_loc_collection = rhs.m_break_loc_collection;
178 operator =( const BreakpointLocationCollection &rhs) argument
/freebsd-11-stable/contrib/llvm-project/lldb/include/lldb/Symbol/
H A DType.h30 bool operator==(const CompilerContext &rhs) const {
31 return kind == rhs.kind && name == rhs.name;
33 bool operator!=(const CompilerContext &rhs) const { return !(*this == rhs); }
250 bool operator==(const TypeImpl &rhs) const;
252 bool operator!=(const TypeImpl &rhs) const;
467 TypeEnumMemberImpl(const TypeEnumMemberImpl &rhs) = default; member in class:lldb_private::Type::TypeEnumMemberImpl
469 TypeEnumMemberImpl &operator=(const TypeEnumMemberImpl &rhs);
H A DClangASTImporter.h152 DeclOrigin(const DeclOrigin &rhs) { argument
153 ctx = rhs.ctx;
154 decl = rhs.decl;
157 void operator=(const DeclOrigin &rhs) { argument
158 ctx = rhs.ctx;
159 decl = rhs.decl;
/freebsd-11-stable/contrib/llvm-project/lldb/include/lldb/Utility/
H A DArchSpec.h470 bool IsExactMatch(const ArchSpec &rhs) const;
477 bool IsCompatibleMatch(const ArchSpec &rhs) const;
506 bool IsEqualTo(const ArchSpec &rhs, bool exact_match) const;
524 /// \fn bool operator< (const ArchSpec& lhs, const ArchSpec& rhs) Less than
527 /// Tests two ArchSpec objects to see if \a lhs is less than \a rhs.
530 /// rhs The Left Hand Side ArchSpec object to compare.
532 /// \return true if \a lhs is less than \a rhs
533 bool operator<(const ArchSpec &lhs, const ArchSpec &rhs);
534 bool operator==(const ArchSpec &lhs, const ArchSpec &rhs);
H A DStream.h69 Stream &operator=(const Stream &rhs) { argument
70 m_flags = rhs.m_flags;
71 m_addr_size = rhs.m_addr_size;
72 m_byte_order = rhs.m_byte_order;
73 m_indent_level = rhs.m_indent_level;
H A DArgs.h63 Args(const Args &rhs);
66 Args &operator=(const Args &rhs);
178 void AppendArguments(const Args &rhs);
/freebsd-11-stable/contrib/subversion/subversion/libsvn_subr/
H A Dprefix_string.c314 const svn_prefix_string__t *rhs)
317 const node_t *rhs_parent = rhs->prefix;
319 if (lhs == rhs)
327 rhs = &rhs_parent->key;
341 return (int)(unsigned char)lhs->data[0] - (int)(unsigned char)rhs->data[0];
313 svn_prefix_string__compare(const svn_prefix_string__t *lhs, const svn_prefix_string__t *rhs) argument
/freebsd-11-stable/contrib/llvm-project/lld/include/lld/Core/
H A DDefinedAtom.h209 bool operator==(const Alignment &rhs) const {
210 return (value == rhs.value) && (modulus == rhs.modulus);
/freebsd-11-stable/contrib/llvm-project/lldb/include/lldb/API/
H A DSBData.h20 SBData(const SBData &rhs);
22 const SBData &operator=(const SBData &rhs);
83 bool Append(const SBData &rhs);
H A DSBThread.h186 const lldb::SBThread &operator=(const lldb::SBThread &rhs);
188 bool operator==(const lldb::SBThread &rhs) const;
190 bool operator!=(const lldb::SBThread &rhs) const;
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/ADT/
H A DPointerUnion.h243 bool operator==(PointerUnion<PTs...> lhs, PointerUnion<PTs...> rhs) {
244 return lhs.getOpaqueValue() == rhs.getOpaqueValue();
248 bool operator!=(PointerUnion<PTs...> lhs, PointerUnion<PTs...> rhs) {
249 return lhs.getOpaqueValue() != rhs.getOpaqueValue();
253 bool operator<(PointerUnion<PTs...> lhs, PointerUnion<PTs...> rhs) {
254 return lhs.getOpaqueValue() < rhs.getOpaqueValue();
/freebsd-11-stable/contrib/llvm-project/llvm/lib/CodeGen/
H A DCalcSpillWeights.cpp195 bool operator<(const CopyHint &rhs) const {
197 if (IsPhys != rhs.IsPhys)
198 return (IsPhys && !rhs.IsPhys);
199 if (Weight != rhs.Weight)
200 return (Weight > rhs.Weight);
201 return Reg < rhs.Reg; // Tie-breaker.
/freebsd-11-stable/contrib/llvm-project/lldb/bindings/interface/
H A DSBBreakpoint.i84 SBBreakpoint (const lldb::SBBreakpoint& rhs);
88 bool operator==(const lldb::SBBreakpoint &rhs);
90 bool operator!=(const lldb::SBBreakpoint &rhs);

Completed in 365 milliseconds

<<11121314151617181920>>