Lines Matching refs:oss
245 std::ostringstream oss;
247 oss << (x < 0 ? "-" : "")
252 return oss.str();
361 ostringstream oss;
362 oss << expr << " returned " << result << ", expected " << reference;
363 TCU_FAIL(oss.str().c_str());
369 ostringstream oss;
371 oss << "ulp(" << arg << ")";
372 check(oss.str(), m_fmt->ulp(arg), ref);
378 ostringstream oss;
379 oss << "round(" << arg << ", false)";
380 check(oss.str(), m_fmt->round(arg, false), refDown);
383 ostringstream oss;
384 oss << "round(" << arg << ", true)";
385 check(oss.str(), m_fmt->round(arg, true), refUp);