Home | History | Annotate | Download | only in common

Lines Matching refs:oss

245 	std::ostringstream	oss;
247 oss << (x < 0 ? "-" : "")
252 return oss.str();
325 ostringstream oss;
326 oss << expr << " returned " << result << ", expected " << reference;
327 TCU_FAIL(oss.str().c_str());
333 ostringstream oss;
335 oss << "ulp(" << arg << ")";
336 check(oss.str(), m_fmt->ulp(arg), ref);
342 ostringstream oss;
343 oss << "round(" << arg << ", false)";
344 check(oss.str(), m_fmt->round(arg, false), refDown);
347 ostringstream oss;
348 oss << "round(" << arg << ", true)";
349 check(oss.str(), m_fmt->round(arg, true), refUp);