Lines Matching refs:temp_value

33     Scalar &temp_value, // A modifiable temp value than can be used to hold  in PromoteToMaxType()  argument
54 temp_value = rhs; // Copy right hand side into the temp value in PromoteToMaxType()
55 if (temp_value.Promote(lhs_type)) // Promote it in PromoteToMaxType()
57 &temp_value; // Update the pointer for the promoted right hand side in PromoteToMaxType()
60 temp_value = lhs; // Copy left hand side value into the temp value in PromoteToMaxType()
61 if (temp_value.Promote(rhs_type)) // Promote it in PromoteToMaxType()
63 &temp_value; // Update the pointer for the promoted left hand side in PromoteToMaxType()
1636 Scalar temp_value; in operator +=() local
1639 if ((m_type = PromoteToMaxType(*this, rhs, temp_value, a, b)) != in operator +=()
1923 Scalar temp_value; in operator +() local
1926 if ((result.m_type = PromoteToMaxType(lhs, rhs, temp_value, a, b)) != in operator +()
1955 Scalar temp_value; in operator -() local
1958 if ((result.m_type = PromoteToMaxType(lhs, rhs, temp_value, a, b)) != in operator -()
1987 Scalar temp_value; in operator /() local
1990 if ((result.m_type = PromoteToMaxType(lhs, rhs, temp_value, a, b)) != in operator /()
2033 Scalar temp_value; in operator *() local
2036 if ((result.m_type = PromoteToMaxType(lhs, rhs, temp_value, a, b)) != in operator *()
2065 Scalar temp_value; in operator &() local
2068 if ((result.m_type = PromoteToMaxType(lhs, rhs, temp_value, a, b)) != in operator &()
2097 Scalar temp_value; in operator |() local
2100 if ((result.m_type = PromoteToMaxType(lhs, rhs, temp_value, a, b)) != in operator |()
2130 Scalar temp_value; in operator %() local
2133 if ((result.m_type = PromoteToMaxType(lhs, rhs, temp_value, a, b)) != in operator %()
2168 Scalar temp_value; in operator ^() local
2171 if ((result.m_type = PromoteToMaxType(lhs, rhs, temp_value, a, b)) != in operator ^()
2572 Scalar temp_value; in operator ==() local
2576 switch (PromoteToMaxType(lhs, rhs, temp_value, a, b)) { in operator ==()
2608 Scalar temp_value; in operator <() local
2612 switch (PromoteToMaxType(lhs, rhs, temp_value, a, b)) { in operator <()