Home | History | Annotate | Download | only in src

Lines Matching refs:val2

1030                                      double val2,
1032 const double diff = fabs(val1 - val2);
1041 << expr2 << " evaluates to " << val2 << ", and\n"
1052 RawType val2) {
1053 // Returns success if val1 is less than val2,
1054 if (val1 < val2) {
1058 // or if val1 is almost equal to val2.
1059 const FloatingPoint<RawType> lhs(val1), rhs(val2);
1065 // val2 is NaN, as the IEEE floating-point standard requires that
1074 << val2;
1086 // Asserts that val1 is less than, or almost equal to, val2. Fails
1087 // otherwise. In particular, it fails if either val1 or val2 is NaN.
1089 float val1, float val2) {
1090 return internal::FloatingPointLE<float>(expr1, expr2, val1, val2);
1093 // Asserts that val1 is less than, or almost equal to, val2. Fails
1094 // otherwise. In particular, it fails if either val1 or val2 is NaN.
1096 double val1, double val2) {
1097 return internal::FloatingPointLE<double>(expr1, expr2, val1, val2);
1124 BiggestInt val1, BiggestInt val2) {\
1125 if (val1 op val2) {\
1130 << "), actual: " << FormatForComparisonFailureMessage(val1, val2)\
1131 << " vs " << FormatForComparisonFailureMessage(val2, val1);\