Home
last modified time | relevance | path

Searched refs:rhs_value (Results 1 – 4 of 4) sorted by relevance

/freebsd/contrib/llvm-project/lldb/source/Core/
H A DValue.cpp59 const uintptr_t rhs_value = in Value() local
61 if ((rhs_value != 0) && in Value()
62 (rhs_value == (uintptr_t)v.m_data_buffer.GetBytes())) { in Value()
77 const uintptr_t rhs_value = in operator =() local
79 if ((rhs_value != 0) && in operator =()
80 (rhs_value == (uintptr_t)rhs.m_data_buffer.GetBytes())) { in operator =()
/freebsd/contrib/googletest/googletest/include/gtest/
H A Dgtest.h1584 RawType lhs_value, RawType rhs_value) { in CmpHelperFloatingPointEQ() argument
1585 const FloatingPoint<RawType> lhs(lhs_value), rhs(rhs_value); in CmpHelperFloatingPointEQ()
1597 rhs_ss << rhs_value; in CmpHelperFloatingPointEQ()
/freebsd/contrib/llvm-project/libc/src/__support/
H A Dbig_int.h144 const word rhs_value = has_rhs_value ? rhs[i] : 0;
146 dst[i] = op_with_carry(dst[i], rhs_value, carry_in, carry_out);
/freebsd/contrib/googletest/googletest/src/
H A Dgtest.cc1634 const std::string& rhs_value, bool ignoring_case) { in EqFailure() argument
1642 if (rhs_value != rhs_expression) { in EqFailure()
1643 msg << "\n Which is: " << rhs_value; in EqFailure()
1650 if (!lhs_value.empty() && !rhs_value.empty()) { in EqFailure()
1652 const std::vector<std::string> rhs_lines = SplitEscapedString(rhs_value); in EqFailure()