Lines Matching defs:buf
238 std::ostringstream buf;
239 buf << "Boolean value was not neither GL_TRUE nor GL_FALSE, got " << de::toString(tcu::Format::Hex<2>(v));
240 result.fail(buf.str());
257 std::ostringstream buf;
258 buf << "Boolean vec4 value was not neither GL_TRUE nor GL_FALSE, got (";
261 buf << (i > 0 ? ", " : "") << de::toString(tcu::Format::Hex<2>(v[i]));
263 buf << ")";
265 result.fail(buf.str());
989 std::ostringstream buf;
990 buf << "Expected " << glu::getBooleanStr(mapBoolToGLBoolean(expected)) << ", got " << glu::getBooleanStr(mapBoolToGLBoolean(state.getBoolAccess()));
991 result.fail(buf.str());
1001 std::ostringstream buf;
1002 buf << "Expected " << reference << ", got " << state.getIntAccess();
1003 result.fail(buf.str());
1013 std::ostringstream buf;
1014 buf << "Expected " << reference << ", got " << state.getInt64Access();
1015 result.fail(buf.str());
1025 std::ostringstream buf;
1026 buf << "Expected " << reference << ", got " << state.getFloatAccess();
1027 result.fail(buf.str());
1047 std::ostringstream buf;
1048 buf << "Expected " << glu::getBooleanStr(mapBoolToGLBoolean(reference)) << ", got " << glu::getBooleanStr(mapBoolToGLBoolean(state.getBoolAccess()));
1049 result.fail(buf.str());
1059 std::ostringstream buf;
1060 buf << "Expected " << reference << "(" << de::toString(tcu::Format::Hex<8>(reference))
1062 result.fail(buf.str());
1072 std::ostringstream buf;
1073 buf << "Expected " << reference << "(" << de::toString(tcu::Format::Hex<8>(reference)) << "), got "
1075 result.fail(buf.str());
1089 std::ostringstream buf;
1092 buf << "Expected " << refValueMin << ", got " << state.getFloatAccess();
1094 buf << "Expected in range [" << refValueMin << ", " << refValueMax << "], got " << state.getFloatAccess();
1096 result.fail(buf.str());
1106 std::ostringstream buf;
1107 buf << "Expected " << reference << "(" << de::toString(tcu::Format::Hex<8>(reference)) << "), got "
1109 result.fail(buf.str());
1128 std::ostringstream buf;
1129 buf << "Expected GL_TRUE, got GL_FALSE";
1130 result.fail(buf.str());
1139 std::ostringstream buf;
1140 buf << "Expected greater or equal to " << minValue << ", got " << state.getIntAccess();
1141 result.fail(buf.str());
1150 std::ostringstream buf;
1151 buf << "Expected greater or equal to " << minValue << ", got " << state.getInt64Access();
1152 result.fail(buf.str());
1161 std::ostringstream buf;
1162 buf << "Expected greater or equal to " << minValue << ", got " << state.getFloatAccess();
1163 result.fail(buf.str());
1182 std::ostringstream buf;
1183 buf << "Expected GL_TRUE, got GL_FALSE";
1184 result.fail(buf.str());
1193 std::ostringstream buf;
1194 buf << "Expected less or equal to " << maxValue << ", got " << state.getIntAccess();
1195 result.fail(buf.str());
1204 std::ostringstream buf;
1205 buf << "Expected less or equal to " << maxValue << ", got " << state.getInt64Access();
1206 result.fail(buf.str());
1215 std::ostringstream buf;
1216 buf << "Expected less or equal to " << maxValue << ", got " << state.getFloatAccess();
1217 result.fail(buf.str());
1238 std::ostringstream buf;
1239 buf << "Expected " << glu::getBooleanStr(mapBoolToGLBoolean(reference)) << ", got " << glu::getBooleanStr(mapBoolToGLBoolean(state.getBoolAccess()));
1240 result.fail(buf.str());
1253 std::ostringstream buf;
1256 buf << "Expected " << refValueMin << ", got " << state.getIntAccess();
1258 buf << "Expected in range [" << refValueMin << ", " << refValueMax << "], got " << state.getIntAccess();
1260 result.fail(buf.str());
1269 std::ostringstream buf;
1270 buf << "Expected " << expected << ", got " << state.getFloatAccess();
1271 result.fail(buf.str());
1284 std::ostringstream buf;
1287 buf << "Expected " << refValueMin << ", got " << state.getInt64Access();
1289 buf << "Expected in range [" << refValueMin << ", " << refValueMax << "], got " << state.getInt64Access();
1291 result.fail(buf.str());
1304 std::ostringstream buf;
1307 buf << "Expected " << refValueMin << ", got " << state.getUintAccess();
1309 buf << "Expected in range [" << refValueMin << ", " << refValueMax << "], got " << state.getUintAccess();
1311 result.fail(buf.str());
1339 std::ostringstream buf;
1340 buf << "Expected greater or equal to " << refValue << ", got " << state.getIntAccess();
1341 result.fail(buf.str());
1350 std::ostringstream buf;
1351 buf << "Expected greater or equal to " << minValue << ", got " << state.getFloatAccess();
1352 result.fail(buf.str());
1363 std::ostringstream buf;
1364 buf << "Expected greater or equal to " << refValue << ", got " << state.getInt64Access();
1365 result.fail(buf.str());
1393 std::ostringstream buf;
1394 buf << "Expected less or equal to " << refValue << ", got " << state.getIntAccess();
1395 result.fail(buf.str());
1404 std::ostringstream buf;
1405 buf << "Expected less or equal to " << maxValue << ", got " << state.getFloatAccess();
1406 result.fail(buf.str());
1417 std::ostringstream buf;
1418 buf << "Expected less or equal to " << refValue << ", got " << state.getInt64Access();
1419 result.fail(buf.str());
1440 std::ostringstream buf;
1441 buf << "Expected " << expected << ", got " << tcu::formatArray(state.getIntVec3Access());
1442 result.fail(buf.str());
1464 std::ostringstream buf;
1465 buf << "Expected " << expected << ", got " << tcu::formatArray(state.getIntVec4Access());
1466 result.fail(buf.str());
1488 std::ostringstream buf;
1489 buf << "Expected " << expected << ", got " << tcu::formatArray(state.getUintVec4Access());
1490 result.fail(buf.str());
1528 std::ostringstream buf;
1529 buf << "Expected " << glu::getBooleanPointerStr(referenceVec4, 4) << ", got " << glu::getBooleanPointerStr(resultVec4, 4);
1530 result.fail(buf.str());
1550 std::ostringstream buf;
1551 buf << "Expected " << reference << ", got " << tcu::formatArray(state.getFloatVec4Access());
1552 result.fail(buf.str());
1571 std::ostringstream buf;
1572 buf << "Expected " << reference << ", got " << tcu::formatArray(state.getIntVec4Access());
1573 result.fail(buf.str());
1592 std::ostringstream buf;
1593 buf << "Expected " << reference << ", got " << tcu::formatArray(state.getInt64Vec4Access());
1594 result.fail(buf.str());
1613 std::ostringstream buf;
1614 buf << "Expected " << reference << ", got " << tcu::formatArray(state.getUintVec4Access());
1615 result.fail(buf.str());
1637 std::ostringstream buf;
1638 buf << "Expected " << expected << ", got " << tcu::formatArray(state.getFloatVec4Access());
1639 result.fail(buf.str());
1656 std::ostringstream buf;
1662 buf << refValueMin;
1664 buf << "[" << refValueMin << ", " << refValueMax << "]";
1670 std::ostringstream buf;
1671 buf << "Expected {" << expectation.str() << "}, got " << tcu::formatArray(state.getIntVec4Access());
1672 result.fail(buf.str());
1689 std::ostringstream buf;
1695 buf << refValueMin;
1697 buf << "[" << refValueMin << ", " << refValueMax << "]";
1703 std::ostringstream buf;
1704 buf << "Expected {" << expectation.str() << "}, got " << tcu::formatArray(state.getUintVec4Access());
1705 result.fail(buf.str());
1724 std::ostringstream buf;
1725 buf << "Expected " << expected << ", got " << state.getPtrAccess();
1726 result.fail(buf.str());
1771 std::ostringstream buf;
1775 buf << "[" << validLow[ndx] << ", " << validHigh[ndx] << "]";
1781 std::ostringstream buf;
1782 buf << "Expected {" << expectation.str() << "}, got " << tcu::formatArray(state.getFloatVec4Access());
1783 result.fail(buf.str());
1800 std::ostringstream buf;
1806 buf << refValueMin;
1808 buf << "[" << refValueMin << ", " << refValueMax << "]";
1814 std::ostringstream buf;
1815 buf << "Expected {" << expectation.str() << "}, got " << tcu::formatArray(state.getIntVec4Access());
1816 result.fail(buf.str());